/usr/include/dcmtk/dcmqrdb/dcmqrcbs.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 | /*
*
* Copyright (C) 1993-2011, 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
*
* Purpose: class DcmQueryRetrieveStoreContext
*
*/
#ifndef DCMQRCBS_H
#define DCMQRCBS_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmnet/dimse.h"
#include "dcmtk/dcmqrdb/qrdefine.h"
class DcmQueryRetrieveDatabaseHandle;
class DcmQueryRetrieveOptions;
class DcmFileFormat;
/** this class maintains the context information that is passed to the
* callback function called by DIMSE_storeProvider.
*/
class DCMTK_DCMQRDB_EXPORT DcmQueryRetrieveStoreContext
{
public:
/** constructor
* @param handle reference to database handle
* @param options options for the Q/R service
* @param s initial DIMSE status
* @param ff pointer to DcmFileformat object to be used for storing the dataset
* @param correctuidpadding flag indicating whether space padded UIDs should be silently corrected
*/
DcmQueryRetrieveStoreContext(
DcmQueryRetrieveDatabaseHandle& handle,
const DcmQueryRetrieveOptions& options,
DIC_US s,
DcmFileFormat *ff,
OFBool correctuidpadding)
: dbHandle(handle)
, options_(options)
, status(s)
, fileName(NULL)
, dcmff(ff)
, correctUIDPadding(correctuidpadding)
{
}
/** set DIMSE status
* param s new status
*/
void setStatus(DIC_US s) { status = s; }
/// return current DIMSE status
DIC_US getStatus() const { return status; }
/** set file name under which the image should be stored
* @param fn file name. String is not copied.
*/
void setFileName(const char *fn) { fileName = fn; }
/** callback handler called by the DIMSE_storeProvider callback function.
* @param progress progress state (in)
* @param req original store request (in)
* @param imageFileName being received into (in)
* @param imageDataSet being received into (in)
* @param rsp final store response (out)
* @param stDetail status detail dataset (out)
*/
void callbackHandler(
T_DIMSE_StoreProgress *progress,
T_DIMSE_C_StoreRQ *req,
char *imageFileName,
DcmDataset **imageDataSet,
T_DIMSE_C_StoreRSP *rsp,
DcmDataset **stDetail);
private:
void updateDisplay(T_DIMSE_StoreProgress * progress);
void saveImageToDB(
T_DIMSE_C_StoreRQ *req, /* original store request */
const char *imageFileName,
/* out */
T_DIMSE_C_StoreRSP *rsp, /* final store response */
DcmDataset **stDetail);
void writeToFile(
DcmFileFormat *ff,
const char* fname,
T_DIMSE_C_StoreRSP *rsp);
void checkRequestAgainstDataset(
T_DIMSE_C_StoreRQ *req, /* original store request */
const char* fname, /* filename of dataset */
DcmDataset *dataSet, /* dataset to check */
T_DIMSE_C_StoreRSP *rsp, /* final store response */
OFBool uidPadding); /* correct UID padding */
/// reference to database handle
DcmQueryRetrieveDatabaseHandle& dbHandle;
/// reference to Q/R service options
const DcmQueryRetrieveOptions& options_;
/// current DIMSE status
DIC_US status;
/// file name under which the incoming image should be stored
const char *fileName;
/// DICOM file format into which the image is received
DcmFileFormat *dcmff;
/// flag indicating whether space padded UIDs should be silently corrected
OFBool correctUIDPadding;
};
#endif
|