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
|
/*
*
* Copyright (C) 2016-2023, 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: dcmdata
*
* Author: Sebastian Grallert
*
* Purpose: Providing basic JSON formatting functionalities
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmdata/dcjson.h"
#include "dcmtk/ofstd/ofdefine.h"
#include "dcmtk/ofstd/ofstring.h"
#include <cassert>
void DcmJsonFormat::escapeControlCharacters(STD_NAMESPACE ostream &out, const OFString &value)
{
// escapes all forbidden control characters in JSON
for (size_t i = 0; i < value.size(); ++i)
{
const char c = value.at(i);
switch (c)
{
case '\\':
out << "\\\\";
break;
case '"':
out << "\\\"";
break;
case '\b':
out << "\\b";
break;
case '\n':
out << "\\n";
break;
case '\r':
out << "\\r";
break;
case '\t':
out << "\\t";
break;
case '\f':
out << "\\f";
break;
default:
//escapes all other control characters
if (c >= '\0' && c < ' ')
{
out << "\\u" << STD_NAMESPACE hex
<< STD_NAMESPACE setw(4) << STD_NAMESPACE setfill('0')
<< OFstatic_cast(unsigned, OFstatic_cast(unsigned char, c));
}
else
{
out << c;
}
}
}
}
// Formats the number to JSON standard as DecimalString
void DcmJsonFormat::normalizeDecimalString(OFString &value)
{
// remove all plus characters that may occur in the string.
// These are permitted in DICOM but not in JSON.
size_t pos;
while (OFString_npos != (pos = value.find('+')))
value.erase(pos,1);
// check if the first character is a minus sign.
// if so, remove it and set "minus" to true
OFBool minus = OFFalse;
if (value.length() > 0 && value[0] == '-')
{
value = value.substr(1);
minus = OFTrue;
}
// remove leading zeroes from the significand
pos = value.find_first_not_of("0");
if (pos == OFString_npos)
value = "0";
else
{
// make sure that the significand does not start
// with a period, in this case, prepend a zero
if (value[pos] == '.')
value = '0' + value.substr(pos);
else
value = value.substr(pos);
}
// add back any minus sign
if (minus)
value = '-' + value;
// make sure that the significand does not end
// with a period
if (OFString_npos != (pos = value.find('.')))
{
if (pos == value.length() -1)
{
// number ends with a period. Add a zero
value.append("0");
}
else if ((value[pos+1] < '0') || (value[pos+1] > '9'))
{
// no digit after period. Insert a zero
value.insert(pos+1, "0");
}
}
}
// Formats the number to JSON standard as IntegerString
void DcmJsonFormat::normalizeIntegerString(OFString &value)
{
// remove all plus characters that may occur in the string.
// These are permitted in DICOM but not in Json.
size_t pos;
while (OFString_npos != (pos = value.find('+')))
value.erase(pos,1);
OFBool minus = OFFalse;
if (value.length() > 0 && value[0] == '-')
{
value = value.substr(1);
minus = OFTrue;
}
pos = value.find_first_not_of("0");
if (pos == OFString_npos)
value = "0";
else
value = value.substr(pos);
if (minus)
value = '-' + value;
}
// Print a string in JSON format
void DcmJsonFormat::printString(STD_NAMESPACE ostream &out,
const OFString &value)
{
out << "\"";
escapeControlCharacters(out, value);
out << "\"";
}
// Print a string in JSON format
// Print null if OFString is empty
void DcmJsonFormat::printValueString(STD_NAMESPACE ostream &out,
const OFString &value)
{
if (!value.empty())
{
printString(out, value);
}
else
{
out << "null";
}
}
// Print a integer in JSON format
// Print null if OFString is empty
void DcmJsonFormat::printNumberInteger(STD_NAMESPACE ostream &out,
OFString &value)
{
if (!value.empty())
{
normalizeIntegerString(value);
out << value;
}
else
{
out << "null";
}
}
// Print a decimal in JSON format
// Print null if OFString is empty
void DcmJsonFormat::printNumberDecimal(STD_NAMESPACE ostream &out,
OFString &value)
{
if (!value.empty())
{
normalizeDecimalString(value);
out << value;
}
else
{
out << "null";
}
}
// Print the prefix for Value
void DcmJsonFormat::printValuePrefix(STD_NAMESPACE ostream &out)
{
out << "," << newline() << indent() << "\"Value\":" << space() << "[" << newline();
out << ++indent();
}
// Print the suffix for Value
void DcmJsonFormat::printValueSuffix(STD_NAMESPACE ostream &out)
{
out << newline() << --indent() << "]";
}
// Print the prefix for BulkDataURI
void DcmJsonFormat::printBulkDataURIPrefix(STD_NAMESPACE ostream &out)
{
out << "," << newline() << indent() << "\"BulkDataURI\":" << space();
}
// Print the prefix for InlineBinary
void DcmJsonFormat::printInlineBinaryPrefix(STD_NAMESPACE ostream &out)
{
out << "," << newline() << indent() << "\"InlineBinary\":" << space();
}
// Print the prefix for array elements in JSON format
void DcmJsonFormat::printNextArrayElementPrefix(STD_NAMESPACE ostream &out)
{
out << "," << newline() << indent();
}
// Method for holding and determine if BulkDataURI should be printed.
// This also manipulate uri String, if BulkDataURI should be printed.
OFBool DcmJsonFormat::asBulkDataURI(const DcmTagKey& /*tag*/, OFString& /*uri*/)
{
return OFFalse;
}
//Class for formatted output
DcmJsonFormatPretty::DcmJsonFormatPretty(const OFBool printMetaInfo)
: DcmJsonFormat(printMetaInfo)
, m_IndentionLevel(0)
{
}
void DcmJsonFormatPretty::printIndention(STD_NAMESPACE ostream& out)
{
for (unsigned ui = 0; ui < m_IndentionLevel; ++ui)
out << " ";
}
void DcmJsonFormatPretty::increaseIndention()
{
++m_IndentionLevel;
}
void DcmJsonFormatPretty::decreaseIndention()
{
assert(m_IndentionLevel);
--m_IndentionLevel;
}
OFString DcmJsonFormatPretty::newline()
{
return "\n";
}
OFString DcmJsonFormatPretty::space()
{
return " ";
}
//Class for unformatted output
DcmJsonFormatCompact::DcmJsonFormatCompact(const OFBool printMetaInfo)
: DcmJsonFormat(printMetaInfo)
{
}
void DcmJsonFormatCompact::printIndention(STD_NAMESPACE ostream& /*out*/)
{}
void DcmJsonFormatCompact::increaseIndention()
{}
void DcmJsonFormatCompact::decreaseIndention()
{}
OFString DcmJsonFormatCompact::newline()
{
return OFString();
}
OFString DcmJsonFormatCompact::space()
{
return OFString();
}
|