Package com.orientechnologies.orient.console

Source Code of com.orientechnologies.orient.console.OrientConsole

/*
* Copyright 1999-2010 Luca Garulli (l.garulli--at--orientechnologies.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 com.orientechnologies.orient.console;

import com.orientechnologies.common.console.OConsoleApplication;
import com.orientechnologies.orient.client.remote.OEngineRemote;
import com.orientechnologies.orient.core.OConstants;
import com.orientechnologies.orient.core.Orient;

public abstract class OrientConsole extends OConsoleApplication {

  public OrientConsole(String[] args) {
    super(args);
  }

  @Override
  protected void onException(Throwable e) {
    Throwable current = e;
    while (current != null) {
      err.println("Error: " + (current.getMessage() != null ? current.getMessage() : current.toString()));
      current = current.getCause();
    }
  }

  @Override
  protected void onBefore() {
    Orient.instance().registerEngine(new OEngineRemote());
    printClusterInfo();
  }

  @Override
  protected void onAfter() {
    out.println();
  }

  @Override
  public void help() {
    super.help();
  }

  private void printClusterInfo() {
    out.println("ORIENT database v." + OConstants.ORIENT_VERSION + " " + OConstants.ORIENT_URL);
    out.println("Type 'help' to display all the commands supported.");
  }
}
TOP

Related Classes of com.orientechnologies.orient.console.OrientConsole

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.