Changeset 68


Ignore:
Timestamp:
06/15/11 16:54:11 (13 years ago)
Author:
sherbold
Message:
  • changed weblog parser such that session without a minimum length are pruned to remove single page visits from the sessions (e.g., through robots)
  • changed loadSessionsFromClickstream such that the session timeout and the minimum session length are optional parameters
Location:
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/WeblogParser.java

    r54 r68  
    1414 
    1515import de.ugoe.cs.eventbench.web.data.WebEvent; 
     16import de.ugoe.cs.util.console.Console; 
    1617 
    1718public class WeblogParser { 
    1819         
    1920        private long timeout; 
     21         
     22        private int minLength = 2; 
    2023         
    2124        private List<List<WebEvent>> sequences; 
     
    3134        public List<List<WebEvent>> getSequences() { 
    3235                return sequences;  
     36        } 
     37         
     38        public void setTimeout(long timeout) { 
     39                this.timeout = timeout; 
     40        } 
     41         
     42        public void setMinLength(int minLength) { 
     43                this.minLength = minLength; 
    3344        } 
    3445         
     
    89100                        } 
    90101                } 
     102                Console.traceln(""+sequences.size()+ " user sequences found"); 
     103                // prune sequences shorter than min-length 
     104                for( int i=0; i<sequences.size(); i++ ) { 
     105                        if( sequences.get(i).size()<minLength ) { 
     106                                sequences.remove(i); 
     107                        } 
     108                } 
     109                Console.traceln(""+sequences.size()+ " remaining after pruning of sequences shorter than " + minLength); 
    91110        } 
    92111} 
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/commands/CMDloadSessionsFromClickstream.java

    r54 r68  
    1616        @Override 
    1717        public void run(List<Object> parameters) { 
    18                 // TODO Auto-generated method stub 
    1918                if( parameters.size() < 1 ) { 
    2019                        throw new InvalidParameterException(); 
    2120                } 
    2221                String source = (String) parameters.get(0); 
     22                int timeout = -1; 
     23                int minLength = -1; 
     24                if( parameters.size() ==3 ) { 
     25                        timeout = Integer.parseInt((String) parameters.get(1)); 
     26                        minLength = Integer.parseInt((String) parameters.get(2)); 
     27                } 
    2328                 
    24                 WeblogParser parser = new WeblogParser(); 
     29                WeblogParser parser = new WeblogParser();; 
     30                if( timeout!=-1 ) { 
     31                        parser.setTimeout(timeout); 
     32                        parser.setMinLength(minLength); 
     33                } 
    2534                try { 
    2635                        parser.parseFile(source); 
     
    3948        @Override 
    4049        public void help() { 
    41                 // TODO Auto-generated method stub 
    42                  
     50                Console.println("Usage: loadSessionsFromClickstream <filename> {<timeout> <minSessionLength>}"); 
    4351        } 
    4452 
Note: See TracChangeset for help on using the changeset viewer.