com.orientechnologies.orient.server.OSystemDatabase Maven / Gradle / Ivy
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.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://orientdb.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.*;
import com.orientechnologies.orient.core.metadata.schema.OClass;
import com.orientechnologies.orient.core.metadata.schema.OSchema;
import com.orientechnologies.orient.core.record.OElement;
import com.orientechnologies.orient.core.record.impl.ODocument;
import com.orientechnologies.orient.core.sql.OCommandSQL;
import java.util.UUID;
public class OSystemDatabase {
public static final String SYSTEM_DB_NAME = "OSystem";
public static final String SERVER_INFO_CLASS = "ServerInfo";
public static final String SERVER_ID_PROPERTY = "serverId";
private final OServer server;
private String serverId;
public OSystemDatabase(final OServer server) {
this.server = server;
init();
}
public String getSystemDatabaseName() {
return OSystemDatabase.SYSTEM_DB_NAME;
}
public String getSystemDatabasePath() {
return server.getDatabaseDirectory() + getSystemDatabaseName();
}
/**
* Adds the specified cluster to the class, if it doesn't already exist.
*/
public void createCluster(final String className, final String clusterName) {
final ODatabaseDocumentInternal currentDB = ODatabaseRecordThreadLocal.instance().getIfDefined();
try {
final ODatabaseDocumentInternal sysdb = openSystemDatabase();
try {
if (!sysdb.existsCluster(clusterName)) {
OSchema schema = sysdb.getMetadata().getSchema();
OClass cls = schema.getClass(className);
if (cls != null) {
cls.addCluster(clusterName);
} else {
OLogManager.instance().error(this, "createCluster() Class name %s does not exist", null, className);
}
}
} finally {
sysdb.close();
}
} finally {
if (currentDB != null)
ODatabaseRecordThreadLocal.instance().set(currentDB);
else
ODatabaseRecordThreadLocal.instance().remove();
}
}
/**
* Opens the System Database and returns an ODatabaseDocumentInternal object. The caller is responsible for retrieving any
* ThreadLocal-stored database before openSystemDatabase() is called and restoring it after the database is closed.
*/
public ODatabaseDocumentInternal openSystemDatabase() {
return server.getDatabases().openNoAuthorization(getSystemDatabaseName());
}
public Object execute(final OCallable