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
|
/*
*
* Copyright (C) 2000-2017, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmsr
*
* Author: Joerg Riesmeier
*
* Purpose:
* classes: DSRReferencedDateTimeList
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmsr/dsrtcodt.h"
#include "dcmtk/dcmdata/dcdeftag.h"
#include "dcmtk/dcmdata/dcvrdt.h"
// global empty item object so it gets initialized and cleaned up by the linker
const OFString OFStringEmptyItem;
template<>
const OFString& DSRgetEmptyItem<OFString>()
{
return OFStringEmptyItem;
}
DSRReferencedDateTimeList::DSRReferencedDateTimeList()
: DSRListOfItems<OFString>()
{
}
DSRReferencedDateTimeList::DSRReferencedDateTimeList(const DSRReferencedDateTimeList &lst)
: DSRListOfItems<OFString>(lst)
{
}
DSRReferencedDateTimeList::~DSRReferencedDateTimeList()
{
}
DSRReferencedDateTimeList &DSRReferencedDateTimeList::operator=(const DSRReferencedDateTimeList &lst)
{
DSRListOfItems<OFString>::operator=(lst);
return *this;
}
OFCondition DSRReferencedDateTimeList::print(STD_NAMESPACE ostream &stream,
const size_t flags,
const char separator) const
{
const OFListConstIterator(OFString) endPos = ItemList.end();
OFListConstIterator(OFString) iterator = ItemList.begin();
while (iterator != endPos)
{
stream << (*iterator);
iterator++;
if (iterator != endPos)
{
if (flags & DSRTypes::PF_shortenLongItemValues)
{
stream << separator << "...";
/* goto last item */
iterator = endPos;
} else
stream << separator;
}
}
return EC_Normal;
}
OFCondition DSRReferencedDateTimeList::read(DcmItem &dataset,
const size_t /*flags*/)
{
/* get string array from dataset */
DcmDateTime delem(DCM_ReferencedDateTime);
OFCondition result = DSRTypes::getAndCheckElementFromDataset(dataset, delem, "1-n", "1C", "TCOORD content item");
if (result.good())
{
/* clear internal list */
clear();
OFString value;
const unsigned long count = delem.getVM();
/* fill list with values from string array */
for (unsigned long i = 0; i < count; i++)
{
if (delem.getOFString(value, i).good())
addItem(value);
}
}
return result;
}
OFCondition DSRReferencedDateTimeList::write(DcmItem &dataset) const
{
OFCondition result = EC_Normal;
/* fill string with values from list */
OFString tmpString;
const OFListConstIterator(OFString) endPos = ItemList.end();
OFListConstIterator(OFString) iterator = ItemList.begin();
while (iterator != endPos)
{
if (!tmpString.empty())
tmpString += '\\';
tmpString += *iterator;
iterator++;
}
/* set decimal string */
DcmDateTime delem(DCM_ReferencedDateTime);
result = delem.putOFStringArray(tmpString);
/* add to dataset */
if (result.good())
result = DSRTypes::addElementToDataset(result, dataset, new DcmDateTime(delem), "1-n", "1", "TCOORD content item");
return result;
}
OFCondition DSRReferencedDateTimeList::putString(const char *stringValue)
{
OFCondition result = EC_Normal;
/* clear internal list */
clear();
/* check input string */
if ((stringValue != NULL) && (strlen(stringValue) > 0))
{
const char *ptr1 = stringValue;
const char *ptr2;
/* retrieve date/time values from string */
do {
ptr2 = strchr(ptr1, ',');
if (ptr2 != NULL)
{
if (ptr2 > ptr1)
{
addItem(OFString(ptr1, ptr2 - ptr1));
/* jump to next time offset */
ptr1 = ptr2 + 1;
} else
result = EC_CorruptedData;
} else
addItem(ptr1);
} while (result.good() && (ptr2 != NULL));
}
return result;
}
|