2010-08-04 01:01:18 +02:00
|
|
|
package com.google.gridworks.browsing;
|
2010-05-05 01:24:48 +02:00
|
|
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Properties;
|
|
|
|
|
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import org.json.JSONWriter;
|
|
|
|
|
2010-08-04 01:01:18 +02:00
|
|
|
import com.google.gridworks.Jsonizable;
|
|
|
|
import com.google.gridworks.browsing.facets.Facet;
|
|
|
|
import com.google.gridworks.browsing.facets.ListFacet;
|
|
|
|
import com.google.gridworks.browsing.facets.RangeFacet;
|
|
|
|
import com.google.gridworks.browsing.facets.ScatterplotFacet;
|
|
|
|
import com.google.gridworks.browsing.facets.TextSearchFacet;
|
|
|
|
import com.google.gridworks.browsing.util.ConjunctiveFilteredRecords;
|
|
|
|
import com.google.gridworks.browsing.util.ConjunctiveFilteredRows;
|
|
|
|
import com.google.gridworks.browsing.util.FilteredRecordsAsFilteredRows;
|
|
|
|
import com.google.gridworks.model.Project;
|
|
|
|
import com.google.gridworks.model.Row;
|
2010-05-05 01:24:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Faceted browsing engine.
|
|
|
|
*/
|
|
|
|
public class Engine implements Jsonizable {
|
2010-05-20 02:13:19 +02:00
|
|
|
static public enum Mode {
|
|
|
|
RowBased,
|
|
|
|
RecordBased
|
|
|
|
}
|
|
|
|
|
|
|
|
public final static String INCLUDE_DEPENDENT = "includeDependent";
|
|
|
|
public final static String MODE = "mode";
|
|
|
|
public final static String MODE_ROW_BASED = "row-based";
|
|
|
|
public final static String MODE_RECORD_BASED = "record-based";
|
|
|
|
|
2010-05-05 01:24:48 +02:00
|
|
|
protected Project _project;
|
|
|
|
protected List<Facet> _facets = new LinkedList<Facet>();
|
2010-05-20 02:13:19 +02:00
|
|
|
protected Mode _mode = Mode.RowBased;
|
2010-05-05 01:24:48 +02:00
|
|
|
|
2010-05-22 03:39:27 +02:00
|
|
|
static public String modeToString(Mode mode) {
|
|
|
|
return mode == Mode.RowBased ? MODE_ROW_BASED : MODE_RECORD_BASED;
|
|
|
|
}
|
|
|
|
static public Mode stringToMode(String s) {
|
|
|
|
return MODE_ROW_BASED.equals(s) ? Mode.RowBased : Mode.RecordBased;
|
|
|
|
}
|
|
|
|
|
2010-05-05 01:24:48 +02:00
|
|
|
public Engine(Project project) {
|
|
|
|
_project = project;
|
|
|
|
}
|
|
|
|
|
2010-05-20 02:13:19 +02:00
|
|
|
public Mode getMode() {
|
|
|
|
return _mode;
|
|
|
|
}
|
2010-05-22 03:39:27 +02:00
|
|
|
public void setMode(Mode mode) {
|
|
|
|
_mode = mode;
|
|
|
|
}
|
2010-05-20 02:13:19 +02:00
|
|
|
|
2010-05-06 22:44:40 +02:00
|
|
|
public FilteredRows getAllRows() {
|
2010-05-20 02:13:19 +02:00
|
|
|
return new FilteredRows() {
|
|
|
|
@Override
|
|
|
|
public void accept(Project project, RowVisitor visitor) {
|
2010-05-21 00:10:34 +02:00
|
|
|
try {
|
|
|
|
visitor.start(project);
|
|
|
|
|
|
|
|
int c = project.rows.size();
|
|
|
|
for (int rowIndex = 0; rowIndex < c; rowIndex++) {
|
|
|
|
Row row = project.rows.get(rowIndex);
|
|
|
|
visitor.visit(project, rowIndex, row);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
visitor.end(project);
|
|
|
|
}
|
2010-05-20 02:13:19 +02:00
|
|
|
}
|
|
|
|
};
|
2010-05-06 22:44:40 +02:00
|
|
|
}
|
|
|
|
|
2010-05-20 02:13:19 +02:00
|
|
|
public FilteredRows getAllFilteredRows() {
|
|
|
|
return getFilteredRows(null);
|
2010-05-05 01:24:48 +02:00
|
|
|
}
|
|
|
|
|
2010-05-20 02:13:19 +02:00
|
|
|
public FilteredRows getFilteredRows(Facet except) {
|
|
|
|
if (_mode == Mode.RecordBased) {
|
|
|
|
return new FilteredRecordsAsFilteredRows(getFilteredRecords(except));
|
|
|
|
} else if (_mode == Mode.RowBased) {
|
|
|
|
ConjunctiveFilteredRows cfr = new ConjunctiveFilteredRows();
|
|
|
|
for (Facet facet : _facets) {
|
|
|
|
if (facet != except) {
|
2010-05-24 19:14:54 +02:00
|
|
|
RowFilter rowFilter = facet.getRowFilter(_project);
|
2010-05-20 02:13:19 +02:00
|
|
|
if (rowFilter != null) {
|
|
|
|
cfr.add(rowFilter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cfr;
|
|
|
|
}
|
|
|
|
throw new InternalError("Unknown mode.");
|
|
|
|
}
|
|
|
|
|
|
|
|
public FilteredRecords getAllRecords() {
|
|
|
|
return new FilteredRecords() {
|
|
|
|
@Override
|
|
|
|
public void accept(Project project, RecordVisitor visitor) {
|
2010-05-21 00:10:34 +02:00
|
|
|
try {
|
|
|
|
visitor.start(project);
|
|
|
|
|
|
|
|
int c = project.recordModel.getRecordCount();
|
|
|
|
for (int r = 0; r < c; r++) {
|
|
|
|
visitor.visit(project, project.recordModel.getRecord(r));
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
visitor.end(project);
|
|
|
|
}
|
2010-05-20 02:13:19 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public FilteredRecords getFilteredRecords() {
|
|
|
|
return getFilteredRecords(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public FilteredRecords getFilteredRecords(Facet except) {
|
|
|
|
if (_mode == Mode.RecordBased) {
|
|
|
|
ConjunctiveFilteredRecords cfr = new ConjunctiveFilteredRecords();
|
|
|
|
for (Facet facet : _facets) {
|
|
|
|
if (facet != except) {
|
2010-05-24 19:14:54 +02:00
|
|
|
RecordFilter recordFilter = facet.getRecordFilter(_project);
|
2010-05-20 02:13:19 +02:00
|
|
|
if (recordFilter != null) {
|
|
|
|
cfr.add(recordFilter);
|
|
|
|
}
|
2010-05-05 01:24:48 +02:00
|
|
|
}
|
|
|
|
}
|
2010-05-20 02:13:19 +02:00
|
|
|
return cfr;
|
|
|
|
}
|
|
|
|
throw new InternalError("This method should not be called when the engine is not in record mode.");
|
2010-05-05 01:24:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void initializeFromJSON(JSONObject o) throws Exception {
|
|
|
|
if (o == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o.has("facets") && !o.isNull("facets")) {
|
|
|
|
JSONArray a = o.getJSONArray("facets");
|
|
|
|
int length = a.length();
|
|
|
|
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
JSONObject fo = a.getJSONObject(i);
|
|
|
|
String type = fo.has("type") ? fo.getString("type") : "list";
|
|
|
|
|
|
|
|
Facet facet = null;
|
|
|
|
if ("list".equals(type)) {
|
|
|
|
facet = new ListFacet();
|
|
|
|
} else if ("range".equals(type)) {
|
|
|
|
facet = new RangeFacet();
|
|
|
|
} else if ("scatterplot".equals(type)) {
|
|
|
|
facet = new ScatterplotFacet();
|
|
|
|
} else if ("text".equals(type)) {
|
|
|
|
facet = new TextSearchFacet();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (facet != null) {
|
|
|
|
facet.initializeFromJSON(_project, fo);
|
|
|
|
_facets.add(facet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-20 02:13:19 +02:00
|
|
|
// for backward compatibility
|
2010-05-05 01:24:48 +02:00
|
|
|
if (o.has(INCLUDE_DEPENDENT) && !o.isNull(INCLUDE_DEPENDENT)) {
|
2010-05-20 02:13:19 +02:00
|
|
|
_mode = o.getBoolean(INCLUDE_DEPENDENT) ? Mode.RecordBased : Mode.RowBased;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (o.has(MODE) && !o.isNull(MODE)) {
|
|
|
|
_mode = MODE_ROW_BASED.equals(o.getString(MODE)) ? Mode.RowBased : Mode.RecordBased;
|
2010-05-05 01:24:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void computeFacets() throws JSONException {
|
2010-05-20 02:13:19 +02:00
|
|
|
if (_mode == Mode.RowBased) {
|
|
|
|
for (Facet facet : _facets) {
|
|
|
|
FilteredRows filteredRows = getFilteredRows(facet);
|
|
|
|
|
|
|
|
facet.computeChoices(_project, filteredRows);
|
|
|
|
}
|
|
|
|
} else if (_mode == Mode.RecordBased) {
|
|
|
|
for (Facet facet : _facets) {
|
|
|
|
FilteredRecords filteredRecords = getFilteredRecords(facet);
|
|
|
|
|
|
|
|
facet.computeChoices(_project, filteredRecords);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new InternalError("Unknown mode.");
|
|
|
|
}
|
2010-05-05 01:24:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void write(JSONWriter writer, Properties options)
|
|
|
|
throws JSONException {
|
|
|
|
|
|
|
|
writer.object();
|
|
|
|
writer.key("facets");
|
|
|
|
writer.array();
|
|
|
|
for (Facet facet : _facets) {
|
|
|
|
facet.write(writer, options);
|
|
|
|
}
|
|
|
|
writer.endArray();
|
2010-05-20 02:13:19 +02:00
|
|
|
writer.key(MODE); writer.value(_mode == Mode.RowBased ? MODE_ROW_BASED : MODE_RECORD_BASED);
|
2010-05-05 01:24:48 +02:00
|
|
|
writer.endObject();
|
|
|
|
}
|
|
|
|
}
|