dicom_object/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 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 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
#![allow(clippy::derive_partial_eq_without_eq)]
//! This crate contains a high-level abstraction for reading and manipulating
//! DICOM objects.
//! At this level, objects are comparable to a dictionary of elements,
//! in which some of them can have DICOM objects themselves.
//! The end user should prefer using this abstraction when dealing with DICOM
//! objects.
//!
//! Loading a DICOM file can be done with ease via the function [`open_file`].
//! For additional file reading options, use [`OpenFileOptions`].
//! New DICOM instances can be built from scratch using [`InMemDicomObject`]
//! (see the [`mem`] module for more details).
//!
//! # Examples
//!
//! Read an object and fetch some attributes:
//!
//! ```no_run
//! use dicom_dictionary_std::tags;
//! use dicom_object::open_file;
//! # fn foo() -> Result<(), Box<dyn std::error::Error>> {
//! let obj = open_file("0001.dcm")?;
//!
//! let patient_name = obj.element(tags::PATIENT_NAME)?.to_str()?;
//! let modality = obj.element_by_name("Modality")?.to_str()?;
//! # Ok(())
//! # }
//! ```
//!
//! Elements can be fetched by tag,
//! either by creating a [`Tag`]
//! or by using one of the [readily available constants][const]
//! from the [`dicom-dictionary-std`][dictionary-std] crate.
//!
//! [const]: dicom_dictionary_std::tags
//! [dictionary-std]: https://docs.rs/dicom-dictionary-std
//!
//! By default, the entire data set is fully loaded into memory.
//! The pixel data and following elements can be ignored
//! by using [`OpenFileOptions`]:
//!
//! ```no_run
//! use dicom_object::OpenFileOptions;
//!
//! let obj = OpenFileOptions::new()
//! .read_until(dicom_dictionary_std::tags::PIXEL_DATA)
//! .open_file("0002.dcm")?;
//! # Result::<(), dicom_object::ReadError>::Ok(())
//! ```
//!
//! Once a data set element is looked up,
//! one will typically wish to inspect the value within.
//! Methods are available for converting the element's DICOM value
//! into something more usable in Rust.
//!
//! ```
//! # use dicom_dictionary_std::tags;
//! # use dicom_object::{DefaultDicomObject, Tag};
//! # fn something(obj: DefaultDicomObject) -> Result<(), Box<dyn std::error::Error>> {
//! let patient_date = obj.element(tags::PATIENT_BIRTH_DATE)?.to_date()?;
//! let pixel_data_bytes = obj.element(tags::PIXEL_DATA)?.to_bytes()?;
//! # Ok(())
//! # }
//! ```
//!
//! **Note:** if you need to decode the pixel data first,
//! see the [dicom-pixeldata] crate.
//!
//! [dicom-pixeldata]: https://docs.rs/dicom-pixeldata
//!
//! Finally, DICOM objects can be serialized back into DICOM encoded bytes.
//! A method is provided for writing a file DICOM object into a new DICOM file.
//!
//! ```no_run
//! # use dicom_object::{DefaultDicomObject, Tag};
//! # fn something(obj: DefaultDicomObject) -> Result<(), Box<dyn std::error::Error>> {
//! obj.write_to_file("0001_new.dcm")?;
//! # Ok(())
//! # }
//! ```
//!
//! This method requires you to write a [file meta table] first.
//! When creating a new DICOM object from scratch,
//! use a [`FileMetaTableBuilder`] to construct the file meta group,
//! then use [`with_meta`] or [`with_exact_meta`]:
//!
//! [file meta table]: crate::meta::FileMetaTable
//! [`FileMetaTableBuilder`]: crate::meta::FileMetaTableBuilder
//! [`with_meta`]: crate::InMemDicomObject::with_meta
//! [`with_exact_meta`]: crate::InMemDicomObject::with_exact_meta
//!
//! ```no_run
//! # use dicom_object::{InMemDicomObject, FileMetaTableBuilder};
//! # fn something(obj: InMemDicomObject) -> Result<(), Box<dyn std::error::Error>> {
//! use dicom_dictionary_std::uids;
//!
//! let file_obj = obj.with_meta(
//! FileMetaTableBuilder::new()
//! // Implicit VR Little Endian
//! .transfer_syntax(uids::IMPLICIT_VR_LITTLE_ENDIAN)
//! // Computed Radiography image storage
//! .media_storage_sop_class_uid("1.2.840.10008.5.1.4.1.1.1")
//! )?;
//! file_obj.write_to_file("0001_new.dcm")?;
//! # Ok(())
//! # }
//! ```
//!
//! In order to write a plain DICOM data set,
//! use one of the various data set writing methods
//! such as [`write_dataset_with_ts`]:
//!
//! [`write_dataset_with_ts`]: crate::InMemDicomObject::write_dataset_with_ts
//! ```
//! # use dicom_object::InMemDicomObject;
//! # use dicom_core::{DataElement, Tag, VR};
//! # fn run() -> Result<(), Box<dyn std::error::Error>> {
//! // build your object
//! let mut obj = InMemDicomObject::new_empty();
//! let patient_name = DataElement::new(
//! Tag(0x0010, 0x0010),
//! VR::PN,
//! "Doe^John",
//! );
//! obj.put(patient_name);
//!
//! // write the object's data set
//! let mut serialized = Vec::new();
//! let ts = dicom_transfer_syntax_registry::entries::EXPLICIT_VR_LITTLE_ENDIAN.erased();
//! obj.write_dataset_with_ts(&mut serialized, &ts)?;
//! assert!(!serialized.is_empty());
//! # Ok(())
//! # }
//! # run().unwrap();
//! ```
pub mod file;
pub mod mem;
pub mod meta;
pub mod ops;
pub mod tokens;
pub use crate::file::{from_reader, open_file, OpenFileOptions};
pub use crate::mem::InMemDicomObject;
pub use crate::meta::{FileMetaTable, FileMetaTableBuilder};
use dicom_core::ops::AttributeSelector;
use dicom_core::DataDictionary;
pub use dicom_core::Tag;
pub use dicom_dictionary_std::StandardDataDictionary;
/// The default implementation of a root DICOM object.
pub type DefaultDicomObject<D = StandardDataDictionary> = FileDicomObject<mem::InMemDicomObject<D>>;
use dicom_core::header::{GroupNumber, Header};
use dicom_encoding::adapters::{PixelDataObject, RawPixelData};
use dicom_encoding::transfer_syntax::TransferSyntaxIndex;
use dicom_parser::dataset::{DataSetWriter, IntoTokens};
use dicom_transfer_syntax_registry::TransferSyntaxRegistry;
use smallvec::SmallVec;
use snafu::{Backtrace, OptionExt, ResultExt, Snafu};
use std::borrow::Cow;
use std::fs::File;
use std::io::{BufWriter, Write};
use std::path::Path;
/// The current implementation class UID generically referring to DICOM-rs.
///
/// Automatically generated as per the standard, part 5, section B.2.
///
/// This UID may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.156227610253341005307660858504280353500";
/// The current implementation version name generically referring to DICOM-rs.
///
/// This name may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.8.0";
/// Trait type for a DICOM object.
/// This is a high-level abstraction where an object is accessed and
/// manipulated as dictionary of entries indexed by tags, which in
/// turn may contain a DICOM object.
///
/// This trait interface is experimental and prone to sudden changes.
pub trait DicomObject {
type Element: Header;
/// Retrieve a particular DICOM element by its tag.
fn element(&self, tag: Tag) -> Result<Self::Element, AccessError>;
/// Retrieve a particular DICOM element by its name.
fn element_by_name(&self, name: &str) -> Result<Self::Element, AccessByNameError>;
/// Retrieve the processed meta information table, if available.
///
/// This table will generally not be reachable from children objects
/// in another object with a valid meta table. As such, it is recommended
/// for this method to be called at the root of a DICOM object.
fn meta(&self) -> Option<&FileMetaTable> {
None
}
}
/// An error which may occur when loading a DICOM object
#[derive(Debug, Snafu)]
#[non_exhaustive]
pub enum ReadError {
#[snafu(display("Could not open file '{}'", filename.display()))]
OpenFile {
filename: std::path::PathBuf,
backtrace: Backtrace,
source: std::io::Error,
},
#[snafu(display("Could not read from file '{}'", filename.display()))]
ReadFile {
filename: std::path::PathBuf,
backtrace: Backtrace,
source: std::io::Error,
},
/// Could not read preamble bytes
ReadPreambleBytes {
backtrace: Backtrace,
source: std::io::Error,
},
#[snafu(display("Could not parse meta group data set"))]
ParseMetaDataSet {
#[snafu(backtrace)]
source: crate::meta::Error,
},
#[snafu(display("Could not parse sop attribute"))]
ParseSopAttribute {
#[snafu(source(from(dicom_core::value::ConvertValueError, Box::from)))]
source: Box<dicom_core::value::ConvertValueError>,
backtrace: Backtrace,
},
#[snafu(display("Could not create data set parser"))]
CreateParser {
#[snafu(backtrace)]
source: dicom_parser::dataset::read::Error,
},
#[snafu(display("Could not read data set token"))]
ReadToken {
#[snafu(backtrace)]
source: dicom_parser::dataset::read::Error,
},
#[snafu(display("Missing element value after header token"))]
MissingElementValue { backtrace: Backtrace },
#[snafu(display("Unsupported transfer syntax `{}`", uid))]
ReadUnsupportedTransferSyntax { uid: String, backtrace: Backtrace },
#[snafu(display("Unexpected token {:?}", token))]
UnexpectedToken {
token: Box<dicom_parser::dataset::DataToken>,
backtrace: Backtrace,
},
#[snafu(display("Premature data set end"))]
PrematureEnd { backtrace: Backtrace },
}
/// An error which may occur when writing a DICOM object
#[derive(Debug, Snafu)]
#[non_exhaustive]
pub enum WriteError {
#[snafu(display("Could not write to file '{}'", filename.display()))]
WriteFile {
filename: std::path::PathBuf,
backtrace: Backtrace,
source: std::io::Error,
},
#[snafu(display("Could not write object preamble"))]
WritePreamble {
backtrace: Backtrace,
source: std::io::Error,
},
#[snafu(display("Could not write magic code"))]
WriteMagicCode {
backtrace: Backtrace,
source: std::io::Error,
},
#[snafu(display("Could not create data set printer"))]
CreatePrinter {
#[snafu(backtrace)]
source: dicom_parser::dataset::write::Error,
},
#[snafu(display("Could not print meta group data set"))]
PrintMetaDataSet {
#[snafu(backtrace)]
source: crate::meta::Error,
},
#[snafu(display("Could not print data set"))]
PrintDataSet {
#[snafu(backtrace)]
source: dicom_parser::dataset::write::Error,
},
#[snafu(display("Unsupported transfer syntax `{}`", uid))]
WriteUnsupportedTransferSyntax { uid: String, backtrace: Backtrace },
}
/// An error which may occur during private element look-up or insertion
#[derive(Debug, Snafu)]
#[non_exhaustive]
pub enum PrivateElementError {
/// Group number must be odd
#[snafu(display("Group number must be odd, found {:#06x}", group))]
InvalidGroup { group: GroupNumber },
/// Private creator not found in group
#[snafu(display("Private creator {} not found in group {:#06x}", creator, group))]
PrivateCreatorNotFound { creator: String, group: GroupNumber },
/// Element not found in group
#[snafu(display(
"Private Creator {} found in group {:#06x}, but elem {:#06x} not found",
creator,
group,
elem
))]
ElementNotFound {
creator: String,
group: GroupNumber,
elem: u8,
},
/// No space available for more private elements in the group
#[snafu(display("No space available in group {:#06x}", group))]
NoSpace { group: GroupNumber },
}
/// An error which may occur when looking up a DICOM object's attributes.
#[derive(Debug, Snafu)]
#[non_exhaustive]
pub enum AccessError {
#[snafu(display("No such data element with tag {}", tag))]
NoSuchDataElementTag { tag: Tag, backtrace: Backtrace },
}
impl AccessError {
pub fn into_access_by_name(self, alias: impl Into<String>) -> AccessByNameError {
match self {
AccessError::NoSuchDataElementTag { tag, backtrace } => {
AccessByNameError::NoSuchDataElementAlias {
tag,
alias: alias.into(),
backtrace,
}
}
}
}
}
/// An error which may occur when looking up a DICOM object's attributes
/// at an arbitrary depth,
/// such as through [`value_at`](crate::InMemDicomObject::value_at).
#[derive(Debug, Snafu)]
#[non_exhaustive]
#[snafu(visibility(pub(crate)))]
pub enum AtAccessError {
/// Missing itermediate sequence for {selector} at step {step_index}
MissingSequence {
selector: AttributeSelector,
step_index: u32,
},
/// Step {step_index} for {selector} is not a data set sequence
NotASequence {
selector: AttributeSelector,
step_index: u32,
},
/// Missing element at last step for {selector}
MissingLeafElement { selector: AttributeSelector },
}
/// An error which may occur when looking up a DICOM object's attributes
/// by a keyword (or alias) instead of by tag.
///
/// These accesses incur a look-up at the data element dictionary,
/// which may fail if no such entry exists.
#[derive(Debug, Snafu)]
pub enum AccessByNameError {
#[snafu(display("No such data element {} (with tag {})", alias, tag))]
NoSuchDataElementAlias {
tag: Tag,
alias: String,
backtrace: Backtrace,
},
/// Could not resolve attribute name from the data dictionary
#[snafu(display("Unknown data attribute named `{}`", name))]
NoSuchAttributeName { name: String, backtrace: Backtrace },
}
#[derive(Debug, Snafu)]
#[non_exhaustive]
pub enum WithMetaError {
/// Could not build file meta table
BuildMetaTable {
#[snafu(backtrace)]
source: crate::meta::Error,
},
/// Could not prepare file meta table
PrepareMetaTable {
#[snafu(source(from(dicom_core::value::ConvertValueError, Box::from)))]
source: Box<dicom_core::value::ConvertValueError>,
backtrace: Backtrace,
},
}
/// A root DICOM object retrieved from a standard DICOM file,
/// containing additional information from the file meta group
/// in a separate table value.
#[derive(Debug, Clone, PartialEq)]
pub struct FileDicomObject<O> {
meta: FileMetaTable,
obj: O,
}
impl<O> FileDicomObject<O> {
/// Retrieve the processed meta header table.
pub fn meta(&self) -> &FileMetaTable {
&self.meta
}
/// Retrieve a mutable reference to the processed meta header table.
///
/// Considerable care should be taken when modifying this table,
/// as it may influence object reading and writing operations.
/// When modifying the table through this method,
/// the user is responsible for updating the meta information group length as well,
/// which can be done by calling
/// [`update_information_group_length`](FileMetaTable::update_information_group_length).
///
/// See also [`update_meta`](Self::update_meta).
pub fn meta_mut(&mut self) -> &mut FileMetaTable {
&mut self.meta
}
/// Update the processed meta header table through a function.
///
/// Considerable care should be taken when modifying this table,
/// as it may influence object reading and writing operations.
/// The meta information group length is updated automatically.
pub fn update_meta(&mut self, f: impl FnOnce(&mut FileMetaTable)) {
f(&mut self.meta);
self.meta.update_information_group_length();
}
/// Retrieve the inner DICOM object structure, discarding the meta table.
pub fn into_inner(self) -> O {
self.obj
}
}
impl<O> FileDicomObject<O>
where
for<'a> &'a O: IntoTokens,
{
/// Write the entire object as a DICOM file
/// into the given file path.
/// Preamble, magic code, and file meta group will be included
/// before the inner object.
pub fn write_to_file<P: AsRef<Path>>(&self, path: P) -> Result<(), WriteError> {
let path = path.as_ref();
let file = File::create(path).context(WriteFileSnafu { filename: path })?;
let mut to = BufWriter::new(file);
// write preamble
to.write_all(&[0_u8; 128][..])
.context(WriteFileSnafu { filename: path })?;
// write magic sequence
to.write_all(b"DICM")
.context(WriteFileSnafu { filename: path })?;
// write meta group
self.meta.write(&mut to).context(PrintMetaDataSetSnafu)?;
// prepare encoder
let ts = TransferSyntaxRegistry
.get(&self.meta.transfer_syntax)
.with_context(|| WriteUnsupportedTransferSyntaxSnafu {
uid: self.meta.transfer_syntax.clone(),
})?;
let mut dset_writer = DataSetWriter::with_ts(to, ts).context(CreatePrinterSnafu)?;
// We use the default options, because only the inner object knows if something needs to change
dset_writer
.write_sequence((&self.obj).into_tokens())
.context(PrintDataSetSnafu)?;
Ok(())
}
/// Write the entire object as a DICOM file
/// into the given writer.
/// Preamble, magic code, and file meta group will be included
/// before the inner object.
pub fn write_all<W: Write>(&self, to: W) -> Result<(), WriteError> {
let mut to = BufWriter::new(to);
// write preamble
to.write_all(&[0_u8; 128][..]).context(WritePreambleSnafu)?;
// write magic sequence
to.write_all(b"DICM").context(WriteMagicCodeSnafu)?;
// write meta group
self.meta.write(&mut to).context(PrintMetaDataSetSnafu)?;
// prepare encoder
let ts = TransferSyntaxRegistry
.get(&self.meta.transfer_syntax)
.with_context(|| WriteUnsupportedTransferSyntaxSnafu {
uid: self.meta.transfer_syntax.clone(),
})?;
let mut dset_writer = DataSetWriter::with_ts(to, ts).context(CreatePrinterSnafu)?;
// We use the default options, because only the inner object knows if something needs to change
dset_writer
.write_sequence((&self.obj).into_tokens())
.context(PrintDataSetSnafu)?;
Ok(())
}
/// Write the file meta group set into the given writer.
///
/// This is equivalent to `self.meta().write(to)`.
pub fn write_meta<W: Write>(&self, to: W) -> Result<(), WriteError> {
self.meta.write(to).context(PrintMetaDataSetSnafu)
}
/// Write the inner data set into the given writer,
/// without preamble, magic code, nor file meta group.
///
/// The transfer syntax is selected from the file meta table.
pub fn write_dataset<W: Write>(&self, to: W) -> Result<(), WriteError> {
let to = BufWriter::new(to);
// prepare encoder
let ts = TransferSyntaxRegistry
.get(&self.meta.transfer_syntax)
.with_context(|| WriteUnsupportedTransferSyntaxSnafu {
uid: self.meta.transfer_syntax.clone(),
})?;
let mut dset_writer = DataSetWriter::with_ts(to, ts).context(CreatePrinterSnafu)?;
// write object
dset_writer
.write_sequence((&self.obj).into_tokens())
.context(PrintDataSetSnafu)?;
Ok(())
}
}
impl<O> ::std::ops::Deref for FileDicomObject<O> {
type Target = O;
fn deref(&self) -> &Self::Target {
&self.obj
}
}
impl<O> ::std::ops::DerefMut for FileDicomObject<O> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.obj
}
}
impl<O> DicomObject for FileDicomObject<O>
where
O: DicomObject,
{
type Element = <O as DicomObject>::Element;
fn element(&self, tag: Tag) -> Result<Self::Element, AccessError> {
self.obj.element(tag)
}
fn element_by_name(&self, name: &str) -> Result<Self::Element, AccessByNameError> {
self.obj.element_by_name(name)
}
fn meta(&self) -> Option<&FileMetaTable> {
Some(&self.meta)
}
}
impl<'a, O: 'a> DicomObject for &'a FileDicomObject<O>
where
O: DicomObject,
{
type Element = <O as DicomObject>::Element;
fn element(&self, tag: Tag) -> Result<Self::Element, AccessError> {
self.obj.element(tag)
}
fn element_by_name(&self, name: &str) -> Result<Self::Element, AccessByNameError> {
self.obj.element_by_name(name)
}
}
/// This implementation creates an iterator
/// to the elements of the underlying data set,
/// consuming the whole object.
/// The attributes in the file meta group are _not_ included.
///
/// To obtain an iterator over the meta elements,
/// use [`meta().to_element_iter()`](FileMetaTable::to_element_iter).
impl<O> IntoIterator for FileDicomObject<O>
where
O: IntoIterator,
{
type Item = <O as IntoIterator>::Item;
type IntoIter = <O as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
self.obj.into_iter()
}
}
/// This implementation creates an iterator
/// to the elements of the underlying data set.
/// The attributes in the file meta group are _not_ included.
///
/// To obtain an iterator over the meta elements,
/// use [`meta().to_element_iter()`](FileMetaTable::to_element_iter).
impl<'a, O> IntoIterator for &'a FileDicomObject<O>
where
&'a O: IntoIterator,
{
type Item = <&'a O as IntoIterator>::Item;
type IntoIter = <&'a O as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
(&self.obj).into_iter()
}
}
/// Implement basic pixeldata encoder/decoder functionality
impl<D> PixelDataObject for FileDicomObject<InMemDicomObject<D>>
where
D: DataDictionary + Clone,
{
fn transfer_syntax_uid(&self) -> &str {
self.meta.transfer_syntax()
}
/// Return the Rows attribute or None if it is not found
fn rows(&self) -> Option<u16> {
self.get(dicom_dictionary_std::tags::ROWS)?.uint16().ok()
}
/// Return the Columns attribute or None if it is not found
fn cols(&self) -> Option<u16> {
self.get(dicom_dictionary_std::tags::COLUMNS)?.uint16().ok()
}
/// Return the SamplesPerPixel attribute or None if it is not found
fn samples_per_pixel(&self) -> Option<u16> {
self.get(dicom_dictionary_std::tags::SAMPLES_PER_PIXEL)?
.uint16()
.ok()
}
/// Return the BitsAllocated attribute or None if it is not set
fn bits_allocated(&self) -> Option<u16> {
self.get(dicom_dictionary_std::tags::BITS_ALLOCATED)?
.uint16()
.ok()
}
/// Return the BitsStored attribute or None if it is not set
fn bits_stored(&self) -> Option<u16> {
self.get(dicom_dictionary_std::tags::BITS_STORED)?
.uint16()
.ok()
}
fn photometric_interpretation(&self) -> Option<&str> {
self.get(dicom_dictionary_std::tags::PHOTOMETRIC_INTERPRETATION)?
.string()
.ok()
.map(|s| s.trim_end())
}
/// Return the NumberOfFrames attribute or None if it is not set
fn number_of_frames(&self) -> Option<u32> {
self.get(dicom_dictionary_std::tags::NUMBER_OF_FRAMES)?
.to_int()
.ok()
}
/// Returns the number of fragments or None for native pixel data
fn number_of_fragments(&self) -> Option<u32> {
let pixel_data = self.get(dicom_dictionary_std::tags::PIXEL_DATA)?;
match pixel_data.value() {
dicom_core::DicomValue::Primitive(_p) => Some(1),
dicom_core::DicomValue::PixelSequence(v) => Some(v.fragments().len() as u32),
dicom_core::DicomValue::Sequence(..) => None,
}
}
/// Return a specific encoded pixel fragment by index as a `Vec<u8>`
/// or `None` if no pixel data is found.
///
/// Non-encapsulated pixel data can be retrieved by requesting fragment #0.
///
/// Panics if `fragment` is out of bounds for the encapsulated pixel data fragments.
fn fragment(&self, fragment: usize) -> Option<Cow<[u8]>> {
let pixel_data = self.get(dicom_dictionary_std::tags::PIXEL_DATA)?;
match pixel_data.value() {
dicom_core::DicomValue::PixelSequence(v) => {
Some(Cow::Borrowed(v.fragments()[fragment].as_ref()))
}
dicom_core::DicomValue::Primitive(p) if fragment == 0 => Some(p.to_bytes()),
_ => None,
}
}
fn offset_table(&self) -> Option<Cow<[u32]>> {
let pixel_data = self.get(dicom_dictionary_std::tags::PIXEL_DATA)?;
match pixel_data.value() {
dicom_core::DicomValue::Primitive(_) => None,
dicom_core::DicomValue::Sequence(_) => None,
dicom_core::DicomValue::PixelSequence(seq) => Some(Cow::from(seq.offset_table())),
}
}
/// Should return either a byte slice/vector if native pixel data
/// or byte fragments if encapsulated.
/// Returns None if no pixel data is found
fn raw_pixel_data(&self) -> Option<RawPixelData> {
let pixel_data = self.get(dicom_dictionary_std::tags::PIXEL_DATA)?;
match pixel_data.value() {
dicom_core::DicomValue::Primitive(p) => {
// Create 1 fragment with all bytes
let fragment = p.to_bytes().to_vec();
let mut fragments = SmallVec::new();
fragments.push(fragment);
Some(RawPixelData {
fragments,
offset_table: SmallVec::new(),
})
}
dicom_core::DicomValue::PixelSequence(v) => {
let (offset_table, fragments) = v.clone().into_parts();
Some(RawPixelData {
fragments,
offset_table,
})
}
dicom_core::DicomValue::Sequence(..) => None,
}
}
}
#[cfg(test)]
mod tests {
use dicom_core::{DataElement, PrimitiveValue, VR};
use crate::meta::FileMetaTableBuilder;
use crate::{AccessError, FileDicomObject, InMemDicomObject};
fn assert_type_not_too_large<T>(max_size: usize) {
let size = std::mem::size_of::<T>();
if size > max_size {
panic!(
"Type {} of byte size {} exceeds acceptable size {}",
std::any::type_name::<T>(),
size,
max_size
);
}
}
#[test]
fn errors_not_too_large() {
assert_type_not_too_large::<AccessError>(64);
}
#[test]
fn smoke_test() {
const FILE_NAME: &str = ".smoke-test.dcm";
let meta = FileMetaTableBuilder::new()
.transfer_syntax(
dicom_transfer_syntax_registry::entries::EXPLICIT_VR_LITTLE_ENDIAN.uid(),
)
.media_storage_sop_class_uid("1.2.840.10008.5.1.4.1.1.1")
.media_storage_sop_instance_uid("1.2.3.456")
.implementation_class_uid("1.2.345.6.7890.1.234")
.build()
.unwrap();
let obj = FileDicomObject::new_empty_with_meta(meta);
obj.write_to_file(FILE_NAME).unwrap();
let obj2 = FileDicomObject::open_file(FILE_NAME).unwrap();
assert_eq!(obj, obj2);
let _ = std::fs::remove_file(FILE_NAME);
}
/// A FileDicomObject<InMemDicomObject>
/// can be used like a DICOM object.
#[test]
fn file_dicom_object_can_use_inner() {
let mut obj = InMemDicomObject::new_empty();
obj.put(DataElement::new(
dicom_dictionary_std::tags::PATIENT_NAME,
VR::PN,
PrimitiveValue::from("John Doe"),
));
let mut obj = obj
.with_meta(
FileMetaTableBuilder::new()
.media_storage_sop_class_uid("1.2.840.10008.5.1.4.1.1.7")
.media_storage_sop_instance_uid("1.2.23456789")
.transfer_syntax("1.2.840.10008.1.2.1"),
)
.unwrap();
// contains patient name
assert_eq!(
obj.element(dicom_dictionary_std::tags::PATIENT_NAME)
.unwrap()
.value()
.to_str()
.unwrap(),
"John Doe",
);
// can be removed with take
obj.take_element(dicom_dictionary_std::tags::PATIENT_NAME)
.unwrap();
assert!(matches!(
obj.element(dicom_dictionary_std::tags::PATIENT_NAME),
Err(AccessError::NoSuchDataElementTag { .. }),
));
}
#[test]
fn file_dicom_object_can_iterate_over_elements() {
let mut obj = InMemDicomObject::new_empty();
obj.put(DataElement::new(
dicom_dictionary_std::tags::PATIENT_NAME,
VR::PN,
PrimitiveValue::from("John Doe"),
));
obj.put(DataElement::new(
dicom_dictionary_std::tags::SOP_INSTANCE_UID,
VR::PN,
PrimitiveValue::from("1.2.987654321"),
));
let obj = obj
.with_meta(
FileMetaTableBuilder::new()
.media_storage_sop_class_uid("1.2.840.10008.5.1.4.1.1.7")
.media_storage_sop_instance_uid("1.2.987654321")
.transfer_syntax("1.2.840.10008.1.2.1"),
)
.unwrap();
// iter
let mut iter = (&obj).into_iter();
assert_eq!(
iter.next().unwrap().header().tag,
dicom_dictionary_std::tags::SOP_INSTANCE_UID
);
assert_eq!(
iter.next().unwrap().header().tag,
dicom_dictionary_std::tags::PATIENT_NAME
);
assert_eq!(iter.next(), None);
// into_iter
let mut iter = obj.into_iter();
assert_eq!(
iter.next().unwrap().header().tag,
dicom_dictionary_std::tags::SOP_INSTANCE_UID
);
assert_eq!(
iter.next().unwrap().header().tag,
dicom_dictionary_std::tags::PATIENT_NAME
);
assert_eq!(iter.next(), None);
}
#[test]
pub fn file_dicom_can_update_meta() {
let meta = FileMetaTableBuilder::new()
.transfer_syntax(
dicom_transfer_syntax_registry::entries::EXPLICIT_VR_LITTLE_ENDIAN.uid(),
)
.media_storage_sop_class_uid("1.2.840.10008.5.1.4.1.1.1")
.media_storage_sop_instance_uid("2.25.280986007517028771599125034987786349815")
.implementation_class_uid("1.2.345.6.7890.1.234")
.build()
.unwrap();
let mut obj = FileDicomObject::new_empty_with_meta(meta);
obj.update_meta(|meta| {
meta.receiving_application_entity_title = Some("SOMETHING".to_string());
});
assert_eq!(
obj.meta().receiving_application_entity_title.as_deref(),
Some("SOMETHING"),
);
}
}