All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencypher.spark.api.io.neo4j.Neo4jPropertyGraphDataSource.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta7
Show newest version
/*
 * Copyright (c) 2016-2018 "Neo4j, Inc." [https://neo4j.com]
 *
 * Licensed 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.opencypher.spark.api.io.neo4j

import org.opencypher.okapi.api.graph.{GraphName, PropertyGraph}
import org.opencypher.okapi.api.schema.Schema
import org.opencypher.okapi.impl.exception.IllegalArgumentException
import org.opencypher.spark.api.CAPSSession
import org.opencypher.spark.impl.io.CAPSPropertyGraphDataSource
import org.opencypher.spark.impl.io.neo4j.Neo4jGraphLoader

object Neo4jPropertyGraphDataSource {

  val neo4jDefaultGraphName = GraphName("graph")

  val defaultQuery = "MATCH (n) RETURN n" -> "MATCH ()-[r]->() RETURN r"

  val defaultQueries: Map[GraphName, (String, String)] =
    Map(neo4jDefaultGraphName -> defaultQuery)

}

case class Neo4jPropertyGraphDataSource(
  config: Neo4jConfig,
  queries: Map[GraphName, (String, String)] = Neo4jPropertyGraphDataSource.defaultQueries)
  (implicit val session: CAPSSession)
  extends CAPSPropertyGraphDataSource {

  override def graph(name: GraphName): PropertyGraph = queries.get(name) match {
    case Some((nodeQuery, relQuery)) => Neo4jGraphLoader.fromNeo4j(config, nodeQuery, relQuery)
    case None => throw IllegalArgumentException(s"Neo4j graph with name '$name'")
  }

  override def schema(name: GraphName): Option[Schema] = None

  override def store(name: GraphName, graph: PropertyGraph): Unit =
    throw new UnsupportedOperationException("'store' operation is not supported by the Neo4j data source")

  override def delete(name: GraphName): Unit =
    throw new UnsupportedOperationException("'delete' operation is not supported by the Neo4j data source")

  override def graphNames: Set[GraphName] = queries.keySet

  override def hasGraph(name: GraphName): Boolean = queries.contains(name)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy