/usr/lib/ocaml/galax/shredded_load.mli is in libgalax-ocaml-dev 1.1-12.
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 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: shredded_load.mli,v 1.5 2007/02/01 22:08:54 simeon Exp $ *)
(* Module: Shredded_load
Description:
This module implements loading of a set of physical Shred
indexes from a (typed) XML stream. It is a functor parameterized by
store.
*)
(* Load a data model instance from an XML stream *)
open Shredded_load_context
module type Shredded_Load_Functor_Sig =
functor (Shredded_store : Shredded_load_sigs.Shredded_Load_Store) ->
sig
val load_shredded_store_from_resolved_stream :
Nodeid_context.nodeid_context -> Streaming_types.resolved_xml_stream ->
string -> string -> int -> Shredded_store.shredded_store
(** [load_shred_store_from_resolved_stream xml_stream dir
name] builds a new Shred store in directory [dir], with
logical name [name], populated from the stream
[xml_stream] *)
val load_an_update_from_resolved_stream :
Shredded_store.shredded_store -> Streaming_types.resolved_xml_stream -> Nodeid.nodeid -> Nodeid.nodeid Cursor.cursor (* cursor? *)
val close_shredded_store : Shredded_store.shredded_store -> unit
val load_shredded_store_from_ordered_typed_stream : Nodeid_context.nodeid_context -> Streaming_types.ordered_typed_xml_stream ->
string -> string -> int -> Shredded_store.shredded_store
end
module Shredded_Load_Functor : Shredded_Load_Functor_Sig
|