/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/RequestPlotter.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/RequestPlotter.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 810 by torben, Wed Jun 9 14:20:50 2010 UTC revision 998 by torben, Sat Jul 17 06:09:01 2010 UTC
# Line 20  import java.util.zip.ZipEntry; Line 20  import java.util.zip.ZipEntry;
20  import java.util.zip.ZipOutputStream;  import java.util.zip.ZipOutputStream;
21    
22  import javax.servlet.ServletException;  import javax.servlet.ServletException;
23    import javax.servlet.annotation.WebListener;
24    import javax.servlet.annotation.WebServlet;
25  import javax.servlet.http.HttpServlet;  import javax.servlet.http.HttpServlet;
26  import javax.servlet.http.HttpServletRequest;  import javax.servlet.http.HttpServletRequest;
27  import javax.servlet.http.HttpServletResponse;  import javax.servlet.http.HttpServletResponse;
28    
29  import dk.thoerup.traininfoservice.banedk.TimeoutMap;  import dk.thoerup.traininfoservice.banedk.TimeoutMap;
30    
31    @WebServlet(urlPatterns={"/RequestPlotter"})
32  public class RequestPlotter extends HttpServlet {  public class RequestPlotter extends HttpServlet {
33          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
34    
# Line 34  public class RequestPlotter extends Http Line 37  public class RequestPlotter extends Http
37          static final String KML = "application/vnd.google-earth.kml";          static final String KML = "application/vnd.google-earth.kml";
38          static final String KMZ = "application/vnd.google-earth.kmz";          static final String KMZ = "application/vnd.google-earth.kmz";
39                    
40          Map<String,String> cache = new TimeoutMap<String,String>(2*60*1000);          Map<String,String> cache = new TimeoutMap<String,String>(30*60*1000);
41    
42          class RequestPosition {          class RequestPosition {
43                  public String ip;                  public String ip;
# Line 42  public class RequestPlotter extends Http Line 45  public class RequestPlotter extends Http
45                  public String lat;                  public String lat;
46                  public String lng;                  public String lng;
47          }          }
48            
49            class PositionContainer {
50                    List<RequestPosition> blue = new ArrayList<RequestPosition>();
51                    List<RequestPosition> green = new ArrayList<RequestPosition>();
52                    List<RequestPosition> yellow = new ArrayList<RequestPosition>();
53                    List<RequestPosition> red = new ArrayList<RequestPosition>();
54            }
55    
56    
57          boolean isGz(String fileStr) {          boolean isGz(String fileStr) {
58                  return fileStr.substring(fileStr.length() - 3).equals(".gz");                  return fileStr.substring(fileStr.length() - 3).equals(".gz");
59          }          }
60    
61          protected List<RequestPosition> getRequestsFromFileWorker(boolean multiple) throws IOException{          protected PositionContainer getRequestsFromFileWorker(boolean multiple) throws IOException{
62                  List<RequestPosition> positions = new ArrayList<RequestPosition>();                  PositionContainer positions = new PositionContainer();
63    
64                  try {                  try {
65                          String files_single[] = {"/var/log/apache2/app_access.log"};                          String files_single[] = {"/var/log/apache2/app_access.log"};
66                          String files_multi[] = {"/var/log/apache2/app_access.log.2.gz", "/var/log/apache2/app_access.log.1", "/var/log/apache2/app_access.log"};                          String files_multi[] = {"/var/log/apache2/app_access.log.3.gz", "/var/log/apache2/app_access.log.2.gz", "/var/log/apache2/app_access.log.1", "/var/log/apache2/app_access.log"};
67                                                    
68                          String files[];                          String files[];
69                                                    
# Line 64  public class RequestPlotter extends Http Line 74  public class RequestPlotter extends Http
74                          }                          }
75    
76                          SimpleDateFormat df = new SimpleDateFormat("dd/MMM/yyyy:HH:mm:ss");                          SimpleDateFormat df = new SimpleDateFormat("dd/MMM/yyyy:HH:mm:ss");
77                                            
78                            Date now = new Date();
79                          for (String fileStr : files ) {                          for (String fileStr : files ) {
80                                  File f = new File(fileStr);                                  File f = new File(fileStr);
81                                  if ( !f.exists() ) {                                  if ( !f.exists() ) {
# Line 89  public class RequestPlotter extends Http Line 100  public class RequestPlotter extends Http
100                                                  continue;                                                  continue;
101                                          }                                          }
102                    
103                                          if (line.indexOf("latitude") == -1 ) {                                          if (line.indexOf("latitude=") == -1 ) {
104                                                  continue;                                                  continue;
105                                          }                                          }
106                                            
107                                            if (line.indexOf("longitude=") == -1) {
108                                                    continue;
109                                            }
110                                            
111                                          RequestPosition pos = new RequestPosition();                                          RequestPosition pos = new RequestPosition();
112                    
113                                          String toks[] = line.split(" ");                                          String toks[] = line.split(" ");
# Line 105  public class RequestPlotter extends Http Line 121  public class RequestPlotter extends Http
121                    
122                                          pos.lat = args[0].split("=")[1];                                          pos.lat = args[0].split("=")[1];
123                                          pos.lng = args[1].split("=")[1];                                          pos.lng = args[1].split("=")[1];
124                                            
125                                            
126                                            long timediff = now.getTime() - pos.time.getTime();                                    
127                                            if ( timediff < (3*60*60*1000) ) {
128                                                    positions.red.add(pos); //RED
129                                            } else if ( timediff < (24*60*60*1000)) {
130                                                    positions.yellow.add(pos); //YELLOW
131                                            } else if ( timediff < (7*24*60*60*1000)) {
132                                                    positions.green.add(pos); //GREEN
133                                            } else {
134                                                    positions.blue.add(pos); //BLUE
135                                            }
136                    
                                         positions.add(pos);  
137                                  }                                  }
138                                  in.close();                                  in.close();
139                                  input.close();                                  input.close();
# Line 122  public class RequestPlotter extends Http Line 149  public class RequestPlotter extends Http
149    
150                  return positions;                  return positions;
151          }          }
152            
153            protected void formatPositions(StringBuilder sb, String color, List<RequestPosition> list) {
154                    sb.append( "<Folder>\n");
155                    sb.append( " <name>" ).append(color).append("</name>\n");
156                    sb.append( " <open>0</open>\n" );
157                    
158                    for(RequestPosition current : list) {                  
159                            sb.append( " <Placemark>\n" );
160                            sb.append( "  <styleUrl>#").append(color).append("</styleUrl>\n" );
161                            sb.append( "  <description><![CDATA[IP=").append(current.ip).append("<br/>Time=").append(current.time).append("]]></description>\n" );
162                            sb.append( "  <Point><coordinates>").append(current.lng).append(",").append(current.lat).append(",0</coordinates></Point>\n" );
163                            sb.append( " </Placemark>\n" );                
164                    }              
165                    
166                    sb.append("</Folder>\n");
167            }
168    
169          protected String formatXml(List<RequestPosition> list) {          protected String formatXml(PositionContainer positions) {
170                  StringBuilder sb = new StringBuilder();                  StringBuilder sb = new StringBuilder(1024*1024);
171    
172                  sb.append( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );                  sb.append( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );
173                  sb.append( "<kml xmlns=\"http://www.opengis.net/kml/2.2\">\n" );                  sb.append( "<kml xmlns=\"http://www.opengis.net/kml/2.2\">\n" );
174                  sb.append( "<Document>\n" );                              sb.append( "<Document>\n" );            
175                    sb.append( " <description><![CDATA[");
176                    sb.append( "  Red:").append(positions.red.size()).append(" (whithin 3 hours)<br/>\n");
177                    sb.append( "  Yellow:").append(positions.yellow.size()).append(" (within 24 hours)<br/>\n");
178                    sb.append( "  Green:").append(positions.green.size()).append(" (within one week)<br/>\n");
179                    sb.append( "  Blue:").append(positions.blue.size()).append(" (older)<br/>\n");          
180                    sb.append( " ]]></description>");
181                                    
182                                    
183                  sb.append( " <Style id=\"red\">\n" );                  sb.append( " <Style id=\"red\">\n" );
# Line 143  public class RequestPlotter extends Http Line 192  public class RequestPlotter extends Http
192                  sb.append( "  <IconStyle><Icon><href>http://maps.google.com/mapfiles/kml/paddle/grn-circle.png</href></Icon></IconStyle>\n" );                  sb.append( "  <IconStyle><Icon><href>http://maps.google.com/mapfiles/kml/paddle/grn-circle.png</href></Icon></IconStyle>\n" );
193                  sb.append( " </Style>\n\n" );                  sb.append( " </Style>\n\n" );
194                                    
195                    sb.append( " <Style id=\"blue\">\n" );
196                    sb.append( "  <IconStyle><Icon><href>http://maps.google.com/mapfiles/kml/paddle/blu-circle.png</href></Icon></IconStyle>\n" );
197                    sb.append( " </Style>\n\n" );          
198  /*  /*
199                  String overlay =                  String overlay =
200                " <ScreenOverlay>" +                " <ScreenOverlay>" +
# Line 162  public class RequestPlotter extends Http Line 214  public class RequestPlotter extends Http
214          */                */      
215                                    
216    
217                  final String STYLE_GREEN = "green";                  formatPositions(sb, "blue", positions.blue);
218                  final String STYLE_YELLOW = "yellow";                  formatPositions(sb, "green", positions.green);
219                  final String STYLE_RED = "red";                  formatPositions(sb, "yellow", positions.yellow);
220                    formatPositions(sb, "red", positions.red);
221                  String oldstyle = null;                  
222                  Date now = new Date();  
                 for(RequestPosition current : list) {  
                           
                         String style;  
                         long timediff = now.getTime() - current.time.getTime();  
                           
                         if ( timediff < (3*60*60*1000) ) {  
                                 style = STYLE_RED;  
                         } else if ( timediff < (24*60*60*1000)) {  
                                 style = STYLE_YELLOW;  
                         } else {  
                                 style = STYLE_GREEN;  
                         }  
                           
                         if (  !style.equals(oldstyle) ) {  
                                 if (oldstyle != null)                            
                                         sb.append( "</Folder>\n");  
                                 sb.append( "<Folder>\n");  
                                 sb.append( " <name>" ).append(style).append("</name>\n");  
                                 sb.append( " <open>0</open>\n" );  
                                   
                                 oldstyle = style;  
                         }  
                           
                         sb.append( " <Placemark>\n" );  
                         sb.append( "  <styleUrl>#" + style + "</styleUrl>\n" );  
                         sb.append( "  <description>IP=" + current.ip + "  Time=" + current.time + "</description>\n" );  
                         sb.append( "  <Point><coordinates>" + current.lng + "," + current.lat + ",0</coordinates></Point>\n" );  
                         sb.append( " </Placemark>\n" );                  
                 }  
                 sb.append( "</Folder>\n" );  
223                  sb.append( "</Document>\n" );                  sb.append( "</Document>\n" );
224                  sb.append( "</kml>\n" );                  sb.append( "</kml>\n" );
225    

Legend:
Removed from v.810  
changed lines
  Added in v.998

  ViewVC Help
Powered by ViewVC 1.1.20