Package com.senseidb.federated.broker

Source Code of com.senseidb.federated.broker.SingleNodeStarter

/**
* This software is licensed to you under the Apache License, Version 2.0 (the
* "Apache License").
*
* LinkedIn's contributions are made under the Apache License. If you contribute
* to the Software, the contributions will be deemed to have been made under the
* Apache License, unless you expressly indicate otherwise. Please do not make any
* contributions that would be inconsistent with the Apache License.
*
* You may obtain a copy of the Apache License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, this software
* distributed under the Apache License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache
* License for the specific language governing permissions and limitations for the
* software governed under the Apache License.
*
* © 2012 LinkedIn Corp. All Rights Reserved. 
*/

package com.senseidb.federated.broker;

import java.io.File;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;

import com.senseidb.search.req.SenseiJavaSerializer;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.zookeeper.server.NIOServerCnxn;
import org.apache.zookeeper.server.ZooKeeperServer;
import org.apache.zookeeper.server.persistence.FileTxnSnapLog;
import org.eclipse.jetty.server.Server;

import com.senseidb.conf.SenseiConfParams;
import com.senseidb.conf.SenseiServerBuilder;
import com.senseidb.federated.broker.proxy.SenseiBrokerProxy;
import com.senseidb.search.node.SenseiServer;
import com.senseidb.search.req.SenseiRequest;
import com.senseidb.search.req.SenseiResult;

public class SingleNodeStarter {
  private static Server jettyServer;
  private static SenseiServer server;

  private static TestZkServer zkServer = new TestZkServer();

  public static void start(String localPath, int expectedDocs) {
    start(new File(getUri(localPath)), expectedDocs);
  }

  public static void start(File confDir, int expectedDocs) {
    try {
      zkServer.start();

      PropertiesConfiguration senseiConfiguration = new PropertiesConfiguration(new File(confDir, "sensei.properties"));
      final String indexDir = senseiConfiguration.getString(SenseiConfParams.SENSEI_INDEX_DIR);
      rmrf(new File(indexDir));
      SenseiServerBuilder senseiServerBuilder = new SenseiServerBuilder(confDir, null);
      server = senseiServerBuilder.buildServer();
      jettyServer = senseiServerBuilder.buildHttpRestServer();
      server.start(true);
      jettyServer.start();
      Runtime.getRuntime().addShutdownHook(new Thread() {
        @Override
        public void run() {
          try {jettyServer.stop();} catch (Exception e){};
          try {server.shutdown();} catch (Exception e){};
          try {rmrf(new File(indexDir));} catch (Exception e){};

          zkServer.stop();
        }
      });
      SenseiBrokerProxy brokerProxy = SenseiBrokerProxy.valueOf(senseiConfiguration, new HashMap<String, String>(), new SenseiJavaSerializer());
      while (true) {
        SenseiResult senseiResult = brokerProxy.doQuery(new SenseiRequest()).get(0);
        int totalDocs = senseiResult.getTotalDocs();
        System.out.println("TotalDocs = " + totalDocs);
        if (totalDocs >= expectedDocs) {
          break;
        }
        Thread.sleep(100);
      }
    } catch (Exception ex) {
      throw new RuntimeException(ex);
    }
  }

  public static boolean rmrf(File f) {
    if (f == null || !f.exists()) {
      return true;
    }
    if (f.isDirectory()) {
      for (File sub : f.listFiles()) {
        if (!rmrf(sub))
          return false;
      }
    }
    return f.delete();
  }

  private static URI getUri(String localPath) {
    try {
      return FederatedBrokerIntegrationTest.class.getClassLoader().getResource(localPath).toURI();
    } catch (URISyntaxException ex) {
      throw new RuntimeException(ex);
    }
  }
}
TOP

Related Classes of com.senseidb.federated.broker.SingleNodeStarter

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.