/usr/include/dcmtk/dcmqrdb/dcmqrcnf.h is in libdcmtk2-dev 3.6.0-15.
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 | /*
*
* Copyright (C) 1993-2010, 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
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:16:41 $
* CVS/RCS Revision: $Revision: 1.7 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#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"
OFLogger DCM_dcmqrdbGetLogger();
#define DCMQRDB_TRACE(msg) OFLOG_TRACE(DCM_dcmqrdbGetLogger(), msg)
#define DCMQRDB_DEBUG(msg) OFLOG_DEBUG(DCM_dcmqrdbGetLogger(), msg)
#define DCMQRDB_INFO(msg) OFLOG_INFO(DCM_dcmqrdbGetLogger(), msg)
#define DCMQRDB_WARN(msg) OFLOG_WARN(DCM_dcmqrdbGetLogger(), msg)
#define DCMQRDB_ERROR(msg) OFLOG_ERROR(DCM_dcmqrdbGetLogger(), msg)
#define DCMQRDB_FATAL(msg) OFLOG_FATAL(DCM_dcmqrdbGetLogger(), msg)
/** this class describes configuration settings for the quota of a storage area
*/
struct 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 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 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 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 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 DcmQueryRetrieveConfigHostTable
{
/// number of entries
int noOfHostEntries;
/// array of entries
DcmQueryRetrieveConfigHostEntry *HostEntries;
};
/** this class describes configuration settings for a Query/Retrieve SCP Service
*/
class DcmQueryRetrieveConfig
{
public:
/*
* 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;
private:
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_;
DcmQueryRetrieveConfigConfiguration CNF_Config; /* configuration file contents */
DcmQueryRetrieveConfigHostTable CNF_HETable; /* HostEntries Table */
DcmQueryRetrieveConfigHostTable CNF_VendorTable; /* Vendor Table */
};
#endif
/*
* CVS Log
* $Log: dcmqrcnf.h,v $
* Revision 1.7 2010-10-14 13:16:41 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.6 2010-09-09 17:20:33 joergr
* Removed unused (or never used?) configuration entries.
*
* Revision 1.5 2009-11-24 10:10:42 uli
* Switched to logging mechanism provided by the "new" oflog module.
*
* Revision 1.4 2009-08-21 09:50:07 joergr
* Replaced tabs by spaces and updated copyright date.
*
* Revision 1.3 2005/12/08 16:04:20 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.2 2005/04/04 13:15:13 meichel
* Added username/groupname configuration option that allows to start the
* image database as root and let it call setuid/setgid to execute under an
* unprivileged account once the listen socket has been opened.
*
* Revision 1.1 2005/03/30 13:34:50 meichel
* Initial release of module dcmqrdb that will replace module imagectn.
* It provides a clear interface between the Q/R DICOM front-end and the
* database back-end. The imagectn code has been re-factored into a minimal
* class structure.
*
*
*/
|