Changeset 9773
- Timestamp:
- 6 Dec 2012, 07:31:02 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/catalog.py
r9767 r9773 66 66 class FilteredQueryBase(object): 67 67 """A filter to find objects that match certain parameters. 68 69 Parameters are passed to constructor as keyword arguments. The 70 real data retrieval then happens when `query()` is called. 71 72 The `defaults` attribute, a dict, can set certain default values 73 for parameters that are used if the constructor is called without 74 any parameters. 68 75 """ 69 76 defaults = dict() … … 81 88 @implementer(IFilteredCatalogQuery) 82 89 class FilteredCatalogQueryBase(FilteredQueryBase): 90 """Base for filtered queries based on catalog lookups. 91 92 This type of query asks a catalog to find objects. 93 94 You would normally use this type of query like this: 95 96 >>> query = FilteredCatalogQueryBase(name='bob') 97 >>> objects = query.query() 98 99 The name of the catalog to use can be set via `cat_name` 100 attribute. 101 102 Looked up are all objects that match keywords passed to 103 constructor where the keyword names must match a certain index of 104 the chosen catalog. So, if some catalog has indexes `name` and 105 `age`, then keywords `name='bob', age='12'` would search for all 106 objects with name ``bob`` and age ``12``. 107 108 This query supports single values (exact matches) and ranges of 109 values passed in via ``(min_value, max_value)`` tuples. So, 110 constructor keyword args `name=('a', 'd')` would find objects with 111 name ``alice``, ``bob``, ``d``, but not ``donald``, ``john``, or 112 ``zak``. 113 """ 83 114 cat_name = None 84 115 85 116 def query_catalog(self, catalog): 117 """Search ``catalog``. 118 119 Use `catalog`, some ``Catalog`` instance, to search objects 120 denoted by constructor keywords. 121 """ 86 122 query = dict() 87 123 for idx_name, value in self._kw.items(): … … 93 129 94 130 def query(self): 131 """Perform a query with parameters passed to constructor. 132 133 Returns some iterable, normally a list or a catalog result 134 set. 135 """ 95 136 catalog = queryUtility( 96 137 ICatalog, name=self.cat_name, default=None)
Note: See TracChangeset for help on using the changeset viewer.