X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-ldbm%2Fback-ldbm.h;h=16f5ed28a17e0c995d0eabc1f4f8a787499ca312;hb=08059f1633bfd9d0a709761b026bdb8e4441c6e6;hp=9a68e0e2d180c0c2c3300f7603ba47190d558b73;hpb=e4f6d548773d1a79d9ca6fa82b6c486fbdc0c47b;p=openldap diff --git a/servers/slapd/back-ldbm/back-ldbm.h b/servers/slapd/back-ldbm/back-ldbm.h index 9a68e0e2d1..16f5ed28a1 100644 --- a/servers/slapd/back-ldbm/back-ldbm.h +++ b/servers/slapd/back-ldbm/back-ldbm.h @@ -1,6 +1,7 @@ /* back-ldbm.h - ldap ldbm back-end header file */ +/* $OpenLDAP$ */ /* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ @@ -13,37 +14,23 @@ LDAP_BEGIN_DECL #define DEFAULT_CACHE_SIZE 1000 -#ifdef HAVE_BERKELEY_DB2 +#if defined(HAVE_BERKELEY_DB) && DB_VERSION_MAJOR >= 2 # define DEFAULT_DBCACHE_SIZE (100 * DEFAULT_DB_PAGE_SIZE) #else # define DEFAULT_DBCACHE_SIZE 100000 #endif -#define DEFAULT_DB_DIRECTORY "/usr/tmp" -#define DEFAULT_MODE 0600 - -#define SUBLEN 3 - -#define DN_BASE_PREFIX '=' -#define DN_ONE_PREFIX '@' -#define DN_SUBTREE_PREFIX '?' - -#define SLAPD_FILTER_DN_ONE ((ber_tag_t) -2) -#define SLAPD_FILTER_DN_SUBTREE ((ber_tag_t) -3) +#define DN_BASE_PREFIX SLAP_INDEX_EQUALITY_PREFIX +#define DN_ONE_PREFIX '%' +#define DN_SUBTREE_PREFIX '@' /* * there is a single index for each attribute. these prefixes ensure * that there is no collision among keys. */ -#define EQ_PREFIX '=' /* prefix for equality keys */ -#define APPROX_PREFIX '~' /* prefix for approx keys */ -#define SUB_PREFIX '*' /* prefix for substring keys */ -#define CONT_PREFIX '\\' /* prefix for continuation keys */ -/* allow 3 characters per byte + PREFIX + EOS */ -#define CONT_SIZE ( sizeof(long)*3 + 1 + 1 ) - -#define UNKNOWN_PREFIX '?' /* prefix for unknown keys */ +/* allow PREFIX + byte for continuate number */ +#define SLAP_INDEX_CONT_SIZE ( sizeof(SLAP_INDEX_CONT_PREFIX) + sizeof(unsigned char) ) #define DEFAULT_BLOCKSIZE 8192 @@ -71,6 +58,11 @@ typedef ID ID_BLOCK; /* all ID_BLOCK macros operate on a pointer to a ID_BLOCK */ #define ID_BLOCK_NMAX(b) ((b)[ID_BLOCK_NMAX_OFFSET]) + +/* Use this macro to get the value, but not to set it. + * By default this is identical to above. + */ +#define ID_BLOCK_NMAXN(b) ID_BLOCK_NMAX(b) #define ID_BLOCK_NIDS(b) ((b)[ID_BLOCK_NIDS_OFFSET]) #define ID_BLOCK_ID(b, n) ((b)[ID_BLOCK_IDS_OFFSET+(n)]) @@ -82,6 +74,23 @@ typedef ID ID_BLOCK; #define ID_BLOCK_INDIRECT_VALUE 0 #define ID_BLOCK_INDIRECT(b) (ID_BLOCK_NIDS(b) == ID_BLOCK_INDIRECT_VALUE) +#define USE_INDIRECT_NIDS 1 + +#ifdef USE_INDIRECT_NIDS +/* + * Use the high bit of ID_BLOCK_NMAX to indicate an INDIRECT block, thus + * freeing up the ID_BLOCK_NIDS to store an actual count. This allows us + * to use binary search on INDIRECT blocks. + */ +#undef ID_BLOCK_NMAXN +#define ID_BLOCK_NMAXN(b) ((b)[ID_BLOCK_NMAX_OFFSET]&0x7fffffff) +#undef ID_BLOCK_INDIRECT_VALUE +#define ID_BLOCK_INDIRECT_VALUE 0x80000000 +#undef ID_BLOCK_INDIRECT +#define ID_BLOCK_INDIRECT(b) (ID_BLOCK_NMAX(b) & ID_BLOCK_INDIRECT_VALUE) + +#endif /* USE_INDIRECT_NIDS */ + /* for the in-core cache of entries */ typedef struct ldbm_cache { int c_maxsize; @@ -101,50 +110,38 @@ typedef struct ldbm_dbcache { int dbc_refcnt; int dbc_maxids; int dbc_maxindirect; + int dbc_dirty; + int dbc_flags; time_t dbc_lastref; long dbc_blksize; char *dbc_name; LDBM dbc_db; + ldap_pvt_thread_mutex_t dbc_write_mutex; } DBCache; -/* for the cache of attribute information (which are indexed, etc.) */ -typedef struct ldbm_attrinfo { - char *ai_type; /* type name (cn, sn, ...) */ - int ai_indexmask; /* how the attr is indexed */ -#define INDEX_PRESENCE 0x0001 -#define INDEX_EQUALITY 0x0002 -#define INDEX_APPROX 0x0004 -#define INDEX_SUB 0x0008 -#define INDEX_UNKNOWN 0x0010 -#define INDEX_FROMINIT 0x1000 - int ai_syntaxmask; /* what kind of syntax */ -/* ...from slap.h... -#define SYNTAX_CIS 0x01 -#define SYNTAX_CES 0x02 -#define SYNTAX_BIN 0x04 - ... etc. ... -*/ -} AttrInfo; - -#define MAXDBCACHE 16 +#define MAXDBCACHE 128 struct ldbminfo { + ldap_pvt_thread_rdwr_t li_giant_rwlock; ID li_nextid; - ldap_pvt_thread_mutex_t li_nextid_mutex; - ldap_pvt_thread_mutex_t li_root_mutex; - ldap_pvt_thread_mutex_t li_add_mutex; int li_mode; + slap_mask_t li_defaultmask; char *li_directory; Cache li_cache; Avlnode *li_attrs; + int li_dblocking; /* lock databases */ + int li_dbwritesync; /* write sync */ int li_dbcachesize; - int li_dbcachewsync; DBCache li_dbcache[MAXDBCACHE]; ldap_pvt_thread_mutex_t li_dbcache_mutex; ldap_pvt_thread_cond_t li_dbcache_cv; -#ifdef HAVE_BERKELEY_DB2 - DB_ENV li_db_env; -#endif + DB_ENV *li_dbenv; + int li_envdirok; + int li_dbsyncfreq; + int li_dbsyncwaitn; + int li_dbsyncwaitinterval; + ldap_pvt_thread_t li_dbsynctid; + int li_dbshutdown; }; LDAP_END_DECL