org.seaborne.dboe.sys.Names Maven / Gradle / Ivy
The newest version!
/*
* 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.
*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*/
package org.seaborne.dboe.sys;
/** Names of things in TDB */
public class Names
{
/** Filename of the TDB configuration file */
public static final String TDB_CONFIG_FILE = "tdb.cfg" ;
/** Filename of the TDB lock file */
public static final String TDB_LOCK_FILE = "tdb.lock" ;
/* System files */
public static final String extJournal = "jrnl" ;
/* Component Transactional State */
public static final String extState = "cts" ;
public static final String journalFileBase = "journal" ;
public static final String journalFile = journalFileBase+"."+extJournal ;
// ++ Elsewhere
/* RDF indexes */
public static final String primaryIndexTriples = "SPO" ;
public static final String[] tripleIndexes = { primaryIndexTriples, "POS", "OSP" } ;
public static final String primaryIndexQuads = "GSPO" ;
public static final String[] quadIndexes = { primaryIndexQuads, "GPOS", "GOSP", "POSG", "OSPG", "SPOG"} ;
public static final String primaryIndexPrefix = "GPU" ;
public static final String[] prefixIndexes = { primaryIndexPrefix } ;
// ++ Elsewhere
/* B+Trees - nodes file and records file */
public static final String extBptState = "bpt" ;
public static final String extBptTree = "idn" ;
public static final String extBptRecords = "dat" ;
// /* B+Trees - single file per tree */
// public static final String btExt = "idx" ;
/* ExtHash - dictionary file*/
public static final String extHashExt = "exh" ;
public static final String extHashBucketExt = "dat" ;
public static final String datasetConfig = "config-tdb" ; // name of the TDB configuration file.
/* Node files */
public static final String extBdfState = "bdf" ; // Node state
public static final String extObjNodeData = "obj" ;
public static final String nodeTableBaseName = "nodes" ; // Node table
/** Prefixes file */
public static final String prefixTableBaseName = "prefixes" ; // Prefix node table
/** Optimizer / stats */
public static final String optStats = "stats.opt" ;
public static final String optFixed = "fixed.opt" ;
public static final String optNone = "none.opt" ;
public static final String optDefault = optFixed ;
public static final String extMeta = "info" ;
public static final String directoryMetafile = "this" ; // Root name of the directory for a metafile.
/** Name to indicate in-memory */
public static final String memName = "--mem--" ;
public static boolean isMem(String name) { return memName.equals(name) ; }
// ---- Names for Java properties in metadata files
public static String makeKey(String root, String...elements)
{ return makeName(root, elements) ; }
public static String makeName(String root, String...elements)
{
StringBuilder sb = new StringBuilder() ;
sb.append(root) ;
for ( String s : elements )
{
if ( ! s.startsWith(".") )
sb.append(".") ;
sb.append(s) ;
}
return sb.toString() ;
}
// Component elements.
public static final String elNode = "node" ;
public static final String elBPlusTree = "bptree" ;
public static final String elIndex = "index" ;
public static final String elObject = "object" ;
public static final String elType = "type" ;
public static final String elLayout = "layout" ;
public static final String elVersion = "version" ;
public static final String elTimestamp = "timestamp" ;
public static final String elCreated = "created" ;
// Root names.
public static final String keyNS = "tdb" ;
public static final String keyNSNode = makeName(keyNS, elNode) ;
public static final String keyNSBPlusTree = makeName(keyNS, elBPlusTree) ;
// Location metadata - in the directory wide metadata file.
public static final String kVersion = makeName(keyNS, elVersion) ;
public static final String kCreatedDate = makeName(keyNS, elTimestamp) ;
// Node table metadata
public static final String kNodeTableType = makeName(keyNS, elNode, elType) ;
public static final String kNodeTableLayout = makeName(keyNS, elNode, elLayout) ;
// // Object file
// public static final String kObjectTableType = makeName(keyNS, elObject, elType) ;
//
// // Default index metadata - in the index metadata file.
//
// public static final String kIndexType = makeName(keyNS, elIndex, elType) ;
// public static final String kIndexFileLayout = makeName(keyNS, elIndex, elLayout) ;
// See also BPlusTreeParams for keyNSBPlusTree derived names.
// // Current values
// public static final String currentIndexType = IndexType.BPlusTree.getName() ;
// public static final String currentIndexFileVersion = "v1" ;
// Property strings - Setup
public static final String pNode2NodeIdCacheSize = "tdb.cache.node2nodeid.size" ;
public static final String pNodeId2NodeCacheSize = "tdb.cache.nodeid2node.size" ;
public static final String pNodeMissesCacheSize = "tdb.cache.nodeMiss.size" ;
public static final String pBlockWriteCacheSize = "tdb.cache.blockwrite.size" ;
public static final String pBlockReadCacheSize = "tdb.cache.blockread.size" ;
public static final String pSyncTick = "tdb.synctick" ;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy