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
|
/*
Aeskulap ImagePool - DICOM abstraction library
Copyright (C) 2005 Alexander Pipelka
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Alexander Pipelka
*/
#ifndef IMAGEPOOL_ASSOCIATION_H
#define IMAGEPOOL_ASSOCIATION_H
// dcmtk includes
#include "dcmtk/config/osconfig.h"
#include <dcmtk/dcmnet/assoc.h>
#include <dcmtk/dcmnet/cond.h>
#include <dcmtk/dcmnet/dimse.h>
#include <dcmtk/dcmdata/dcfilefo.h>
class Network;
class Association
{
public:
/**
Constructors
*/
Association();
virtual ~Association();
/**
Create the association object (connect through DicomNetwork::Connect(..) )
*/
void Create(const std::string& title, const std::string& peer, int port, const std::string& ouraet, const char *abstractSyntax = NULL);
/**
Connect the association to a dicom network
*/
OFCondition Connect(Network* network, int lossy = 0);
void Destroy();
/**
Drop the association
*/
OFCondition Drop(OFCondition cond=EC_Normal);
/**
Send a dataset through the association (C-Store)
*/
virtual OFCondition SendObject(DcmDataset* dataset);
/**
Send a fileformat object through the association (C-Store)
*/
virtual OFCondition SendObject(DcmFileFormat* dcmff);
/**
Send a C-Echo request through the association
*/
bool SendEchoRequest();
/**
Return the DicomNetwork this association is connected to
*/
Network* GetNetwork();
/**
add a query key to a dataset
*/
static bool AddKey(DcmItem *query, const DcmTagKey& tag, const char* value=NULL);
static bool AddKey(DcmItem *query, const DcmTagKey& tag, int value);
static bool AddKey(DcmItem *query, const DcmTagKey& tag, double value, const char* format = "%lf");
static bool AddKey(DcmDataset *query, const DcmTagKey& tag, const char* value=NULL);
//template< class T >
static bool AddCustomKey(DcmItem* query, const DcmTagKey& t, const char* value) {
DcmTag tag(t);
Uint16 g = tag.getGTag();
Uint16 e = tag.getETag();
if (tag.error() != EC_Normal) {
printf("unknown tag: (%04x,%04x)", g, e);
return false;
}
DcmElement *elem = newDicomElement(tag);
if (elem == NULL) {
printf("cannot create element for tag: (%04x,%04x)", g, e);
return false;
}
if(value != NULL) {
if (strlen(value) > 0) {
if( elem->putString(value) != EC_Normal) {
printf("cannot put tag value: (%04x,%04x)=\"%s\"", g, e, value);
return false;
}
}
}
delete query->remove(t);
query->insert(elem, OFTrue);
return true;
}
static bool AddKey(DcmDataset *query, const DcmTagKey& tag, int value);
static bool AddKey(DcmDataset *query, const DcmTagKey& tag, double value, const char* format = "%lf");
/**
get a key from the dataset
*/
static const char* GetKey(DcmDataset* query, const DcmTagKey& tag);
/**
add a query level to a dataset
*/
static bool AddQueryLevel(DcmDataset* query, const std::string& level);
const std::string& GetOurAET();
void SetTimeout(int t);
int GetTimeout();
void SetCompressionQuality(int q);
int GetCompressionQuality();
void SetProposeCompression(bool propose);
bool GetProposeCompression();
void SetAcceptLossyImages(bool lossy);
protected:
/**
Callback function to add user defined presentation context to association parameters
*/
virtual void OnAddPresentationContext(T_ASC_Parameters *params, const char* transferSyntaxList[], int transferSyntaxListCount);
/**
Protected data
*/
char* m_abstractSyntax;
std::string m_calledAET;
std::string m_calledPeer;
std::string m_ourAET;
int m_calledPort;
int m_timeout;
bool m_accept_lossy;
T_ASC_Association* assoc;
T_ASC_PresentationContextID presId;
DIC_UI sopClass;
DIC_UI sopInstance;
DIC_US msgId;
protected:
/**
Private data
*/
Network* dcmNet;
int m_CompressionQuality;
bool m_ProposeCompression;
friend class Network;
};
#endif
|