Package com.taobao.loganalyzer.input.click.parser

Examples of com.taobao.loganalyzer.input.click.parser.ClickLog


  private volatile long lastendts=(System.currentTimeMillis()/1000)+TS_MAX;
  @Override
  public DataIter parseLine(String line) throws InvalidEntryException {
   
    try {
        ClickLog p4ppvlog = com.taobao.loganalyzer.input.click.parser.ClickLogParser.parse(line);
      if (p4ppvlog == null) {
        return null;
      }
     
      if((p4ppvlog.getRefPID()==null&&p4ppvlog.getP4PPID()==null)||p4ppvlog.getClickTime()==null)
      {
        return null;
      }
     
      this.lines++;
      if(this.lines>100000)
      {
        this.laststartts=(System.currentTimeMillis()/1000)-TS_MAX;
        this.lastendts=(System.currentTimeMillis()/1000)+TS_MAX;
        this.lines=0;
      }
     
      long ts = Long.parseLong(p4ppvlog.getClickTime());
      if(ts<laststartts||ts>lastendts)
      {
        return null;
      }
     
View Full Code Here


        }
        boolean isover=false;
        for(Object o:ttdata)
        {
          this.stat.record++;
          ClickLog pv=(ClickLog)o;
          if(this.putdata(pv))
          {
            isover=true;
          }
        }
View Full Code Here

TOP

Related Classes of com.taobao.loganalyzer.input.click.parser.ClickLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.