You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
453 lines
23 KiB
453 lines
23 KiB
20 years ago
|
// plasmaGrafics.java
|
||
|
// -----------------------
|
||
|
// part of YaCy
|
||
17 years ago
|
// (C) by Michael Peter Christen; mc@yacy.net
|
||
20 years ago
|
// first published on http://www.anomic.de
|
||
|
// Frankfurt, Germany, 2005
|
||
|
// Created 08.10.2005
|
||
|
//
|
||
18 years ago
|
// Contributions by Marc Nause [MN]
|
||
|
//
|
||
19 years ago
|
// $LastChangedDate$
|
||
|
// $LastChangedRevision$
|
||
|
// $LastChangedBy$
|
||
20 years ago
|
//
|
||
|
// 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
|
||
|
|
||
16 years ago
|
package de.anomic.yacy.graphics;
|
||
20 years ago
|
|
||
18 years ago
|
import java.awt.Color;
|
||
|
import java.awt.Graphics2D;
|
||
18 years ago
|
import java.awt.RenderingHints;
|
||
18 years ago
|
import java.awt.image.BufferedImage;
|
||
19 years ago
|
import java.util.Date;
|
||
|
import java.util.Iterator;
|
||
|
|
||
16 years ago
|
import net.yacy.visualization.PrintTool;
|
||
|
import net.yacy.visualization.RasterPlotter;
|
||
|
|
||
16 years ago
|
import de.anomic.search.QueryParams;
|
||
16 years ago
|
import de.anomic.search.SearchEvent;
|
||
|
import de.anomic.search.SearchEventCache;
|
||
16 years ago
|
import de.anomic.search.Switchboard;
|
||
|
import de.anomic.search.SwitchboardConstants;
|
||
19 years ago
|
import de.anomic.yacy.yacySearch;
|
||
|
import de.anomic.yacy.yacySeed;
|
||
17 years ago
|
import de.anomic.yacy.yacySeedDB;
|
||
16 years ago
|
import de.anomic.yacy.dht.FlatWordPartitionScheme;
|
||
20 years ago
|
|
||
16 years ago
|
public class NetworkGraph {
|
||
19 years ago
|
|
||
20 years ago
|
private static int shortestName = 10;
|
||
|
private static int longestName = 12;
|
||
19 years ago
|
|
||
17 years ago
|
public static final String COL_BACKGROUND = "FFFFFF";
|
||
|
private static final String COL_DHTCIRCLE = "006020";
|
||
|
private static final String COL_HEADLINE = "FFFFFF";
|
||
|
private static final String COL_ACTIVE_DOT = "000044";
|
||
|
private static final String COL_ACTIVE_LINE = "335544";
|
||
|
private static final String COL_ACTIVE_TEXT = "66AA88";
|
||
|
private static final String COL_PASSIVE_DOT = "221111";
|
||
|
private static final String COL_PASSIVE_LINE = "443333";
|
||
|
private static final String COL_PASSIVE_TEXT = "663333";
|
||
|
private static final String COL_POTENTIAL_DOT = "002200";
|
||
|
private static final String COL_POTENTIAL_LINE = "224422";
|
||
|
private static final String COL_POTENTIAL_TEXT = "336633";
|
||
|
private static final String COL_WE_DOT = "FF0000";
|
||
|
private static final String COL_WE_LINE = "FFAAAA";
|
||
|
private static final String COL_WE_TEXT = "FFCCCC";
|
||
18 years ago
|
|
||
17 years ago
|
private static final String COL_BORDER = "000000";
|
||
|
private static final String COL_NORMAL_TEXT = "000000";
|
||
|
private static final String COL_LOAD_BG = "F7F7F7";
|
||
18 years ago
|
|
||
18 years ago
|
public static class CircleThreadPiece {
|
||
|
private final String pieceName;
|
||
|
private final Color color;
|
||
|
private long execTime = 0;
|
||
18 years ago
|
private float fraction = 0;
|
||
18 years ago
|
|
||
17 years ago
|
public CircleThreadPiece(final String pieceName, final Color color) {
|
||
18 years ago
|
this.pieceName = pieceName;
|
||
|
this.color = color;
|
||
|
}
|
||
|
|
||
18 years ago
|
public int getAngle() { return Math.round(360f*this.fraction); }
|
||
|
public int getFractionPercent() { return Math.round(100f*this.fraction); }
|
||
18 years ago
|
public Color getColor() { return this.color; }
|
||
|
public long getExecTime() { return this.execTime; }
|
||
|
public String getPieceName() { return this.pieceName; }
|
||
|
|
||
17 years ago
|
public void addExecTime(final long execTime) { this.execTime += execTime; }
|
||
18 years ago
|
public void reset() {
|
||
|
this.execTime = 0;
|
||
18 years ago
|
this.fraction = 0;
|
||
18 years ago
|
}
|
||
17 years ago
|
public void setExecTime(final long execTime) { this.execTime = execTime; }
|
||
|
public void setFraction(final long totalBusyTime) {
|
||
18 years ago
|
this.fraction = (float)this.execTime / (float)totalBusyTime;
|
||
18 years ago
|
}
|
||
|
}
|
||
18 years ago
|
|
||
|
private static final int LEGEND_BOX_SIZE = 10;
|
||
|
|
||
16 years ago
|
private static RasterPlotter networkPicture = null;
|
||
18 years ago
|
private static long networkPictureDate = 0;
|
||
|
|
||
|
private static BufferedImage peerloadPicture = null;
|
||
|
private static long peerloadPictureDate = 0;
|
||
19 years ago
|
|
||
16 years ago
|
private static RasterPlotter bannerPicture = null; // [MN]
|
||
17 years ago
|
private static BufferedImage logo = null; // [MN]
|
||
18 years ago
|
private static long bannerPictureDate = 0; // [MN]
|
||
18 years ago
|
|
||
16 years ago
|
public static RasterPlotter getSearchEventPicture(final yacySeedDB seedDB, final String eventID) {
|
||
16 years ago
|
final SearchEvent event = SearchEventCache.getEvent(eventID);
|
||
18 years ago
|
if (event == null) return null;
|
||
17 years ago
|
final yacySearch[] primarySearches = event.getPrimarySearchThreads();
|
||
|
final yacySearch[] secondarySearches = event.getSecondarySearchThreads();
|
||
19 years ago
|
if (primarySearches == null) return null; // this was a local search and there are no threads
|
||
19 years ago
|
|
||
20 years ago
|
// get a copy of a recent network picture
|
||
16 years ago
|
final RasterPlotter eventPicture = getNetworkPicture(seedDB, 120000, Switchboard.getSwitchboard().getConfig(SwitchboardConstants.NETWORK_NAME, "unspecified"), Switchboard.getSwitchboard().getConfig("network.unit.description", "unspecified"), COL_BACKGROUND);
|
||
18 years ago
|
//if (eventPicture instanceof ymageMatrix) eventPicture = (ymageMatrix) eventPicture; //new ymageMatrix((ymageMatrix) eventPicture);
|
||
18 years ago
|
// TODO: fix cloning of ymageMatrix pictures
|
||
|
|
||
20 years ago
|
// get dimensions
|
||
17 years ago
|
final int cr = Math.min(eventPicture.getWidth(), eventPicture.getHeight()) / 5 - 20;
|
||
|
final int cx = eventPicture.getWidth() / 2;
|
||
|
final int cy = eventPicture.getHeight() / 2;
|
||
19 years ago
|
|
||
20 years ago
|
int angle;
|
||
19 years ago
|
|
||
19 years ago
|
// draw in the primary search peers
|
||
|
for (int j = 0; j < primarySearches.length; j++) {
|
||
16 years ago
|
eventPicture.setColor((primarySearches[j].isAlive()) ? RasterPlotter.RED : RasterPlotter.GREEN);
|
||
16 years ago
|
angle = (int) (360.0 * (((double) FlatWordPartitionScheme.std.dhtPosition(primarySearches[j].target().hash.getBytes(), null)) / ((double) Long.MAX_VALUE)));
|
||
19 years ago
|
eventPicture.arcLine(cx, cy, cr - 20, cr, angle);
|
||
20 years ago
|
}
|
||
19 years ago
|
|
||
19 years ago
|
// draw in the secondary search peers
|
||
|
if (secondarySearches != null) {
|
||
|
for (int j = 0; j < secondarySearches.length; j++) {
|
||
16 years ago
|
eventPicture.setColor((secondarySearches[j].isAlive()) ? RasterPlotter.RED : RasterPlotter.GREEN);
|
||
16 years ago
|
angle = (int) (360.0 * (((double) FlatWordPartitionScheme.std.dhtPosition(secondarySearches[j].target().hash.getBytes(), null)) / ((double) Long.MAX_VALUE)));
|
||
19 years ago
|
eventPicture.arcLine(cx, cy, cr - 10, cr, angle - 1);
|
||
|
eventPicture.arcLine(cx, cy, cr - 10, cr, angle + 1);
|
||
|
}
|
||
|
}
|
||
|
|
||
20 years ago
|
// draw in the search target
|
||
16 years ago
|
final QueryParams query = event.getQuery();
|
||
16 years ago
|
final Iterator<byte[]> i = query.queryHashes.iterator();
|
||
16 years ago
|
eventPicture.setColor(RasterPlotter.GREY);
|
||
20 years ago
|
while (i.hasNext()) {
|
||
16 years ago
|
long[] positions = seedDB.scheme.dhtPositions(i.next());
|
||
16 years ago
|
for (int j = 0; j < positions.length; j++) {
|
||
|
angle = (int) (360.0 * (((double) positions[j]) / ((double) Long.MAX_VALUE)));
|
||
|
eventPicture.arcLine(cx, cy, cr - 20, cr, angle);
|
||
|
}
|
||
20 years ago
|
}
|
||
19 years ago
|
|
||
20 years ago
|
return eventPicture;
|
||
|
}
|
||
19 years ago
|
|
||
16 years ago
|
public static RasterPlotter getNetworkPicture(final yacySeedDB seedDB, final long maxAge, final String networkName, final String networkTitle, final String bgcolor) {
|
||
17 years ago
|
return getNetworkPicture(seedDB, maxAge, 640, 480, 300, 300, 1000, true, networkName, networkTitle, bgcolor);
|
||
20 years ago
|
}
|
||
19 years ago
|
|
||
16 years ago
|
public static RasterPlotter getNetworkPicture(final yacySeedDB seedDB, final long maxAge, final int width, final int height, final int passiveLimit, final int potentialLimit, final int maxCount, final boolean corona, final String networkName, final String networkTitle, final String bgcolor) {
|
||
20 years ago
|
if ((networkPicture == null) || ((System.currentTimeMillis() - networkPictureDate) > maxAge)) {
|
||
17 years ago
|
drawNetworkPicture(seedDB, width, height, passiveLimit, potentialLimit, maxCount, corona, networkName, networkTitle, bgcolor);
|
||
20 years ago
|
}
|
||
|
return networkPicture;
|
||
|
}
|
||
19 years ago
|
|
||
17 years ago
|
private static void drawNetworkPicture(final yacySeedDB seedDB, final int width, final int height, final int passiveLimit, final int potentialLimit, final int maxCount, final boolean corona, final String networkName, final String networkTitle, final String bgcolor) {
|
||
19 years ago
|
|
||
17 years ago
|
if (seedDB == null) return; // no other peers known
|
||
|
|
||
17 years ago
|
final int innerradius = Math.min(width, height) / 5;
|
||
17 years ago
|
int outerradius = innerradius + innerradius * seedDB.sizeConnected() / 100;
|
||
20 years ago
|
if (outerradius > innerradius * 2) outerradius = innerradius * 2;
|
||
19 years ago
|
|
||
16 years ago
|
networkPicture = new RasterPlotter(width, height, (bgcolor.equals("000000")) ? RasterPlotter.MODE_ADD : RasterPlotter.MODE_SUB, bgcolor);
|
||
20 years ago
|
|
||
|
// draw network circle
|
||
18 years ago
|
networkPicture.setColor(COL_DHTCIRCLE);
|
||
18 years ago
|
networkPicture.arc(width / 2, height / 2 + 20, innerradius - 20, innerradius + 20, 0, 360);
|
||
19 years ago
|
|
||
20 years ago
|
//System.out.println("Seed Maximum distance is " + yacySeed.maxDHTDistance);
|
||
|
//System.out.println("Seed Minimum distance is " + yacySeed.minDHTNumber);
|
||
19 years ago
|
|
||
20 years ago
|
yacySeed seed;
|
||
|
long lastseen;
|
||
19 years ago
|
|
||
20 years ago
|
// draw connected senior and principals
|
||
|
int count = 0;
|
||
|
int totalCount = 0;
|
||
17 years ago
|
Iterator<yacySeed> e = seedDB.seedsConnected(true, false, null, (float) 0.0);
|
||
18 years ago
|
|
||
18 years ago
|
while (e.hasNext() && count < maxCount) {
|
||
17 years ago
|
seed = e.next();
|
||
20 years ago
|
if (seed != null) {
|
||
18 years ago
|
drawNetworkPicturePeer(networkPicture, width / 2, height / 2 + 20, innerradius, outerradius, seed, COL_ACTIVE_DOT, COL_ACTIVE_LINE, COL_ACTIVE_TEXT, corona);
|
||
20 years ago
|
count++;
|
||
|
}
|
||
|
}
|
||
|
totalCount += count;
|
||
19 years ago
|
|
||
20 years ago
|
// draw disconnected senior and principals that have been seen lately
|
||
|
count = 0;
|
||
17 years ago
|
e = seedDB.seedsSortedDisconnected(false, yacySeed.LASTSEEN);
|
||
18 years ago
|
while (e.hasNext() && count < maxCount) {
|
||
17 years ago
|
seed = e.next();
|
||
20 years ago
|
if (seed != null) {
|
||
18 years ago
|
lastseen = Math.abs((System.currentTimeMillis() - seed.getLastSeenUTC()) / 1000 / 60);
|
||
20 years ago
|
if (lastseen > passiveLimit) break; // we have enough, this list is sorted so we don't miss anything
|
||
18 years ago
|
drawNetworkPicturePeer(networkPicture, width / 2, height / 2 + 20, innerradius, outerradius, seed, COL_PASSIVE_DOT, COL_PASSIVE_LINE, COL_PASSIVE_TEXT, corona);
|
||
20 years ago
|
count++;
|
||
|
}
|
||
|
}
|
||
|
totalCount += count;
|
||
19 years ago
|
|
||
20 years ago
|
// draw juniors that have been seen lately
|
||
|
count = 0;
|
||
17 years ago
|
e = seedDB.seedsSortedPotential(false, yacySeed.LASTSEEN);
|
||
18 years ago
|
while (e.hasNext() && count < maxCount) {
|
||
17 years ago
|
seed = e.next();
|
||
20 years ago
|
if (seed != null) {
|
||
18 years ago
|
lastseen = Math.abs((System.currentTimeMillis() - seed.getLastSeenUTC()) / 1000 / 60);
|
||
20 years ago
|
if (lastseen > potentialLimit) break; // we have enough, this list is sorted so we don't miss anything
|
||
18 years ago
|
drawNetworkPicturePeer(networkPicture, width / 2, height / 2 + 20, innerradius, outerradius, seed, COL_POTENTIAL_DOT, COL_POTENTIAL_LINE, COL_POTENTIAL_TEXT, corona);
|
||
20 years ago
|
count++;
|
||
|
}
|
||
|
}
|
||
|
totalCount += count;
|
||
19 years ago
|
|
||
20 years ago
|
// draw my own peer
|
||
17 years ago
|
drawNetworkPicturePeer(networkPicture, width / 2, height / 2 + 20, innerradius, outerradius, seedDB.mySeed(), COL_WE_DOT, COL_WE_LINE, COL_WE_TEXT, corona);
|
||
19 years ago
|
|
||
20 years ago
|
// draw description
|
||
18 years ago
|
networkPicture.setColor(COL_HEADLINE);
|
||
16 years ago
|
PrintTool.print(networkPicture, 2, 8, 0, "YACY NETWORK '" + networkName.toUpperCase() + "'", -1);
|
||
|
PrintTool.print(networkPicture, 2, 16, 0, networkTitle.toUpperCase(), -1);
|
||
|
PrintTool.print(networkPicture, width - 2, 8, 0, "SNAPSHOT FROM " + new Date().toString().toUpperCase(), 1);
|
||
|
PrintTool.print(networkPicture, width - 2, 16, 0, "DRAWING OF " + totalCount + " SELECTED PEERS", 1);
|
||
18 years ago
|
|
||
20 years ago
|
// set timestamp
|
||
|
networkPictureDate = System.currentTimeMillis();
|
||
|
}
|
||
19 years ago
|
|
||
16 years ago
|
private static void drawNetworkPicturePeer(final RasterPlotter img, final int x, final int y, final int innerradius, final int outerradius, final yacySeed seed, final String colorDot, final String colorLine, final String colorText, final boolean corona) {
|
||
17 years ago
|
final String name = seed.getName().toUpperCase() /*+ ":" + seed.hash + ":" + (((double) ((int) (100 * (((double) yacySeed.dhtPosition(seed.hash)) / ((double) yacySeed.maxDHTDistance))))) / 100.0)*/;
|
||
20 years ago
|
if (name.length() < shortestName) shortestName = name.length();
|
||
|
if (name.length() > longestName) longestName = name.length();
|
||
16 years ago
|
final int angle = (int) (360.0 * (((double) FlatWordPartitionScheme.std.dhtPosition(seed.hash.getBytes(), null)) / ((double) Long.MAX_VALUE)));
|
||
20 years ago
|
//System.out.println("Seed " + seed.hash + " has distance " + seed.dhtDistance() + ", angle = " + angle);
|
||
17 years ago
|
int linelength = 20 + outerradius * (20 * (name.length() - shortestName) / (longestName - shortestName) + Math.abs(seed.hash.hashCode() % 20)) / 60;
|
||
20 years ago
|
if (linelength > outerradius) linelength = outerradius;
|
||
16 years ago
|
int dotsize = 4 + (int) (seed.getLinkCount() / 2000000L);
|
||
19 years ago
|
if (dotsize > 18) dotsize = 18;
|
||
20 years ago
|
// draw dot
|
||
|
img.setColor(colorDot);
|
||
|
img.arcDot(x, y, innerradius, angle, dotsize);
|
||
|
// draw line to text
|
||
19 years ago
|
img.setColor(colorLine);
|
||
|
img.arcLine(x, y, innerradius + 18, innerradius + linelength, angle);
|
||
20 years ago
|
// draw text
|
||
|
img.setColor(colorText);
|
||
16 years ago
|
PrintTool.arcPrint(img, x, y, innerradius + linelength, angle, name);
|
||
19 years ago
|
|
||
20 years ago
|
// draw corona around dot for crawling activity
|
||
17 years ago
|
int ppm20 = seed.getPPM() / 20;
|
||
|
if ((corona) && (ppm20 > 0)) {
|
||
|
if (ppm20 > 3) ppm20 = 3;
|
||
20 years ago
|
// draw a wave around crawling peers
|
||
|
long strength;
|
||
|
img.setColor("303030");
|
||
|
img.arcArc(x, y, innerradius, angle, dotsize + 1, dotsize + 1, 0, 360);
|
||
17 years ago
|
final int waveradius = innerradius / 2;
|
||
20 years ago
|
for (int r = 0; r < waveradius; r++) {
|
||
17 years ago
|
strength = (waveradius - r) * (long) (0x08 * ppm20 * (1.0 + Math.sin(Math.PI * 16 * r / waveradius))) / waveradius;
|
||
20 years ago
|
//System.out.println("r = " + r + ", Strength = " + strength);
|
||
|
img.setColor((strength << 16) | (strength << 8) | strength);
|
||
|
img.arcArc(x, y, innerradius, angle, dotsize + r, dotsize + r, 0, 360);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
18 years ago
|
|
||
17 years ago
|
public static BufferedImage getPeerLoadPicture(final long maxAge, final int width, final int height, final CircleThreadPiece[] pieces, final CircleThreadPiece fillRest) {
|
||
18 years ago
|
if ((peerloadPicture == null) || ((System.currentTimeMillis() - peerloadPictureDate) > maxAge)) {
|
||
18 years ago
|
drawPeerLoadPicture(width, height, pieces, fillRest);
|
||
18 years ago
|
}
|
||
|
return peerloadPicture;
|
||
|
}
|
||
|
|
||
17 years ago
|
private static void drawPeerLoadPicture(final int width, final int height, final CircleThreadPiece[] pieces, final CircleThreadPiece fillRest) {
|
||
18 years ago
|
//prepare image
|
||
|
peerloadPicture = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
|
||
17 years ago
|
final Graphics2D g = peerloadPicture.createGraphics();
|
||
17 years ago
|
g.setBackground(Color.decode("0x"+COL_LOAD_BG));
|
||
18 years ago
|
g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||
|
g.clearRect(0,0,width,height);
|
||
18 years ago
|
|
||
17 years ago
|
final int circ_w = Math.min(width,height)-20; //width of the circle (r*2)
|
||
|
final int circ_x = width-circ_w-10; //x-coordinate of circle-left
|
||
|
final int circ_y = 10; //y-coordinate of circle-top
|
||
18 years ago
|
int curr_angle = 0; //remember current angle
|
||
18 years ago
|
|
||
18 years ago
|
int i;
|
||
|
for (i=0; i<pieces.length; i++) {
|
||
|
// draw the piece
|
||
|
g.setColor(pieces[i].getColor());
|
||
18 years ago
|
g.fillArc(circ_x, circ_y, circ_w, circ_w, curr_angle, pieces[i].getAngle());
|
||
|
curr_angle += pieces[i].getAngle();
|
||
18 years ago
|
|
||
|
// draw it's legend line
|
||
18 years ago
|
drawLegendLine(g, 5, height - 5 - 15 * i, pieces[i].getPieceName()+" ("+pieces[i].getFractionPercent()+" %)", pieces[i].getColor());
|
||
18 years ago
|
}
|
||
|
|
||
18 years ago
|
// fill the rest
|
||
|
g.setColor(fillRest.getColor());
|
||
18 years ago
|
//FIXME: better method to avoid gaps on rounding-differences?
|
||
18 years ago
|
g.fillArc(circ_x, circ_y, circ_w, circ_w, curr_angle, 360 - curr_angle);
|
||
|
drawLegendLine(g, 5, height - 5 - 15 * i, fillRest.getPieceName()+" ("+fillRest.getFractionPercent()+" %)", fillRest.getColor());
|
||
18 years ago
|
|
||
|
//draw border around the circle
|
||
17 years ago
|
g.setColor(Color.decode("0x"+COL_BORDER));
|
||
18 years ago
|
g.drawArc(circ_x, circ_y, circ_w, circ_w, 0, 360);
|
||
|
|
||
|
peerloadPictureDate = System.currentTimeMillis();
|
||
|
}
|
||
|
|
||
17 years ago
|
private static void drawLegendLine(final Graphics2D g, final int x, final int y, final String caption, final Color item_color) {
|
||
18 years ago
|
g.setColor(item_color);
|
||
|
g.fillRect(x, y-LEGEND_BOX_SIZE, LEGEND_BOX_SIZE, LEGEND_BOX_SIZE);
|
||
17 years ago
|
g.setColor(Color.decode("0x"+COL_BORDER));
|
||
18 years ago
|
g.drawRect(x, y-LEGEND_BOX_SIZE, LEGEND_BOX_SIZE, LEGEND_BOX_SIZE);
|
||
|
|
||
17 years ago
|
g.setColor(Color.decode("0x"+COL_NORMAL_TEXT));
|
||
18 years ago
|
g.drawChars(caption.toCharArray(), 0, caption.length(), x+LEGEND_BOX_SIZE+5,y);
|
||
|
}
|
||
19 years ago
|
|
||
18 years ago
|
//[MN]
|
||
16 years ago
|
public static RasterPlotter getBannerPicture(final long maxAge, final int width, final int height, final String bgcolor, final String textcolor, final String bordercolor, final String name, final long links, final long words, final String type, final int ppm, final String network, final int peers, final long nlinks, final long nwords, final double nqph, final long nppm) {
|
||
18 years ago
|
if ((bannerPicture == null) || ((System.currentTimeMillis() - bannerPictureDate) > maxAge)) {
|
||
17 years ago
|
drawBannerPicture(width, height, bgcolor, textcolor, bordercolor, name, links, words, type, ppm, network, peers, nlinks, nwords, nqph, nppm, logo);
|
||
17 years ago
|
}
|
||
|
return bannerPicture;
|
||
|
}
|
||
|
|
||
|
//[MN]
|
||
16 years ago
|
public static RasterPlotter getBannerPicture(final long maxAge, final int width, final int height, final String bgcolor, final String textcolor, final String bordercolor, final String name, final long links, final long words, final String type, final int ppm, final String network, final int peers, final long nlinks, final long nwords, final double nqph, final long nppm, final BufferedImage newLogo) {
|
||
17 years ago
|
if ((bannerPicture == null) || ((System.currentTimeMillis() - bannerPictureDate) > maxAge)) {
|
||
17 years ago
|
drawBannerPicture(width, height, bgcolor, textcolor, bordercolor, name, links, words, type, ppm, network, peers, nlinks, nwords, nqph, nppm, newLogo);
|
||
18 years ago
|
}
|
||
18 years ago
|
return bannerPicture;
|
||
|
}
|
||
|
|
||
|
//[MN]
|
||
17 years ago
|
private static void drawBannerPicture(final int width, final int height, final String bgcolor, final String textcolor, final String bordercolor, final String name, final long links, final long words, final String type, final int ppm, final String network, final int peers, final long nlinks, final long nwords, final double nqph, final long nppm, final BufferedImage newLogo) {
|
||
18 years ago
|
|
||
17 years ago
|
final int exprlength = 19;
|
||
17 years ago
|
logo = newLogo;
|
||
16 years ago
|
bannerPicture = new RasterPlotter(width, height, RasterPlotter.MODE_REPLACE, bgcolor);
|
||
18 years ago
|
|
||
|
// draw description
|
||
|
bannerPicture.setColor(textcolor);
|
||
16 years ago
|
PrintTool.print(bannerPicture, 100, 12, 0, "PEER: " + addTrailingBlanks(name, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 100, 22, 0, "LINKS: " + addBlanksAndDots(links, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 100, 32, 0, "WORDS: " + addBlanksAndDots(words, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 100, 42, 0, "TYPE: " + addTrailingBlanks(type, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 100, 52, 0, "SPEED: " + addTrailingBlanks(ppm + " PAGES/MINUTE", exprlength), -1);
|
||
|
|
||
|
PrintTool.print(bannerPicture, 285, 12, 0, "NETWORK: " + addTrailingBlanks(network + " [" + peers + "]", exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 285, 22, 0, "LINKS: " + addBlanksAndDots(nlinks, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 285, 32, 0, "WORDS: " + addBlanksAndDots(nwords, exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 285, 42, 0, "QUERIES: " + addTrailingBlanks(nqph + " QUERIES/HOUR", exprlength), -1);
|
||
|
PrintTool.print(bannerPicture, 285, 52, 0, "SPEED: " + addTrailingBlanks(nppm + " PAGES/MINUTE", exprlength), -1);
|
||
18 years ago
|
|
||
17 years ago
|
if (logo != null) {
|
||
17 years ago
|
final int x = (100/2 - logo.getWidth()/2);
|
||
|
final int y = (height/2 - logo.getHeight()/2);
|
||
16 years ago
|
bannerPicture.insertBitmap(logo, x, y, 0, 0, RasterPlotter.FILTER_ANTIALIASING);
|
||
17 years ago
|
}
|
||
|
|
||
18 years ago
|
if (!bordercolor.equals("")) {
|
||
|
bannerPicture.setColor(bordercolor);
|
||
|
bannerPicture.line(0,0,0,height-1);
|
||
|
bannerPicture.line(0,0,width-1,0);
|
||
|
bannerPicture.line(width-1,0,width-1,height-1);
|
||
|
bannerPicture.line(0,height-1,width-1,height-1);
|
||
|
}
|
||
17 years ago
|
|
||
18 years ago
|
// set timestamp
|
||
18 years ago
|
bannerPictureDate = System.currentTimeMillis();
|
||
|
}
|
||
17 years ago
|
|
||
|
public static boolean logoIsLoaded() {
|
||
|
if (logo == null) {
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
18 years ago
|
|
||
|
//[MN]
|
||
17 years ago
|
private static String addBlanksAndDots(final long input, final int length) {
|
||
18 years ago
|
return addBlanksAndDots(input + "", length);
|
||
|
}
|
||
|
|
||
|
//[MN]
|
||
17 years ago
|
private static String addBlanksAndDots(String input, final int length) {
|
||
18 years ago
|
input = addDots(input);
|
||
|
input = addTrailingBlanks(input,length);
|
||
|
return input;
|
||
|
}
|
||
|
|
||
|
//[MN]
|
||
|
private static String addDots(String word) {
|
||
|
String tmp = "";
|
||
|
int len = word.length();
|
||
17 years ago
|
if (len > 3) {
|
||
|
while(len > 3) {
|
||
|
if(tmp.equals("")) {
|
||
|
tmp = word.substring(len-3,len);
|
||
|
} else {
|
||
|
tmp = word.substring(len-3,len) + "." + tmp;
|
||
|
}
|
||
|
word = word.substring(0,len-3);
|
||
|
len = word.length();
|
||
18 years ago
|
}
|
||
17 years ago
|
word = word + "." + tmp;
|
||
18 years ago
|
}
|
||
|
return word;
|
||
|
}
|
||
|
|
||
|
//[MN]
|
||
|
private static String addTrailingBlanks(String word, int length) {
|
||
|
if (length > word.length()) {
|
||
|
String blanks = "";
|
||
|
length = length - word.length();
|
||
|
int i = 0;
|
||
|
while(i++ < length) {
|
||
|
blanks += " ";
|
||
|
}
|
||
|
word = blanks + word;
|
||
|
}
|
||
|
return word;
|
||
18 years ago
|
}
|
||
|
|
||
19 years ago
|
}
|