s4/dsdb-schema: Index attributes on msDS-IntId value
authorKamen Mazdrashki <kamenim@samba.org>
Fri, 18 Jun 2010 21:00:08 +0000 (00:00 +0300)
committerKamen Mazdrashki <kamenim@samba.org>
Sun, 20 Jun 2010 23:57:55 +0000 (02:57 +0300)
O(n) search for dsdb_attribute by msDS-IntId value was
replaced by binary-search in ordered index.

I've choosen the approach of separate index on msDS-IntId values
as I think it is more clear what we are searching for.
And it should little bit faster as we can clearly determine
in which index to perform the search based on ATTID value -
ATTIDs based on prefixMap and ATTIDs based on msDS-IntId
are in separate ranges.

Other way to implement this index was to merge msDS-IntId values
in attributeID_id index.
This led me to a shorted but not so obvious implementation.

source4/dsdb/schema/schema.h
source4/dsdb/schema/schema_query.c
source4/dsdb/schema/schema_set.c

index 0cbc21868fcfa13000810ebb1020ae2524c2ce2f..34423be8090155a33a65d168c7d7ec134f2c0781 100644 (file)
@@ -209,6 +209,8 @@ struct dsdb_schema {
        struct dsdb_attribute **attributes_by_attributeID_id;
        struct dsdb_attribute **attributes_by_attributeID_oid;
        struct dsdb_attribute **attributes_by_linkID;
+       uint32_t num_int_id_attr;
+       struct dsdb_attribute **attributes_by_msDS_IntId;
 
        struct {
                bool we_are_master;
index 4ff84185f8d763a655116b3172e0f30910296a67..8ea79ff4bb01890d5bd04694d256ff1d340810cb 100644 (file)
@@ -65,11 +65,9 @@ const struct dsdb_attribute *dsdb_attribute_by_attributeID_id(const struct dsdb_
 
        /* check for msDS-IntId type attribute */
        if (dsdb_pfm_get_attid_type(id) == dsdb_attid_type_intid) {
-               for (c = schema->attributes; c; c = c->next) {
-                       if (c->msDS_IntId == id) {
-                               return c;
-                       }
-               }
+               BINARY_ARRAY_SEARCH_P(schema->attributes_by_msDS_IntId,
+                                     schema->num_int_id_attr, msDS_IntId, id, uint32_cmp, c);
+               return c;
        }
 
        BINARY_ARRAY_SEARCH_P(schema->attributes_by_attributeID_id,
index 5ecbad214fb39e49c635c54e3d5cdf0e6efe3a61..fc255a1cd3cd74767d63c8f4fb1bbce162c27e1b 100644 (file)
@@ -230,6 +230,7 @@ static int dsdb_setup_sorted_accessors(struct ldb_context *ldb,
        struct dsdb_class *cur;
        struct dsdb_attribute *a;
        unsigned int i;
+       unsigned int num_int_id;
 
        talloc_free(schema->classes_by_lDAPDisplayName);
        talloc_free(schema->classes_by_governsID_id);
@@ -268,35 +269,54 @@ static int dsdb_setup_sorted_accessors(struct ldb_context *ldb,
        /* now build the attribute accessor arrays */
        talloc_free(schema->attributes_by_lDAPDisplayName);
        talloc_free(schema->attributes_by_attributeID_id);
+       talloc_free(schema->attributes_by_msDS_IntId);
        talloc_free(schema->attributes_by_attributeID_oid);
        talloc_free(schema->attributes_by_linkID);
 
-       /* count the attributes */
-       for (i=0, a=schema->attributes; a; i++, a=a->next) /* noop */ ;
+       /* count the attributes
+        * and attributes with msDS-IntId set */
+       num_int_id = 0;
+       for (i=0, a=schema->attributes; a; i++, a=a->next) {
+               if (a->msDS_IntId != 0) {
+                       num_int_id++;
+               }
+       }
        schema->num_attributes = i;
+       schema->num_int_id_attr = num_int_id;
 
        /* setup attributes_by_* */
        schema->attributes_by_lDAPDisplayName = talloc_array(schema, struct dsdb_attribute *, i);
        schema->attributes_by_attributeID_id    = talloc_array(schema, struct dsdb_attribute *, i);
+       schema->attributes_by_msDS_IntId        = talloc_array(schema,
+                                                              struct dsdb_attribute *, num_int_id);
        schema->attributes_by_attributeID_oid   = talloc_array(schema, struct dsdb_attribute *, i);
        schema->attributes_by_linkID              = talloc_array(schema, struct dsdb_attribute *, i);
        if (schema->attributes_by_lDAPDisplayName == NULL ||
            schema->attributes_by_attributeID_id == NULL ||
+           schema->attributes_by_msDS_IntId == NULL ||
            schema->attributes_by_attributeID_oid == NULL ||
            schema->attributes_by_linkID == NULL) {
                goto failed;
        }
 
+       num_int_id = 0;
        for (i=0, a=schema->attributes; a; i++, a=a->next) {
                schema->attributes_by_lDAPDisplayName[i] = a;
                schema->attributes_by_attributeID_id[i]    = a;
                schema->attributes_by_attributeID_oid[i]   = a;
                schema->attributes_by_linkID[i]          = a;
+               /* append attr-by-msDS-IntId values */
+               if (a->msDS_IntId != 0) {
+                       schema->attributes_by_msDS_IntId[num_int_id] = a;
+                       num_int_id++;
+               }
        }
+       SMB_ASSERT(num_int_id == schema->num_int_id_attr);
 
        /* sort the arrays */
        TYPESAFE_QSORT(schema->attributes_by_lDAPDisplayName, schema->num_attributes, dsdb_compare_attribute_by_lDAPDisplayName);
        TYPESAFE_QSORT(schema->attributes_by_attributeID_id, schema->num_attributes, dsdb_compare_attribute_by_attributeID_id);
+       TYPESAFE_QSORT(schema->attributes_by_msDS_IntId, schema->num_int_id_attr, dsdb_compare_attribute_by_attributeID_id);
        TYPESAFE_QSORT(schema->attributes_by_attributeID_oid, schema->num_attributes, dsdb_compare_attribute_by_attributeID_oid);
        TYPESAFE_QSORT(schema->attributes_by_linkID, schema->num_attributes, dsdb_compare_attribute_by_linkID);
 
@@ -309,6 +329,7 @@ failed:
        schema->classes_by_cn = NULL;
        schema->attributes_by_lDAPDisplayName = NULL;
        schema->attributes_by_attributeID_id = NULL;
+       schema->attributes_by_msDS_IntId = NULL;
        schema->attributes_by_attributeID_oid = NULL;
        schema->attributes_by_linkID = NULL;
        ldb_oom(ldb);