SpecFactory
dcmspec.spec_factory.SpecFactory
Factory for DICOM specification models.
Coordinates the downloading, parsing, and caching of DICOM specification tables. Uses input handlers, table parsers, and model stores to produce SpecModel objects from URLs or cached files. Supports flexible configuration and caching strategies.
Typical usage
factory = SpecFactory(...) model = factory.create_model(...)
Source code in src/dcmspec/spec_factory.py
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
|
__init__(input_handler=None, model_class=None, model_store=None, table_parser=None, column_to_attr=None, name_attr=None, config=None, logger=None, parser_kwargs=None)
Initialize the SpecFactory.
The default values for column_to_attr
and name_attr
are designed for parsing
DICOM PS3.3 module attribute tables, where columns typically represent element name,
tag, type, and description.
PARAMETER | DESCRIPTION |
---|---|
input_handler
|
Handler for downloading and parsing input files. If None, a default XHTMLDocHandler is used.
TYPE:
|
model_class
|
The class to instantiate for the model. If None, defaults to SpecModel.
TYPE:
|
model_store
|
Store for loading and saving models. If None, a default JSONSpecStore is used.
TYPE:
|
table_parser
|
Parser for extracting tables from documents. If None, a default DOMTableSpecParser is used.
TYPE:
|
column_to_attr
|
Mapping from column indices to names of attributes of model nodes. If None, a default mapping is used.
TYPE:
|
name_attr
|
Attribute name to use for node names in the model. If None, defaults to "elem_name".
TYPE:
|
config
|
Configuration object. If None, a default Config is created.
TYPE:
|
logger
|
Logger instance to use. If None, a default logger is created.
TYPE:
|
parser_kwargs
|
Default keyword arguments to pass to the parser's
TYPE:
|
RAISES | DESCRIPTION |
---|---|
TypeError
|
If config is not a Config instance or None. |
Source code in src/dcmspec/spec_factory.py
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 |
|
build_model(doc_object, table_id=None, url=None, json_file_name=None, include_depth=None, force_parse=False, model_kwargs=None, parser_kwargs=None)
Build and cache a DICOM specification model from a parsed document object.
PARAMETER | DESCRIPTION |
---|---|
doc_object
|
The parsed document object to be parsed into a model. - For XHTML: a BeautifulSoup DOM object. - For PDF: a grouped table dict (from PDFDocHandler). - For other formats: as defined by the handler/parser.
TYPE:
|
table_id
|
Table identifier for model parsing.
TYPE:
|
url
|
The URL the document was fetched from (for metadata).
TYPE:
|
json_file_name
|
Filename to save the cached JSON model.
TYPE:
|
include_depth
|
The depth to which included tables should be parsed.
TYPE:
|
force_parse
|
If True, always parse and (over)write the JSON cache file.
TYPE:
|
model_kwargs
|
Additional keyword arguments for model construction.
Use this to supply extra parameters required by custom SpecModel subclasses.
For example, if your model class is
TYPE:
|
parser_kwargs
|
Additional keyword arguments to pass to the parser's
TYPE:
|
If json_file_name
is not provided, the factory will attempt to use
self.input_handler.cache_file_name
to generate a default JSON file name.
If neither is set, a ValueError is raised.
RETURNS | DESCRIPTION |
---|---|
SpecModel
|
The constructed model.
TYPE:
|
Note
The type of doc_object
depends on the handler/parser used:
- For XHTML: a BeautifulSoup DOM object.
- For PDF: a grouped table dict as returned by PDFDocHandler.
- For other formats: as defined by the handler/parser.
Source code in src/dcmspec/spec_factory.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
create_model(url, cache_file_name, table_id=None, force_parse=False, force_download=False, json_file_name=None, include_depth=None, handler_kwargs=None, model_kwargs=None, parser_kwargs=None)
Integrated, one-step method to fetch, parse, and build a DICOM specification model from a URL.
PARAMETER | DESCRIPTION |
---|---|
url
|
The URL to download the input file from.
TYPE:
|
cache_file_name
|
Filename of the cached input file.
TYPE:
|
table_id
|
Table identifier for model parsing.
TYPE:
|
force_parse
|
If True, always parse the DOM and generate the JSON model, even if cached.
TYPE:
|
force_download
|
If True, always download the input file and generate the model even if cached. Note: force_download also implies force_parse.
TYPE:
|
json_file_name
|
Filename to save the cached JSON model.
TYPE:
|
include_depth
|
The depth to which included tables should be parsed.
TYPE:
|
handler_kwargs
|
Additional keyword arguments for the input handler's methods.
TYPE:
|
model_kwargs
|
Additional keyword arguments for model construction.
Use this to supply extra parameters required by custom SpecModel subclasses.
For example, if your model class is
TYPE:
|
parser_kwargs
|
Additional keyword arguments to pass to the parser's
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
SpecModel
|
The constructed model.
TYPE:
|
Source code in src/dcmspec/spec_factory.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
load_document(url, cache_file_name, force_download=False)
Download, cache, and parse the specification file from a URL, returning the document object.
PARAMETER | DESCRIPTION |
---|---|
url
|
The URL to download the input file from.
TYPE:
|
cache_file_name
|
Filename of the cached input file.
TYPE:
|
force_download
|
If True, always download the input file even if cached.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Any
|
The document object.
TYPE:
|
Source code in src/dcmspec/spec_factory.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
try_load_cache(json_file_name, include_depth, model_kwargs, force_parse=False)
Check for and load a model from cache if available and not force_parse.
Source code in src/dcmspec/spec_factory.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|