/usr/include/dcmtk/dcmqrdb/dcmqrcnf.h is in libdcmtk-dev 3.6.2-3build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
*
* Copyright (C) 1993-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: dcmqrdb
*
* Author: Marco Eichelberg / Ralph Meyer
*
* Purpose: class DcmQueryRetrieveConfig
*
*/
#ifndef DCMQRCNF_H
#define DCMQRCNF_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#define INCLUDE_CSTDIO
#include "dcmtk/ofstd/ofstdinc.h"
#include "dcmtk/ofstd/ofcmdln.h"
#include "dcmtk/oflog/oflog.h"
#include "dcmtk/dcmqrdb/qrdefine.h"
extern DCMTK_DCMQRDB_EXPORT OFLogger DCM_dcmqrdbLogger;
#define DCMQRDB_TRACE(msg) OFLOG_TRACE(DCM_dcmqrdbLogger, msg)
#define DCMQRDB_DEBUG(msg) OFLOG_DEBUG(DCM_dcmqrdbLogger, msg)
#define DCMQRDB_INFO(msg) OFLOG_INFO(DCM_dcmqrdbLogger, msg)
#define DCMQRDB_WARN(msg) OFLOG_WARN(DCM_dcmqrdbLogger, msg)
#define DCMQRDB_ERROR(msg) OFLOG_ERROR(DCM_dcmqrdbLogger, msg)
#define DCMQRDB_FATAL(msg) OFLOG_FATAL(DCM_dcmqrdbLogger, msg)
/** this class describes configuration settings regarding character set handling
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveCharacterSetOptions
{
/** Flags for controlling the application behavior regarding character set
* conversion. Might be used for global and for per peer configuration.
*/
enum Flags
{
/** Activate options for Specific Character Set.
* If this flag is not set, all other flags and the given string for
* Specific Character Set will be ignored, e.g. using the global
* settings instead of peer specific ones.
*/
Configured = 0x01,
/** Always respond using the given character set, ignoring the
* character set of the request.
* If this flag is not set, the response will be created to the
* character set of the request (if possible).
*/
Override = 0x02,
/** Fall back to another character set.
* If this flag is set, the application will try to recover from a
* conversion failure:
* - If 'Override' is set, the application will try to convert
* the response to the character set of the request if conversion
* to the given character set failed.
* - If 'Override' is not set, the application will try to convert
* the response to the given character set if conversion to the
* character set of the response failed.
* If this flag is not set, the response will be left as-is, i.e.
* like it is stored in the index file, if conversion to another
* character set failed.
* @note The fall back conversion might also fail, in which case
* the response will still be left as-is, even if a fall back
* option was given.
*/
Fallback = 0x04
};
/** Constructor, will construct an object that is marked as
* "not configured".
*/
DcmQueryRetrieveCharacterSetOptions();
/** extract arguments from the config file.
* @param mnemonic the name of the current option
* @param valueptr the argument(s)
* @return OFTrue if the given name value pair referred to a character
* set option and was 'consumed', OFFalse if it should be handled
* elsewhere.
*/
OFBool parseOptions(const char* mnemonic, char* valueptr);
/// the given character set
OFString characterSet;
/** determine semantics of the character set value
* @see DcmQueryRetrieveCharacterSet::Flags
*/
unsigned flags;
/** special character set conversion flags.
* @see OFCharacterEncoding::ConversionFlags
*/
unsigned conversionFlags;
};
/** this class describes configuration settings for the quota of a storage area
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigQuota
{
/// maximum number of studies
int maxStudies;
/// maximum number of bytes per study
long maxBytesPerStudy;
};
/** this class describes configuration settings for a remote SCP peer
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigPeer
{
/// remote peer AE title
const char *ApplicationTitle;
/// remote peer host name
const char *HostName;
/// remote peer port number
int PortNumber;
};
/** this class describes configuration settings for a single storage area
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigAEEntry
{
/// application entity title
const char *ApplicationTitle;
/// name of storage area
const char *StorageArea;
/// access type (read-only, read/write)
const char *Access;
/// quota setting for this storage area
DcmQueryRetrieveConfigQuota *StorageQuota;
/// number of peer entries
int noOfPeers;
/// array of peer entries describing remote SCP peers
DcmQueryRetrieveConfigPeer *Peers;
};
/** this class describes configuration settings for a list of storage areas
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigConfiguration
{
/// number of storage areas (aetitles)
int noOfAEEntries;
/// array of entries for each storage area
DcmQueryRetrieveConfigAEEntry *AEEntries;
};
/** this class describes configuration settings for one symbolic host or vendor
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigHostEntry
{
/// symbolic name of host
const char *SymbolicName;
/// number of peer entries
int noOfPeers;
/// array of peer entries describing remote SCP peers
DcmQueryRetrieveConfigPeer *Peers;
};
/** this class describes configuration settings for a list of symbolic hosts or vendors
*/
struct DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfigHostTable
{
/// number of entries
int noOfHostEntries;
/// array of entries
DcmQueryRetrieveConfigHostEntry *HostEntries;
};
/** this class describes configuration settings for a Query/Retrieve SCP Service
*/
class DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveConfig
{
public:
DcmQueryRetrieveConfig()
: UserName_()
, GroupName_()
, networkTCPPort_(0)
, maxPDUSize_(0)
, maxAssociations_(0)
, CNF_Config()
, CNF_HETable()
, CNF_VendorTable()
{
}
~DcmQueryRetrieveConfig();
/*
* read configuration file and initialize the
* intern configuration structure
* Input : configuration file name
* Return : 1 - ok
* 0 - error
*/
int init(const char *ConfigurationFile);
/*
* search for peer with AETitle
* Input : AETitle
* Ouput : Host Name, Port Number
* Return : 1 - found in AETable
* 2 - found in HostTable
* 0 - not found
*/
int peerForAETitle(const char *AETitle, const char **HostName, int *PortNumber) const;
/*
* check if given AETitles exist in same
* Vendor Group
* Input : two AETitles
* Return : 1 - same group
* 0 - else
*/
int checkForSameVendor(const char *AETitle1, const char *AETitle2) const;
/*
* get Storage Area for AETitle
* Input : AETitle
* Return : Storage Area
*/
const char *getStorageArea(const char *AETitle) const;
/*
* get Number of Maximal Studies
* Input : AETitle
* Return : Number of Maximal Studies
*/
int getMaxStudies(const char *AETitle) const;
/*
* get Number of maximal Bytes per Study
* Input : AETitle
* Return : Number of maximal Bytes per Study
*/
long getMaxBytesPerStudy(const char *AETitle) const;
/*
* get Max Associations
* Input :
* Return : Max Associations
*/
int getMaxAssociations() const;
/*
* get Network TCP Port
* Input :
* Return : Network TCP Port
*/
int getNetworkTCPPort() const;
/*
* get Max PDU Size
* Input :
* Return : Max PDU Size
*/
OFCmdUnsignedInt getMaxPDUSize() const;
/*
* check if there is an peer with calling AETitle
* on HostName
* Input : called AETitle, calling AETitle, Host Name
* Return : 1 -- yes
* 0 -- no
*/
int peerInAETitle(const char *calledAETitle, const char *callingAETitle, const char *HostName) const;
/*
* get Access mode
* Input : AETitle
* Return : Access mode
*/
const char *getAccess(const char *AETitle) const;
/*
* check if given storage area is read/write
* Input : AETitle
* Return : true if storage area is writable
*/
OFBool writableStorageArea(const char *aeTitle) const;
// methods only used by TI
/*
* searches in the host table for all AE titles
* known for peer hostName. Creates an array of string pointers
* containing the known AE titles. The AE titles contained
* in the array are privately owned by the config facility (you
* may not free them). You may free the array when no longer needed.
*
* Input Parameter: peer host name
* Output Parameter: malloc'ed array of private string pointers.
* Returns : number of entries in the malloced array.
* 0 if no entries found.
*/
int aeTitlesForPeer(const char *hostName, const char *** aeTitleList) const;
/*
* Creates an array of string pointers
* containing the known AE titles for CTN storage areas.
* The AE titles contained in the array are privately owned
* by the config facility (you may not free them). You may
* free the array when no longer needed.
*
* Output Parameter: malloc'ed array of private string pointers.
* Returns : number of entries in the malloced array.
* 0 if no entries exist.
*/
int ctnTitles(const char *** ctnTitleList) const;
/*
* Creates an array of string pointers
* containing the kown Host Names for given Vendor Name.
* The Host Names contained in the array are privately owned
* by the config facility (you may not free them). You may
* free the array when no longer needed.
* Input : Vendor Name
* Ouput : array of string pointers
* Return : number of entries in array
* 0 if no entries exist
*/
int HostNamesForVendor(const char *Vendor, const char ***HostNameArray) const;
/*
* searches in the host table for all AE titles
* known for a symbolic name. Creates an array of string pointers
* containing the known AE titles. The AE titles contained
* in the array are privately owned by the config facility (you
* may not free them). You may free the array when no longer needed.
*
* Input Parameter: symbolic name
* Output Parameter: malloc'ed array of private string pointers.
* Returns : number of entries in the malloced array.
* 0 if no entries found.
*/
int aeTitlesForSymbolicName(const char *symbolicName, const char ***aeTitleList) const;
/*
* printf contents of configuration stucture
* to stdout
*/
void printConfig();
/*
* get User Name
* Input :
* Return : User Name
*/
const char *getUserName() const;
/*
* get Group Name
* Input :
* Return : Group Name
*/
const char *getGroupName() const;
/*
* get Character Set Options
* Input :
* Return : Character Set Options
*/
const DcmQueryRetrieveCharacterSetOptions& getCharacterSetOptions() const;
/*
* get Character Set Options
* Input :
* Return : Character Set Options
*/
DcmQueryRetrieveCharacterSetOptions& getCharacterSetOptions();
private:
friend class DcmQueryRetrieveCharacterSetOptions;
const char* vendorForPeerAETitle(const char *peerAETitle) const;
int countCtnTitles() const;
/*
* initialize configuration storage structure
*/
void initConfigStruct();
/*
* read configuration file line by line
* Input : configuration file pointer
* Return : 1 - ok
* 0 - error
*/
int readConfigLines(FILE *cnffp);
/*
* read HostTable in configuration file
* Input : configuration file pointer, line number
* Output : line number
* Return : 1 - ok
* 0 - error
*/
int readHostTable(FILE *cnffp, int *lineno);
/*
* read VendorTable in configuration file
* Input : configuration file pointer, line number
* Output : line number
* Return : 1 - ok
* 0 - error
*/
int readVendorTable(FILE *cnffp, int *lineno);
/*
* read AETable in configuration file
* Input : configuration file pointer, line number
* Output : line number
* Return : 1 - ok
* 0 - error
*/
int readAETable(FILE *cnffp, int *lineno);
/*
* separate the peer list from value list
* Input : pointer to value list
* Output : number of peers
* Return : pointer to peer list
*/
DcmQueryRetrieveConfigPeer *parsePeers(char **valuehandle, int *peers);
/*
* extract peers from peer list
* Input : pointer to value list
* Output : number of peers
* Return : pointer to peer list
*/
DcmQueryRetrieveConfigPeer *readPeerList(char **valuehandle, int *peers);
/*
* separate a quota from value list
* Input : pointer to value list
* Return : pointer to quota structure
*/
static DcmQueryRetrieveConfigQuota *parseQuota(char **valuehandle);
/*
* check if character is white space or separator
* Input : character
* Return : 1 - yes
* 0 - no
*/
static int isgap (char gap);
/*
* check if character is quote
* Input : character
* Return : 1 - yes
* 0 - no
*/
static int isquote (char quote);
/*
* print a panic message to stderr
* Input : variable
*/
static void panic(const char *fmt, ...);
/*
* convert string to long
* Input : parameter string value
* Return : parameter as long
* -1 on error
*/
static long quota (const char *value);
/*
* skip mnemonic and first gap in rc line
* Input : rc line
* Return : pointer to value list
*/
static char *skipmnemonic (char *rcline);
/*
* separate on value from value list
* Input : pointer to value list
* Return : pointer to next value
*/
static char *parsevalues (char **valuehandle);
/* Configuration Parameters */
OFString UserName_;
OFString GroupName_;
int networkTCPPort_;
Uint32 maxPDUSize_;
int maxAssociations_;
DcmQueryRetrieveCharacterSetOptions characterSetOptions_;
DcmQueryRetrieveConfigConfiguration CNF_Config; /* configuration file contents */
DcmQueryRetrieveConfigHostTable CNF_HETable; /* HostEntries Table */
DcmQueryRetrieveConfigHostTable CNF_VendorTable; /* Vendor Table */
};
#endif
|