Package org.structr.neo4j

Source Code of org.structr.neo4j.Neo4jService

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr 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 Affero General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.neo4j;

import org.structr.files.ftp.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.ftpserver.FtpServer;
import org.apache.ftpserver.FtpServerFactory;
import org.apache.ftpserver.ftplet.FtpException;
import org.apache.ftpserver.listener.ListenerFactory;
import org.neo4j.kernel.GraphDatabaseAPI;
import org.neo4j.server.WrappingNeoServerBootstrapper;
import org.neo4j.server.configuration.Configurator;
import org.neo4j.server.configuration.ServerConfigurator;
import org.structr.common.StructrConf;
import org.structr.core.Command;
import org.structr.core.RunnableService;
import org.structr.core.Services;
import org.structr.core.app.StructrApp;
import static org.structr.rest.service.HttpService.APPLICATION_HOST;

/**
*
* @author Axel Morgner
*/
public class Neo4jService implements RunnableService {

  private static final Logger logger = Logger.getLogger(Neo4jService.class.getName());
  private boolean isRunning          = false;

  private static int port;
  private static String host;
  private WrappingNeoServerBootstrapper neoServerBootstrapper;

  public static final String NEO4J_BROWSER_HOST          = "neo4j.server.host";
  public static final String NEO4J_BROWSER_PORT          = "neo4j.server.port";

  @Override
  public void startService() {

   

    try {
      GraphDatabaseAPI api = (GraphDatabaseAPI) StructrApp.getInstance().getGraphDatabaseService();

      ServerConfigurator config = new ServerConfigurator(api);

      config.configuration()
        .addProperty(Configurator.WEBSERVER_ADDRESS_PROPERTY_KEY, host);

      config.configuration()
        .addProperty(Configurator.WEBSERVER_PORT_PROPERTY_KEY, port);
     
      logger.log(Level.INFO, "Starting Neo4j server on port {0}", new Object[] { String.valueOf(port) });

      neoServerBootstrapper = new WrappingNeoServerBootstrapper(api, config);
      neoServerBootstrapper.start();

    } catch (Exception e) {

      logger.log(Level.SEVERE, e.getMessage());
     
    }

  }

  @Override
  public void stopService() {

    if (isRunning) {
      this.shutdown();
    }
  }

  @Override
  public boolean runOnStartup() {
    return true;
  }

  @Override
  public boolean isRunning() {
    return neoServerBootstrapper != null;
  }

  @Override
  public void injectArguments(Command command) {
  }

  @Override
  public void initialize(final StructrConf config) {

    final StructrConf finalConfig = new StructrConf();

    // Default config
    finalConfig.setProperty(NEO4J_BROWSER_PORT,      "7474");

    Services.mergeConfiguration(finalConfig, config);

    final String configuredPort = finalConfig.getProperty(NEO4J_BROWSER_PORT);
    host = finalConfig.getProperty(NEO4J_BROWSER_HOST);

    try {
      port = Integer.parseInt(configuredPort);

    } catch (Throwable t) {

      logger.log(Level.SEVERE, "Unable to parse Neo4j Browser port {0}", configuredPort);

      port = -1;
    }

    if (port == -1) {
      logger.log(Level.SEVERE, "Unable to start Neo4j service.");
    }
  }

  @Override
  public void initialized() {}

  @Override
  public void shutdown() {
    if (isRunning) {
      neoServerBootstrapper.stop();
      this.isRunning = false;
    }
  }

  @Override
  public String getName() {
    return WrappingNeoServerBootstrapper.class.getSimpleName();
  }

  @Override
  public boolean isVital() {
    return false;
  }

}
TOP

Related Classes of org.structr.neo4j.Neo4jService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.