use of org.neo4j.driver.v1.Session in project open-kilda by telstra.
the class NeoDriver method getFlowInfo.
/**
* {@inheritDoc}
*/
@Override
public List<FlowInfo> getFlowInfo() {
List<FlowInfo> flows = new ArrayList<>();
String subject = "MATCH (:switch)-[f:flow]->(:switch) " + "RETURN f.flowid as flow_id, " + " f.cookie as cookie, " + " f.meter_id as meter_id, " + " f.transit_vlan as transit_vlan, " + " f.src_switch as src_switch";
Session session = driver.session();
StatementResult result = session.run(subject);
for (Record record : result.list()) {
flows.add(new FlowInfo().setFlowId(record.get("flow_id").asString()).setSrcSwitchId(record.get("src_switch").asString()).setCookie(record.get("cookie").asLong()).setMeterId(record.get("meter_id").asInt()).setTransitVlanId(record.get("transit_vlan").asInt()));
}
return flows;
}
use of org.neo4j.driver.v1.Session in project acceptance-test-harness by jenkinsci.
the class Ssh method executeRemoteCommand.
public int executeRemoteCommand(String cmd, OutputStream os) {
Session session = null;
try {
session = connection.openSession();
int status = connection.exec(cmd, os);
if (status != 0) {
throw new RuntimeException("Failed to execute command: " + cmd + ", exit code = " + status);
}
return status;
} catch (InterruptedException | IOException e) {
throw new AssertionError(e);
} finally {
if (session != null) {
session.close();
}
}
}
use of org.neo4j.driver.v1.Session in project tutorials by eugenp.
the class Neo4JServerLiveTest method standAloneDriver.
@Test
public void standAloneDriver() {
Driver driver = GraphDatabase.driver("bolt://localhost:7687", AuthTokens.basic("neo4j", "12345"));
Session session = driver.session();
session.run("CREATE (baeldung:Company {name:\"Baeldung\"}) " + "-[:owns]-> (tesla:Car {make: 'tesla', model: 'modelX'})" + "RETURN baeldung, tesla");
StatementResult result = session.run("MATCH (company:Company)-[:owns]-> (car:Car)" + "WHERE car.make='tesla' and car.model='modelX'" + "RETURN company.name");
Assert.assertTrue(result.hasNext());
Assert.assertEquals(result.next().get("company.name").asString(), "Baeldung");
session.close();
driver.close();
}
use of org.neo4j.driver.v1.Session in project structr by structr.
the class BoltDatabaseService method createUUIDConstraint.
// ----- private methods -----
private void createUUIDConstraint() {
// add UUID uniqueness constraint
try (final Session session = driver.session()) {
// this call may fail silently (e.g. if the index does not exist yet)
try (final org.neo4j.driver.v1.Transaction tx = session.beginTransaction()) {
tx.run("DROP INDEX ON :NodeInterface(id)");
tx.success();
} catch (Throwable t) {
}
// this call may NOT fail silently, hence we don't catch any exceptions
try (final org.neo4j.driver.v1.Transaction tx = session.beginTransaction()) {
tx.run("CREATE CONSTRAINT ON (node:NodeInterface) ASSERT node.id IS UNIQUE");
tx.success();
}
}
}
use of org.neo4j.driver.v1.Session in project structr by structr.
the class BoltDatabaseService method beginTx.
@Override
public Transaction beginTx() {
SessionTransaction session = sessions.get();
if (session == null || session.isClosed()) {
try {
session = new SessionTransaction(this, driver.session());
sessions.set(session);
} catch (ServiceUnavailableException ex) {
throw new NetworkException(ex.getMessage(), ex);
} catch (ClientException cex) {
logger.warn("Cannot connect to Neo4j database server at {}: {}", databaseUrl, cex.getMessage());
}
}
return session;
}
Aggregations