r9391: Convert all the code to use struct ldb_dn to ohandle ldap like distinguished...
[kai/samba-autobuild/.git] / source4 / lib / ldb / ldb_tdb / ldb_tdb.h
index 7b926e21a2633a7d9083d6eed3b881d4b85a9020..f08601832c7d99747447978aca1f78b41d6fb900 100644 (file)
@@ -1,5 +1,8 @@
 
-#ifdef STANDALONE
+#ifdef _SAMBA_BUILD_
+#include "system/filesys.h"
+#include "lib/tdb/include/tdb.h"
+#else
 #include "tdb.h"
 #endif
 
@@ -13,17 +16,17 @@ struct ltdb_private {
           handling. It has plenty of digits of precision */
        double sequence_number;
 
-       struct {
-               struct ldb_message baseinfo;
-               struct ldb_message indexlist;
-               struct ldb_message attributes;
-               struct ldb_message subclasses;
+       struct ltdb_cache {
+               struct ldb_message *baseinfo;
+               struct ldb_message *indexlist;
+               struct ldb_message *attributes;
+               struct ldb_message *subclasses;
 
                struct {
                        char *name;
                        int flags;
                } last_attribute;
-       } cache;
+       } *cache;
 
        /* error if an internal ldb+tdb error */
        const char *last_err_string;
@@ -42,26 +45,19 @@ struct ltdb_private {
 #define LTDB_SEQUENCE_NUMBER "sequenceNumber"
 #define LTDB_OBJECTCLASS "objectClass"
 
-/* well known attribute flags */
-#define LTDB_FLAG_CASE_INSENSITIVE (1<<0)
-#define LTDB_FLAG_INTEGER          (1<<1)
-#define LTDB_FLAG_WILDCARD         (1<<2)
-#define LTDB_FLAG_OBJECTCLASS      (1<<3)
-#define LTDB_FLAG_HIDDEN           (1<<4)
-
 /* The following definitions come from lib/ldb/ldb_tdb/ldb_cache.c  */
 
-void ltdb_cache_free(struct ldb_module *module);
+int ltdb_cache_reload(struct ldb_module *module);
 int ltdb_cache_load(struct ldb_module *module);
 int ltdb_increase_sequence_number(struct ldb_module *module);
-int ltdb_attribute_flags(struct ldb_module *module, const char *attr_name);
+int ltdb_check_at_attributes_values(const struct ldb_val *value);
 
 /* The following definitions come from lib/ldb/ldb_tdb/ldb_index.c  */
 
 struct ldb_parse_tree;
 
 int ltdb_search_indexed(struct ldb_module *module, 
-                       const char *base,
+                       const struct ldb_dn *base,
                        enum ldb_scope scope,
                        struct ldb_parse_tree *tree,
                        const char * const attrs[], struct ldb_message ***res);
@@ -85,30 +81,31 @@ int ltdb_unpack_data(struct ldb_module *module,
 int ltdb_has_wildcard(struct ldb_module *module, const char *attr_name, 
                      const struct ldb_val *val);
 void ltdb_search_dn1_free(struct ldb_module *module, struct ldb_message *msg);
-int ltdb_search_dn1(struct ldb_module *module, const char *dn, struct ldb_message *msg);
-int ltdb_search_dn(struct ldb_module *module, char *dn,
-                  const char * const attrs[], struct ldb_message ***res);
+int ltdb_search_dn1(struct ldb_module *module, const struct ldb_dn *dn, struct ldb_message *msg);
 int ltdb_add_attr_results(struct ldb_module *module, struct ldb_message *msg,
                          const char * const attrs[], 
-                         unsigned int *count, 
+                         int *count, 
                          struct ldb_message ***res);
-int ltdb_search_free(struct ldb_module *module, struct ldb_message **msgs);
-int ltdb_search(struct ldb_module *module, const char *base,
+int ltdb_search(struct ldb_module *module, const struct ldb_dn *base,
                enum ldb_scope scope, const char *expression,
                const char * const attrs[], struct ldb_message ***res);
+int ltdb_search_bytree(struct ldb_module *module, const struct ldb_dn *base,
+                      enum ldb_scope scope, struct ldb_parse_tree *tree,
+                      const char * const attrs[], struct ldb_message ***res);
+
 
 /* The following definitions come from lib/ldb/ldb_tdb/ldb_tdb.c  */
-struct TDB_DATA ltdb_key(struct ldb_module *module, const char *dn);
+struct TDB_DATA ltdb_key(struct ldb_module *module, const struct ldb_dn *dn);
 int ltdb_store(struct ldb_module *module, const struct ldb_message *msg, int flgs);
-int ltdb_delete_noindex(struct ldb_module *module, const char *dn);
+int ltdb_delete_noindex(struct ldb_module *module, const struct ldb_dn *dn);
 int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *msg);
+int ltdb_lock_read(struct ldb_module *module);
+int ltdb_unlock_read(struct ldb_module *module);
+
+int ltdb_index_del_value(struct ldb_module *module, const char *dn, 
+                        struct ldb_message_element *el, int v_idx);
+
+struct tdb_context *ltdb_wrap_open(TALLOC_CTX *mem_ctx,
+                                  const char *path, int hash_size, int tdb_flags,
+                                  int open_flags, mode_t mode);
 
-/* The following definitions come from lib/ldb/ldb_tdb/ldb_match.c  */
-int ltdb_val_equal(struct ldb_module *module,
-                 const char *attr_name,
-                 const struct ldb_val *v1, const struct ldb_val *v2);
-int ltdb_message_match(struct ldb_module *module, 
-                     struct ldb_message *msg,
-                     struct ldb_parse_tree *tree,
-                     const char *base,
-                     enum ldb_scope scope);