This file is indexed.

/usr/lib/ocaml/ocamldap/ldap_schemaparser.mli is in libldap-ocaml-dev 2.1.8-10build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
(** A library for parsing rfc2252 schemas as returned by directory
  servers *)

module Oid :
  sig
    type t
    val of_string : string -> t
    val to_string : t -> string
    val compare : t -> t -> int
  end

val format_oid : Oid.t -> unit

module Lcstring :
  sig
    type t
    val of_string : string -> t
    val to_string : t -> string
    val compare : t -> t -> int
  end

val format_lcstring : Lcstring.t -> unit

type octype = Abstract | Structural | Auxiliary

(** The type representing an objectclass definition *)
type objectclass = {
  oc_name : string list;
  oc_oid : Oid.t;
  oc_desc : string;
  oc_obsolete : bool;
  oc_sup : Lcstring.t list;
  oc_must : Lcstring.t list;
  oc_may : Lcstring.t list;
  oc_type : octype;
  oc_xattr : string list;
}

(** The type representing an attribute definition *)
type attribute = {
  at_name : string list;
  at_desc : string;
  at_oid : Oid.t;
  at_equality : string;
  at_ordering : string;
  at_substr : Oid.t;
  at_syntax : Oid.t;
  at_length : Int64.t;
  at_obsolete : bool;
  at_single_value : bool;
  at_collective : bool;
  at_no_user_modification : bool;
  at_usage : string;
  at_sup : Lcstring.t list;
  at_xattr : string list;
}

(** The type representing the whole schema. Consists of hashtbls
  indexed by two useful keys. For both attributes and objectclasses
  there exists a hashtbl indexed by OID, and one indexed by lower case
  canonical name. There exist functions in Ldap_ooclient to look up
  attributes and objectclasses by non canonical names if that is
  necessary for you to do. see attrToOid, and ocToOid. They will find
  the oid of an attribute or objectclass given any name, not just the
  canonical one. Not that this is somewhat (like several orders of
  magnitude) slower than lookups by canonical name.*)
type schema = {
  objectclasses : (Lcstring.t, objectclass) Hashtbl.t;
  objectclasses_byoid : (Oid.t, objectclass) Hashtbl.t;
  attributes : (Lcstring.t, attribute) Hashtbl.t;
  attributes_byoid : (Oid.t, attribute) Hashtbl.t;
}

(** This reference controls the dept of printing for the schema in the
    toplevel. The default is 10 keys from each table will be printed. OID
    tables are not currently printed. *)
val schema_print_depth : int ref

(** A formatter for the schema, prints the structure, and expands the
    hashtbls to show the keys. The number of keys printed is controled by
    schema_print_depth. *)
val format_schema : schema -> unit

exception Parse_error_oc of Lexing.lexbuf * objectclass * string
exception Parse_error_at of Lexing.lexbuf * attribute * string
exception Syntax_error_oc of Lexing.lexbuf * objectclass * string
exception Syntax_error_at of Lexing.lexbuf * attribute * string

(** readSchema attribute_list objectclass_list, parse the schema into
    a schema type given a list of attribute definition lines, and
    objectclass definition lines. *)
val readSchema : string list -> string list -> schema