Package com.orientechnologies.orient.server.network.protocol.http

Source Code of com.orientechnologies.orient.server.network.protocol.http.ONetworkProtocolHttpDb

/*
    *
    *  *  Copyright 2014 Orient Technologies LTD (info(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.
    *  *
    *  * For more information: http://www.orientechnologies.com
    *
    */
package com.orientechnologies.orient.server.network.protocol.http;

import com.orientechnologies.orient.core.OConstants;
import com.orientechnologies.orient.core.config.OContextConfiguration;
import com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal;
import com.orientechnologies.orient.server.OServer;
import com.orientechnologies.orient.server.network.OServerNetworkListener;
import com.orientechnologies.orient.server.network.protocol.http.command.post.OServerCommandPostImportDatabase;
import com.orientechnologies.orient.server.network.protocol.http.command.post.OServerCommandPostUploadSingleFile;

import java.io.IOException;
import java.net.Socket;

public class ONetworkProtocolHttpDb extends ONetworkProtocolHttpAbstract {
   private static final String ORIENT_SERVER_DB         = "OrientDB Server v." + OConstants.getVersion();
   private static final int    CURRENT_PROTOCOL_VERSION = 10;

   @Override
   public void config(final OServerNetworkListener iListener, final OServer iServer, final Socket iSocket,
       final OContextConfiguration iConfiguration) throws IOException {
     server = iServer;
     setName("OrientDB HTTP Connection " + iSocket.getLocalAddress() + ":" + iSocket.getLocalPort() + "<-"
         + iSocket.getRemoteSocketAddress());

     super.config(iListener, server, iSocket, iConfiguration);
     cmdManager.registerCommand(new OServerCommandPostImportDatabase());
     cmdManager.registerCommand(new OServerCommandPostUploadSingleFile());

     connection.data.serverInfo = ORIENT_SERVER_DB;
   }

   @Override
   public int getVersion() {
     return CURRENT_PROTOCOL_VERSION;
   }

   public String getType() {
     return "http";
   }

   @Override
   protected void afterExecution() throws InterruptedException {
     ODatabaseRecordThreadLocal.INSTANCE.remove();
   }
}
TOP

Related Classes of com.orientechnologies.orient.server.network.protocol.http.ONetworkProtocolHttpDb

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.