blob: 54979623c4bd440ce115247b5a8061916fee2921 [file] [log] [blame]
/* $Id: RunSimpleHistory.java 988245 2010-08-23 18:39:35Z kwright $ */
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.manifoldcf.crawler;
import java.io.*;
import org.apache.manifoldcf.core.interfaces.*;
import org.apache.manifoldcf.crawler.interfaces.*;
import org.apache.manifoldcf.crawler.system.*;
import java.util.*;
/** This class converts a job name into a job identifier.
* Warning: Since multiple jobs can have the same name, a list of job identifiers will be returned.
*/
public class RunSimpleHistory
{
public static final String _rcsid = "@(#)$Id: RunSimpleHistory.java 988245 2010-08-23 18:39:35Z kwright $";
private RunSimpleHistory()
{
}
public static void main(String[] args)
{
if (args.length != 9)
{
System.err.println("Usage: RunSimpleHistory <connection_name> <activity_list> <start_time> <end_time> <entity_regexp> <resultcode_regexp> <sortorder_list> <start_row> <row_count>");
System.err.println("<connection_name> is the name of the repository connection");
System.err.println("<activity_list> is the comma-separated list of activity names to include");
System.err.println("<start_time> is the earliest time to include, in ms. since epoch [blank if no limit]");
System.err.println("<end_time> is the latest time to include, in ms. since epoch [blank if no limit]");
System.err.println("<entity_regexp> describes which document identifiers to include");
System.err.println("<resultcode_regexp> describes which result codes to include");
System.err.println("<sortorder_list> a comma-separated list of fields describing the sort order, preceded by + or -");
System.err.println(" for ascending or descending; the legal field names are: 'identifier', 'activity', 'starttime',");
System.err.println(" 'elapsedtime', 'resultcode', 'resultdesc', 'bytes'");
System.err.println("<start_row> describes which row to start at, beginning at 0");
System.err.println("<row_count> indicates the maximum number of rows to include");
System.err.println("");
System.err.println("The result will be printed to standard out, UTF-8 encoded, and will contain the following columns:");
System.err.println(" identifier, activity, start_time, elapsed_time, result_code, result_desc, byte_count");
System.exit(1);
}
String connectionName = args[0];
String activityList = args[1];
String startTime = args[2];
String endTime = args[3];
String entityRegexp = args[4];
String resultCodeRegexp = args[5];
String sortOrder = args[6];
String startRow = args[7];
String rowCount = args[8];
try
{
IThreadContext tc = ThreadContextFactory.make();
ManifoldCF.initializeEnvironment(tc);
IRepositoryConnectionManager connManager = RepositoryConnectionManagerFactory.make(tc);
FilterCriteria filter = parseFilterCriteria(activityList,startTime,endTime,entityRegexp,resultCodeRegexp);
SortOrder sortOrderValue = parseSortorder(sortOrder);
int startRowValue = Integer.parseInt(startRow);
int rowCountValue = Integer.parseInt(rowCount);
IResultSet result = connManager.genHistorySimple(connectionName,filter,sortOrderValue,startRowValue,rowCountValue);
int i = 0;
while (i < result.getRowCount())
{
IResultRow row = result.getRow(i++);
Long startTimeValue = (Long)row.getValue("starttime");
Long elapsedTimeValue = (Long)row.getValue("elapsedtime");
String resultCodeValue = (String)row.getValue("resultcode");
String resultDescValue = (String)row.getValue("resultdesc");
Long bytesValue = (Long)row.getValue("bytes");
UTF8Stdout.println(commaEscape((String)row.getValue("identifier"))+","+
commaEscape((String)row.getValue("activity"))+","+
((startTimeValue==null)?"":startTimeValue.toString())+","+
((elapsedTimeValue==null)?"":elapsedTimeValue.toString())+","+
((resultCodeValue==null)?"":commaEscape(resultCodeValue))+","+
((resultDescValue==null)?"":commaEscape(resultDescValue))+","+
((bytesValue==null)?"":bytesValue.toString()));
}
System.err.println("History query done");
}
catch (Exception e)
{
e.printStackTrace();
System.exit(2);
}
}
protected static String commaEscape(String input)
{
StringBuilder output = new StringBuilder();
int i = 0;
while (i < input.length())
{
char x = input.charAt(i++);
if (x < ' ')
x = ' ';
if (x == '\\' || x == ',')
output.append("\\");
output.append(x);
}
return output.toString();
}
protected static FilterCriteria parseFilterCriteria(String activityList, String startTime, String endTime, String entityRegexp, String resultCodeRegexp)
throws Exception
{
String[] activityTypes = parseActivityList(activityList);
Long startTimeValue;
if (startTime != null && startTime.length() > 0)
startTimeValue = new Long(startTime);
else
startTimeValue = null;
Long endTimeValue;
if (endTime != null && endTime.length() > 0)
endTimeValue = new Long(endTime);
else
endTimeValue = null;
RegExpCriteria entityRegexpValue = parseRegexp(entityRegexp);
RegExpCriteria resultCodeRegexpValue = parseRegexp(resultCodeRegexp);
return new FilterCriteria(activityTypes,startTimeValue,endTimeValue,entityRegexpValue,resultCodeRegexpValue);
}
protected static String[] parseActivityList(String activityList)
throws Exception
{
String[] activities = activityList.split(",");
String[] rval = new String[activities.length];
int i = 0;
while (i < rval.length)
{
String activity = activities[i].trim();
rval[i] = activity;
i++;
}
return rval;
}
protected static RegExpCriteria parseRegexp(String regexp)
throws Exception
{
if (regexp == null || regexp.length() == 0)
return null;
return new RegExpCriteria(regexp,true);
}
protected static SortOrder parseSortorder(String sortorder)
throws Exception
{
SortOrder so = new SortOrder();
if (sortorder == null || sortorder.length() == 0)
return so;
String[] columns = sortorder.split(",");
int i = 0;
while (i < columns.length)
{
String column = columns[i++].trim();
int clickCount = 1;
if (column.startsWith("+"))
column = column.substring(1);
else if (column.startsWith("-"))
{
clickCount++;
column = column.substring(1);
}
while (clickCount > 0)
{
clickCount--;
so.clickColumn(column);
}
}
return so;
}
}