Created
February 26, 2014 20:12
-
-
Save okram/9237551 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class VertexQueryFilter extends DefaultVertexQuery { | |
public static final String FAUNUS_GRAPH_INPUT_VERTEX_QUERY_FILTER = "faunus.graph.input.vertex-query-filter"; | |
private static final GremlinGroovyScriptEngine engine = new GremlinGroovyScriptEngine(); | |
private static final String V = "v"; | |
private static final DummyVertex DUMMY_VERTEX = new DummyVertex(); | |
private boolean doesFilter = false; | |
protected VertexQueryFilter() { | |
super(DUMMY_VERTEX); | |
} | |
public static VertexQueryFilter create(final Configuration configuration) { | |
engine.put(V, DUMMY_VERTEX); | |
try { | |
VertexQueryFilter query = (VertexQueryFilter) engine.eval(configuration.get(FAUNUS_GRAPH_INPUT_VERTEX_QUERY_FILTER, "v.query()")); | |
if (null != configuration.get(FAUNUS_GRAPH_INPUT_VERTEX_QUERY_FILTER)) | |
query.setDoesFilter(true); | |
return query; | |
} catch (final Exception e) { | |
throw new RuntimeException("VertexQueryFilter compilation error: " + e.getMessage(), e); | |
} | |
} | |
protected void setDoesFilter(final boolean doesFilter) { | |
this.doesFilter = doesFilter; | |
} | |
public boolean doesFilter() { | |
return this.doesFilter; | |
} | |
public Iterable<Edge> edges() { | |
throw new UnsupportedOperationException("This VertexQuery is used for graph filtering, not edge iteration"); | |
} | |
public Iterable<Vertex> vertices() { | |
throw new UnsupportedOperationException("This VertexQuery is used for graph filtering, not vertex iteration"); | |
} | |
public Object vertexIds() { | |
throw new UnsupportedOperationException("This VertexQuery is used for graph filtering, not id aggregation"); | |
} | |
public long count() { | |
throw new UnsupportedOperationException("This VertexQuery is used for graph filtering, not element counting"); | |
} | |
public void defaultFilter(final FaunusVertex vertex) { | |
if (!this.doesFilter) return; | |
vertex.removeEdges(Tokens.Action.KEEP, this.direction, this.labels); | |
Iterator<Edge> itty; | |
Edge edge; | |
if (this.hasContainers.size() > 0) { | |
itty = vertex.getEdges(this.direction).iterator(); | |
while (itty.hasNext()) { | |
edge = itty.next(); | |
for (final HasContainer hasContainer : this.hasContainers) { | |
if (!hasContainer.isLegal(edge)) | |
itty.remove(); | |
} | |
} | |
} | |
if (this.limit != Long.MAX_VALUE) { | |
itty = vertex.getEdges(this.direction).iterator(); | |
long counter = 0; | |
while (itty.hasNext()) { | |
itty.next(); | |
if (++counter > this.limit) | |
itty.remove(); | |
} | |
} | |
} | |
protected static class DummyVertex implements Vertex { | |
public VertexQuery query() { | |
return new VertexQueryFilter(); | |
} | |
public void remove() { | |
throw new UnsupportedOperationException(); | |
} | |
public Edge addEdge(final String label, Vertex inVertex) { | |
throw new UnsupportedOperationException(); | |
} | |
public Iterable<Edge> getEdges(Direction direction, String... labels) { | |
throw new UnsupportedOperationException(); | |
} | |
public Iterable<Vertex> getVertices(Direction direction, String... labels) { | |
throw new UnsupportedOperationException(); | |
} | |
public Set<String> getPropertyKeys() { | |
throw new UnsupportedOperationException(); | |
} | |
public <T> T getProperty(final String key) { | |
throw new UnsupportedOperationException(); | |
} | |
public void setProperty(final String key, final Object value) { | |
throw new UnsupportedOperationException(); | |
} | |
public <T> T removeProperty(final String key) { | |
throw new UnsupportedOperationException(); | |
} | |
public Object getId() { | |
throw new UnsupportedOperationException(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment