Struct graphannis::CorpusStorage[][src]

pub struct CorpusStorage { /* fields omitted */ }
Expand description

A thread-safe API for managing corpora stored in a common location on the file system.

Multiple corpora can be part of a corpus storage and they are identified by their unique name. Corpora are loaded from disk into main memory on demand: An internal main memory cache is used to avoid re-loading a recently queried corpus from disk again.

Implementations

Create a new instance with a maximum size for the internal corpus cache.

  • db_dir - The path on the filesystem where the corpus storage content is located. Must be an existing directory.
  • cache_strategy: A strategy for clearing the cache.
  • use_parallel_joins - If true parallel joins are used by the system, using all available cores.

Create a new instance with a an automatic determined size of the internal corpus cache.

Currently, set the maximum cache size to 25% of the available/free memory at construction time. This behavior can change in the future.

  • db_dir - The path on the filesystem where the corpus storage content is located. Must be an existing directory.
  • use_parallel_joins - If true parallel joins are used by the system, using all available cores.

List all available corpora in the corpus storage.

Return detailled information about a specific corpus with a given name (corpus_name).

Import all corpora from a ZIP file.

This function will unzip the file to a temporary location and find all relANNIS and GraphML files in the ZIP file. The formats of the corpora can be relANNIS or GraphML.

  • zip_file - The content of the ZIP file.
  • disk_based - If true, prefer disk-based annotation and graph storages instead of memory-only ones.
  • overwrite_existing - If true, overwrite existing corpora. Otherwise ignore.
  • progress_callback - A callback function to which the import progress is reported to.

Returns the names of the imported corpora.

Import a corpus from an external location on the file system into this corpus storage.

  • path - The location on the file system where the corpus data is located.
  • format - The format in which this corpus data is stored.
  • corpus_name - Optionally override the name of the new corpus for file formats that already provide a corpus name. This only works if the imported file location only contains one corpus.
  • disk_based - If true, prefer disk-based annotation and graph storages instead of memory-only ones.
  • overwrite_existing - If true, overwrite existing corpora. Otherwise ignore.
  • progress_callback - A callback function to which the import progress is reported to.

Returns the name of the imported corpus.

Export a corpus to a ZIP file.

In comparison to CorpusStorage::export_to_fs this allows to give the zip file writer as argument and to have a custom progress callback function.

  • corpus_name - The name of the corpus to write to the ZIP file.
  • use_corpus_subdirectory - If true, the corpus is written into a sub-directory inside the ZIP file. This is useful when storing multiple corpora inside the same file.
  • zip - A writer for the already created ZIP file.
  • progress_callback - A callback function to which the export progress is reported to.

Export a corpus to an external location on the file system using the given format.

  • corpora - The corpora to include in the exported file(s).
  • path - The location on the file system where the corpus data should be written to.
  • format - The format in which this corpus data will be stored stored.

Delete a corpus from this corpus storage. Returns true if the corpus was successfully deleted and false if no such corpus existed.

Apply a sequence of updates (update parameter) to this graph for a corpus given by the corpus_name parameter.

It is ensured that the update process is atomic and that the changes are persisted to disk if the result is Ok.

Preloads all annotation and graph storages from the disk into a main memory cache.

Unloads a corpus from the cache.

Parses a query and checks if it is valid.

  • corpus_names - The name of the corpora the query would be executed on (needed to catch certain corpus-specific semantic errors).
  • query - The query as string.
  • query_language The query language of the query (e.g. AQL).

Returns true if valid and an error with the parser message if invalid.

Returns a string representation of the execution plan for a query.

  • corpus_names - The name of the corpora to execute the query on.
  • query - The query as string.
  • query_language The query language of the query (e.g. AQL).

Count the number of results for a query.

  • query - The search query definition. Returns the count as number.

Count the number of results for a query and return both the total number of matches and also the number of documents in the result set.

  • query - The search query definition.

Find all results for a query and return the match ID for each result.

The query is paginated and an offset and limit can be specified.

  • query - The search query definition.
  • offset - Skip the n first results, where n is the offset.
  • limit - Return at most n matches, where n is the limit. Use None to allow unlimited result sizes.
  • order - Specify the order of the matches.

Returns a vector of match IDs, where each match ID consists of the matched node annotation identifiers separated by spaces. You can use the subgraph(…) method to get the subgraph for a single match described by the node annnotation identifiers.

Return the copy of a subgraph which includes the given list of node annotation identifiers, the nodes that cover the same token as the given nodes and all nodes that cover the token which are part of the defined context.

  • corpus_name - The name of the corpus for which the subgraph should be generated from.
  • node_ids - A set of node annotation identifiers describing the subgraph.
  • ctx_left and ctx_right - Left and right context in token distance to be included in the subgraph.
  • segmentation - The name of the segmentation which should be used to as base for the context. Use None to define the context in the default token layer.

Return the copy of a subgraph which includes all nodes matched by the given query.

  • corpus_name - The name of the corpus for which the subgraph should be generated from.
  • query - The query which defines included nodes.
  • query_language - The query language of the query (e.g. AQL).
  • component_type_filter - If set, only include edges of that belong to a component of the given type.

Return the copy of a subgraph which includes all nodes that belong to any of the given list of sub-corpus/document identifiers.

  • corpus_name - The name of the corpus for which the subgraph should be generated from.
  • corpus_ids - A set of sub-corpus/document identifiers describing the subgraph.

Return the copy of the graph of the corpus structure given by corpus_name.

Execute a frequency query.

  • query - The search query definition.
  • definition - A list of frequency query definitions.

Returns a frequency table of strings.

Parses a queryand return a list of descriptions for its nodes.

  • query - The query to be analyzed.
  • query_language - The query language of the query (e.g. AQL).

Returns a list of all components of a corpus given by corpus_name.

  • ctype - Optionally filter by the component type.
  • name - Optionally filter by the component name.

Returns a list of all node annotations of a corpus given by corpus_name.

  • list_values - If true include the possible values in the result.
  • only_most_frequent_values - If both this argument and list_values are true, only return the most frequent value for each annotation name.

Returns a list of all edge annotations of a corpus given by corpus_name and the component.

  • list_values - If true include the possible values in the result.
  • only_most_frequent_values - If both this argument and list_values are true, only return the most frequent value for each annotation name.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.