blob: fba85c3a14a8ff0cf71c203ae6d471015fb165fe [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.internal.processors.query.h2;
import java.util.Collection;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* Database schema object.
*/
public class H2Schema {
/** */
private final String schemaName;
/** */
private final ConcurrentMap<String, H2TableDescriptor> tbls = new ConcurrentHashMap<>();
/** */
private final ConcurrentMap<H2TypeKey, H2TableDescriptor> typeToTbl = new ConcurrentHashMap<>();
/** Whether schema is predefined and cannot be dorpped. */
private final boolean predefined;
/** Usage count. */
private int usageCnt;
/**
* Constructor.
*
* @param schemaName Schema name.
* @param predefined Predefined flag.
*/
public H2Schema(String schemaName, boolean predefined) {
this.schemaName = schemaName;
this.predefined = predefined;
}
/**
* @return Schema name.
*/
public String schemaName() {
return schemaName;
}
/**
* Increments counter for number of caches having this schema.
*/
public void incrementUsageCount() {
if (!predefined)
++usageCnt;
}
/**
* Increments counter for number of caches having this schema.
*
* @return If schema is no longer used.
*/
public boolean decrementUsageCount() {
return !predefined && --usageCnt == 0;
}
/**
* @return Tables.
*/
public Collection<H2TableDescriptor> tables() {
return tbls.values();
}
/**
* @param tblName Table name.
* @return Table.
*/
public H2TableDescriptor tableByName(String tblName) {
return tbls.get(tblName);
}
/**
* @param typeName Type name.
* @return Table.
*/
public H2TableDescriptor tableByTypeName(String cacheName, String typeName) {
return typeToTbl.get(new H2TypeKey(cacheName, typeName));
}
/**
* @param tbl Table descriptor.
*/
public void add(H2TableDescriptor tbl) {
if (tbls.putIfAbsent(tbl.tableName(), tbl) != null)
throw new IllegalStateException("Table already registered: " + tbl.fullTableName());
if (typeToTbl.putIfAbsent(new H2TypeKey(tbl.cacheName(), tbl.typeName()), tbl) != null)
throw new IllegalStateException("Table already registered: " + tbl.fullTableName());
}
/**
* Drop table.
*
* @param tbl Table to be removed.
*/
public void drop(H2TableDescriptor tbl) {
tbl.onDrop();
tbls.remove(tbl.tableName());
typeToTbl.remove(new H2TypeKey(tbl.cacheName(), tbl.typeName()));
}
/**
* @return {@code True} if schema is predefined.
*/
public boolean predefined() {
return predefined;
}
}