
org.neo4j.kernel.impl.proc.Procedures Maven / Gradle / Ivy
/*
* Copyright (c) 2002-2016 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.kernel.impl.proc;
import java.io.File;
import java.util.Set;
import java.util.function.Function;
import org.neo4j.collection.RawIterator;
import org.neo4j.kernel.api.exceptions.KernelException;
import org.neo4j.kernel.api.exceptions.ProcedureException;
import org.neo4j.kernel.api.proc.CallableProcedure;
import org.neo4j.kernel.api.proc.ProcedureSignature;
import org.neo4j.kernel.builtinprocs.BuiltInProcedures;
import org.neo4j.kernel.lifecycle.LifecycleAdapter;
import org.neo4j.logging.Log;
import org.neo4j.logging.NullLog;
/**
* This is the coordinating service for procedures in the database. It loads procedures from a specified
* directory at startup, but also allows programmatic registration of them - and then, of course, allows
* invoking procedures.
*/
public class Procedures extends LifecycleAdapter
{
private final ProcedureRegistry registry = new ProcedureRegistry();
private final TypeMappers typeMappers = new TypeMappers();
private final ComponentRegistry components = new ComponentRegistry();
private final ReflectiveProcedureCompiler compiler = new ReflectiveProcedureCompiler(typeMappers, components);
private final File pluginDir;
private final Log log;
public Procedures()
{
this( null, NullLog.getInstance() );
}
public Procedures( File pluginDir, Log log )
{
this.pluginDir = pluginDir;
this.log = log;
}
/**
* Register a new procedure. This method must not be called concurrently with {@link #get(ProcedureSignature.ProcedureName)}.
* @param proc the procedure.
*/
public void register( CallableProcedure proc ) throws ProcedureException
{
registry.register( proc );
}
/**
* Register a new procedure defined with annotations on a java class.
* @param proc the procedure class
*/
public void register( Class> proc ) throws KernelException
{
for ( CallableProcedure procedure : compiler.compile( proc ) )
{
register( procedure );
}
}
/**
* Registers a type and how to convert it to a Neo4jType
* @param javaClass the class of the native type
* @param toNeo the conversion to Neo4jTypes
*/
public void registerType( Class> javaClass, TypeMappers.NeoValueConverter toNeo )
{
typeMappers.registerType( javaClass, toNeo );
}
/**
* Registers a component, these become available in reflective procedures for injection.
*
* @param cls the type of component to be registered (this is what users 'ask' for in their field declaration)
* @param supplier a function that supplies the actual component, given the context of a procedure invocation
*/
public void registerComponent( Class cls, Function supplier )
{
components.register( cls, supplier );
}
public ProcedureSignature get( ProcedureSignature.ProcedureName name ) throws ProcedureException
{
return registry.get( name );
}
public Set getAll()
{
return registry.getAll();
}
public RawIterator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy