1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
// NetworkPicture.java
// -----------------------
// part of YaCy
// (C) by Michael Peter Christen; mc@yacy.net
// first published on http://www.anomic.de
// Frankfurt, Germany, 2005
// Created 08.10.2005
//
// $LastChangedDate$
// $LastChangedRevision$
// $LastChangedBy$
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import java.util.concurrent.Semaphore;
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.cora.util.ConcurrentLog;
import net.yacy.peers.graphics.EncodedImage;
import net.yacy.peers.graphics.NetworkGraph;
import net.yacy.search.Switchboard;
import net.yacy.search.SwitchboardConstants;
import net.yacy.server.serverObjects;
import net.yacy.server.serverSwitch;
/** draw a picture of the yacy network */
public class NetworkPicture {
private static final ConcurrentLog log = new ConcurrentLog("NetworkPicture");
private static final Semaphore sync = new Semaphore(1, true);
private static long lastAccessSeconds = 0;
public static EncodedImage respond(
final RequestHeader header,
final serverObjects post,
final serverSwitch env) {
final Switchboard sb = (Switchboard) env;
final boolean authorized = sb.adminAuthenticated(header) >= 2;
final long timeSeconds = System.currentTimeMillis() / 1000;
if (NetworkGraph.buffer != null && !authorized && timeSeconds - lastAccessSeconds < 2) {
if (log.isFine()) log.fine("cache hit (1); authorized = "
+ authorized
+ ", timeSeconds - lastAccessSeconds = "
+ (timeSeconds - lastAccessSeconds));
return NetworkGraph.buffer;
}
if ( NetworkGraph.buffer != null && sync.availablePermits() == 0 ) {
return NetworkGraph.buffer;
}
sync.acquireUninterruptibly();
if (NetworkGraph.buffer != null && !authorized && timeSeconds - lastAccessSeconds < 2) {
if (log.isFine()) log.fine("cache hit (2); authorized = "
+ authorized
+ ", timeSeconds - lastAccessSeconds = "
+ (timeSeconds - lastAccessSeconds));
sync.release();
return NetworkGraph.buffer;
}
int width = 1280; // 640x480 = VGA, 768x576 = SD/4:3, 1024x576 =SD/16:9 1280x720 = HD/16:9, 1920x1080 = FULL HD/16:9
int height = 720;
int passiveLimit = 1440; // minutes; 1440 = 1 day; 720 = 12 hours; 1440 = 24 hours, 10080 = 1 week;
int potentialLimit = 1440;
int maxCount = 9000;
String bgcolor = Long.toHexString(NetworkGraph.COL_BACKGROUND);
boolean corona = true;
int coronaangle = 0;
long communicationTimeout = -1;
int cyc = 0;
if ( post != null ) {
width = post.getInt("width", width);
height = post.getInt("height", height);
passiveLimit = post.getInt("pal", passiveLimit);
potentialLimit = post.getInt("pol", potentialLimit);
maxCount = post.getInt("max", maxCount);
corona = post.getBoolean("corona") || post.containsKey("coronaangle");
coronaangle = (corona) ? post.getInt("coronaangle", 0) : -1;
communicationTimeout = post.getLong("ct", -1);
bgcolor = post.get("bgcolor", bgcolor);
cyc = post.getInt("cyc", 0);
}
//too small values lead to an error, too big to huge CPU/memory consumption, resulting in possible DOS.
if ( width < 320 ) {
width = 320;
}
if ( width > 1920 ) {
width = 1920;
}
if ( height < 240 ) {
height = 240;
}
if ( height > 1280 ) {
height = 1280;
}
if ( !authorized ) {
width = Math.min(1280, width);
height = Math.min(1280, height);
}
if ( passiveLimit > 1000000 ) {
passiveLimit = 1000000;
}
if ( potentialLimit > 1000000 ) {
potentialLimit = 1000000;
}
if ( maxCount > 10000 ) {
maxCount = 10000;
}
NetworkGraph.buffer =
new EncodedImage(NetworkGraph.getNetworkPicture(
sb.peers,
width,
height,
passiveLimit,
potentialLimit,
maxCount,
coronaangle,
communicationTimeout,
env.getConfig(SwitchboardConstants.NETWORK_NAME, "unspecified"),
env.getConfig("network.unit.description", "unspecified"),
Long.parseLong(bgcolor, 16),
cyc), "png", false);
lastAccessSeconds = System.currentTimeMillis() / 1000;
sync.release();
return NetworkGraph.buffer;
}
}
|