SpecFactory
dcmspec.spec_factory.SpecFactory
Factory for DICOM specification models.
Orchestrates the end-to-end process of producing structured SpecModel objects from DICOM specification sources. This includes coordinating input handlers for downloading and caching files, table parsers for extracting structured data into SpecModel objects, and model stores for caching and loading models. Supports flexible configuration and caching strategies.
Typical usage
factory = SpecFactory(...) model = factory.create_model(...)
Source code in src/dcmspec/spec_factory.py
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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
|
__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
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 |
|
build_model(doc_object, table_id=None, url=None, json_file_name=None, include_depth=None, progress_observer=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:
|
progress_observer
|
Optional observer to report download progress. See the Note below for details on the progress events and their properties.
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.
Note
If a progress observer accepting a Progress object is provided, progress events are as follows:
- Step 1 (PARSING_TABLE): Events include
status=PARSING_TABLE
,step=1
,total_steps=2
, and a meaningfulpercent
value. - Step 2 (SAVING_MODEL): Events include
status=SAVING_MODEL
,step=2
,total_steps=2
, andpercent
values of0
(start) and100
(completion).
For example usage in a client application,
see ProgressStatus
.
Source code in src/dcmspec/spec_factory.py
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 |
|
create_model(url, cache_file_name, table_id=None, force_parse=False, force_download=False, json_file_name=None, include_depth=None, progress_observer=None, progress_callback=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:
|
progress_observer
|
Optional observer to report download progress. See the Note below for details on the progress events and their properties.
TYPE:
|
progress_callback
|
[LEGACY, Deprecated] Optional callback to report progress as an integer percent (0-100, or -1 if indeterminate). Use progress_observer instead. Will be removed in a future release.
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:
|
Note
If a progress observer accepting a Progress object is provided, progress events are as follows:
- Step 1 (DOWNLOADING): Events include
status=DOWNLOADING
,step=1
,total_steps=3
, and a meaningfulpercent
value. - Step 2 (PARSING_TABLE): Events include
status=PARSING_TABLE
,step=2
,total_steps=3
, and a meaningfulpercent
value. - Step 3 (SAVING_MODEL): Events include
status=SAVING_MODEL
,step=3
,total_steps=3
, andpercent
values of0
(start) and100
(completion).
For example usage in a client application,
see ProgressStatus
.
Source code in src/dcmspec/spec_factory.py
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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
|
load_document(url, cache_file_name, force_download=False, progress_observer=None, progress_callback=None)
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:
|
progress_observer
|
Optional observer to report download progress.
TYPE:
|
progress_callback
|
[LEGACY] Optional callback to report progress Deprecated: use progress_observer instead. Will be removed in a future release.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Any
|
The document object.
TYPE:
|
Note
Progress reporting via progress_observer is delegated to the input handler (e.g., XHTMLDocHandler, PDFDocHandler) and typically covers only downloading and caching (writing to disk). Parsing and model building do not emit progress updates.
Source code in src/dcmspec/spec_factory.py
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 |
|
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
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|