ZCatalog object
A ZCatalog contains arbitrary index like references to Zope objects. ZCatalog's can index object attribute using a variety of "plug-in" index types.
The ZCatalog can maintain a table of extra data about cataloged objects. This information can be used on search result pages to show information about a search result.
The meta-data table schema is used to build the schema for ZCatalog Result objects. The objects have the same attributes as the column of the meta-data table.
ZCatalog does not store references to the objects themselves, but rather to a unique identifier that defines how to get to the object. In Zope, this unique identifier is the object's relative path to the ZCatalog (since two Zope objects cannot have the same URL, this is an excellent unique qualifier in Zope).
Catalogs the object obj
with the unique identifier uid
.
The uid must be a physical path, either absolute or relative to the catalog.
If provided, idxs specifies the names of indexes to update.
If update_metadata is specified (the default), the object's metadata is updated. If it is not, the metadata is left untouched. This flag has no effect if the object is not yet cataloged (metadata is always added for new objects).
returns the unique values for a given FieldIndex named name
.
Search the catalog.
Search terms can be passed in the REQUEST or as keyword arguments.
Search queries consist of a mapping of index names to search
parameters. You can either pass a mapping to searchResults as
the variable REQUEST
or you can use index names and search
parameters as keyword arguments to the method, in other words:
searchResults(title='Elvis Exposed', author='The Great Elvonso')
is the same as:
searchResults({'title' : 'Elvis Exposed', 'author : 'The Great Elvonso'})
In these examples, title
and author
are indexes. This
query will return any objects that have the title Elvis
Exposed AND also are authored by The Great Elvonso. Terms
that are passed as keys and values in a searchResults() call
are implicitly ANDed together. To OR two search results, call
searchResults() twice and add concatenate the results like this:
results = ( searchResults(title='Elvis Exposed') + searchResults(author='The Great Elvonso') )
This will return all objects that have the specified title OR the specified author.
There are some special index names you can pass to change the behavior of the search query:
reverse
or descending
.
Default behavior is to sort ascending.sort_on
will be
returned unsorted.foo
,'PrincipiaSearchSource':'bar'} and no
sort_on
will be returned unsorted.score
. A text index
cannot beused as a sort_on
parameter, and attempting
to do so will raise an error.Depending on the type of index you are querying, you may be able to provide more advanced search parameters that can specify range searches or wildcards. These features are documented in The Zope Book.
Reindex every object we can find, removing the unreachable ones from the index.
Programmatic search interface, use for searching the catalog from scripts.
Return the path to a cataloged object given a data_record_id_
Returns a sequence of names that correspond to indexes.
Return a cataloged object given a data_record_id_
Returns a sequence of actual index objects.
NOTE: This returns unwrapped indexes! You should probably use getIndexObjects instead. Some indexes expect to be wrapped.
Returns a list of acquisition wrapped index objects
Search the catalog, the same way as searchResults
.
Uncatalogs the object with the unique identifier uid
.
The uid must be a physical path, either absolute or relative to the catalog.
Return the data_record_id_
to a cataloged object given a path
Get the meta-data schema
Returns a sequence of names that correspond to columns in the meta-data table.
Add a ZCatalog object.
vocab_id