/* * The contents of this file are subject to the Initial * Developer's Public License Version 1.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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. * * Software distributed under the License is distributed AS IS, * WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the License for the specific language governing rights * and limitations under the License. * * The Original Code was created by Dmitry Yemanov * for the Firebird Open Source RDBMS project. * * Copyright (c) 2002 Dmitry Yemanov * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #ifndef COMMON_CONFIG_H #define COMMON_CONFIG_H #include "../common/classes/fb_string.h" #include "fb_vector.h" #include "../jrd/os/path_utils.h" /** Since the original (isc.cpp) code wasn't able to provide powerful and easy-to-use abilities to work with complex configurations, a decision has been made to create a completely new one. This class is a public interface for our generic configuration manager and allows to access all configuration values by its getXXX() member functions. Each of these functions corresponds to one and only one key and has one input argument - default value, which is used when the requested key is missing or the configuration file is not found. Supported value datatypes are "const char*", "int" and "bool". Usual default values for these datatypes are empty string, zero and false respectively. There are two types of member functions - scalar and vector. The former ones return single value of the given type. The latter ones return vector which contains an ordered array of values. There's one exception - getRootDirectory() member function, which returns root pathname of the current installation. This value isn't stored in the configuration file, but is managed by the code itself. But there's a way to override this value via the configuration file as well. To add new configuration item, you have to take the following steps: 1. Add key description to ConfigImpl::entries[] array (config.cpp) 2. Add logical key to Config::ConfigKey enumeration (config.h) (note: both physical and logical keys MUST have the same ordinal position within appropriate structures) 3. Add member function to Config class (config.h) and implement it in config.cpp module. **/ extern const char* GCPolicyCooperative; extern const char* GCPolicyBackground; extern const char* GCPolicyCombined; extern const char* GCPolicyDefault; class Config { enum ConfigKey { KEY_ROOT_DIRECTORY, // 0 KEY_SORT_MEM_BLOCK_SIZE, // 1 KEY_SORT_MEM_UPPER_LIMIT, // 2 KEY_REMOTE_FILE_OPEN_ABILITY, // 3 KEY_GUARDIAN_OPTION, // 4 KEY_CPU_AFFINITY_MASK, // 5 KEY_OLD_PARAMETER_ORDERING, // 6 KEY_TCP_REMOTE_BUFFER_SIZE, // 7 KEY_TCP_NO_NAGLE, // 8 KEY_DEFAULT_DB_CACHE_PAGES, // 9 KEY_CONNECTION_TIMEOUT, // 10 KEY_DUMMY_PACKET_INTERVAL, // 11 KEY_LOCK_MEM_SIZE, // 12 KEY_LOCK_SEM_COUNT, // 13 KEY_LOCK_SIGNAL, // 14 KEY_LOCK_GRANT_ORDER, // 15 KEY_LOCK_HASH_SLOTS, // 16 KEY_LOCK_ACQUIRE_SPINS, // 17 KEY_EVENT_MEM_SIZE, // 18 KEY_DEADLOCK_TIMEOUT, // 19 KEY_SOLARIS_STALL_VALUE, // 20 KEY_TRACE_MEMORY_POOLS, // 21 KEY_PRIORITY_SWITCH_DELAY, // 22 KEY_USE_PRIORITY_SCHEDULER, // 23 KEY_PRIORITY_BOOST, // 24 KEY_REMOTE_SERVICE_NAME, // 25 KEY_REMOTE_SERVICE_PORT, // 26 KEY_REMOTE_PIPE_NAME, // 27 KEY_IPC_NAME, // 28 KEY_MAX_UNFLUSHED_WRITES, // 29 KEY_MAX_UNFLUSHED_WRITE_TIME, // 30 KEY_PROCESS_PRIORITY_LEVEL, // 31 KEY_CREATE_INTERNAL_WINDOW, // 32 KEY_COMPLETE_BOOLEAN_EVALUATION, // 33 KEY_REMOTE_AUX_PORT, // 34 KEY_REMOTE_BIND_ADDRESS, // 35 KEY_EXTERNAL_FILE_ACCESS, // 36 KEY_DATABASE_ACCESS, // 37 KEY_UDF_ACCESS, // 38 KEY_TEMP_DIRECTORIES, // 39 KEY_BUGCHECK_ABORT, // 40 KEY_TRACE_DSQL, // 41 KEY_LEGACY_HASH, // 42 KEY_GC_POLICY, // 43 KEY_REDIRECTION // 44 }; public: /* Installation directory */ static const char* getInstallDirectory(); /* Root directory of current installation */ static const char* getRootDirectory(); /* Block size for the sorting manager */ static int getSortMemBlockSize(); /* Memory usage limit for the sorting manager */ static int getSortMemUpperLimit(); /* Whether remote (NFS) files can be opened */ static bool getRemoteFileOpenAbility(); /* Startup option for the guardian */ static int getGuardianOption(); /* CPU affinity mask */ static int getCpuAffinityMask(); /* Old parameter ordering for backward compatibility with FB1/IB6.X */ static bool getOldParameterOrdering(); /* XDR buffer size */ static int getTcpRemoteBufferSize(); /* Disable Nagle algorithm */ static bool getTcpNoNagle(); /* Default database cache size */ static int getDefaultDbCachePages(); /* Connection timeout */ static int getConnectionTimeout(); /* Dummy packet interval */ static int getDummyPacketInterval(); /* Lock manager memory size */ static int getLockMemSize(); /* Lock manager semaphore count */ static int getLockSemCount(); /* Lock manager signal number */ static int getLockSignal(); /* Lock manager grant order */ static bool getLockGrantOrder(); /* Lock manager hash slots */ static int getLockHashSlots(); /* Lock manager acquire spins */ static int getLockAcquireSpins(); /* Event manager memory size */ static int getEventMemSize(); /* Deadlock timeout */ static int getDeadlockTimeout(); /* Solaris stall value */ static int getSolarisStallValue(); /* Trace memory pools */ static bool getTraceMemoryPools(); /* Priority switch delay */ static int getPrioritySwitchDelay(); /* Use priority scheduler */ static bool getUsePriorityScheduler(); /* Priority boost */ static int getPriorityBoost(); /* Service name for remote protocols */ static const char *getRemoteServiceName(); /* Service port for INET */ static unsigned short getRemoteServicePort(); /* Pipe name for WNET */ static const char *getRemotePipeName(); /* Name for IPC-related objects */ static const char *getIpcName(); /* Unflushed writes number */ static int getMaxUnflushedWrites(); /* Unflushed write time */ static int getMaxUnflushedWriteTime(); /* Process priority level */ static int getProcessPriorityLevel(); /* Create window for IPC stuff */ static bool getCreateInternalWindow(); /* Complete boolean evaluation */ static bool getCompleteBooleanEvaluation(); /* Port for event processing */ static int getRemoteAuxPort(); /* Server binding NIC address */ static const char *getRemoteBindAddress(); /* Directory list for external tables */ static const char *getExternalFileAccess(); /* Directory list for databases */ static const char *getDatabaseAccess(); /* Directory list for UDF libraries */ static const char *getUdfAccess(); /* Temporary directories list */ static const char *getTempDirectories(); /* DSQL trace bitmask */ static int getTraceDSQL(); /* Abort on BUGCHECK and structured exceptions */ static bool getBugcheckAbort(); /* Let use of des hash to verify passwords */ static bool getLegacyHash(); /* GC policy */ static const char *getGCPolicy(); /* Redirection */ static bool getRedirection(); }; namespace Firebird { // Add appropriate file prefix. inline void Prefix(PathName& result, const PathName& file) { PathUtils::concatPath(result, Config::getRootDirectory(), file); } } //namespace Firebird #endif // COMMON_CONFIG_H