
com.orientechnologies.orient.server.OSystemDatabase Maven / Gradle / Ivy
/*
*
* * 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;
import com.orientechnologies.common.log.OLogManager;
import com.orientechnologies.common.util.OCallable;
import com.orientechnologies.orient.core.config.OGlobalConfiguration;
import com.orientechnologies.orient.core.db.ODatabase;
import com.orientechnologies.orient.core.db.ODatabaseDocumentInternal;
import com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal;
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx;
import com.orientechnologies.orient.core.record.impl.ODocument;
import com.orientechnologies.orient.core.sql.OCommandSQL;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class OSystemDatabase {
public static final String SYSTEM_DB_NAME = "OSystem";
private final OServer server;
public OSystemDatabase(final OServer server) {
this.server = server;
init();
}
public String getSystemDatabaseName() {
return OSystemDatabase.SYSTEM_DB_NAME;
}
public String getSystemDatabasePath() {
return server.getDatabaseDirectory() + getSystemDatabaseName();
}
public Object execute(final OCallable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy