GDCM 3.0.24
gdcmULConnection.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef GDCMULCONNECTION_H
19#define GDCMULCONNECTION_H
20
21#include "gdcmNetworkStateID.h"
22#include "gdcmARTIMTimer.h"
25#include "gdcmDataElement.h"
28
29class iosockinet;
30class echo;
31namespace gdcm{
32 namespace network{
33
58{
59 ULConnectionInfo mInfo;
60 //this is a dirty dirty hack
61 //but to establish an outgoing connection (scu), we need the echo service
62 //to establish incoming, we just need a port and localhost, so an iosockinet works while an
63 //echo would fail (probably because one already exists)
64 echo* mEcho;
65 iosockinet* mSocket;//of the three protocols offered by socket++-- echo, smtp, and ftp--
66 //echo most closely matches what the DICOM standard describes as a network connection
67 ARTIMTimer mTimer;
68
69 EStateID mCurrentState;
70
71 std::vector<PresentationContextRQ> mPresentationContexts;
72 //this is our list of presentation contexts of what we can send
73 uint32_t mMaxPDUSize;
74
75 std::vector<PresentationContextAC> mAcceptedPresentationContexts;//these come back from the server
76 //and tell us what can be sent over this connection
77
78 TransferSyntaxSub cstorets;
79
80 friend class ULActionAE6;
81 void SetCStoreTransferSyntax( TransferSyntaxSub const & ts );
82 friend class ULConnectionManager;
83 TransferSyntaxSub const & GetCStoreTransferSyntax( ) const;
84 public:
85
86 ULConnection(const ULConnectionInfo& inUserInformation);
87 //destructors are virtual to prevent memory leaks by inherited classes
88 virtual ~ULConnection();
89
91 void SetState(const EStateID& inState);//must be able to update state...
92
93 //echo* GetProtocol();
94 std::iostream* GetProtocol();
96
98
100
101 //when the connection is first associated, the connection is told
102 //the max packet/PDU size and the way in which to present data
103 //(presentation contexts, etc). Store that here.
104 void SetMaxPDUSize(uint32_t inSize);
105 uint32_t GetMaxPDUSize() const;
106
109
112
113 std::vector<PresentationContextRQ> const & GetPresentationContexts() const;
114 void SetPresentationContexts(const std::vector<PresentationContextRQ>& inContexts);
115
116 void SetPresentationContexts(const std::vector<PresentationContext>& inContexts);
117
118 //given a particular data element, presumably the SOP class,
119 //find the presentation context for that SOP
120 //NOT YET IMPLEMENTED
122
123 std::vector<PresentationContextAC> const & GetAcceptedPresentationContexts() const;
124 std::vector<PresentationContextAC> & GetAcceptedPresentationContexts();
126
129
132
133 ULConnection(const ULConnection&) = delete;
134 void operator=(const ULConnection&) = delete;
135 };
136 }
137}
138
139#endif // ULCONNECTION_H
Class to represent a Data Element either Implicit or Explicit.
Definition gdcmDataElement.h:59
ARTIMTimer.
Definition gdcmARTIMTimer.h:39
PresentationContextAC.
Definition gdcmPresentationContextAC.h:33
PresentationContextRQ.
Definition gdcmPresentationContextRQ.h:35
TransferSyntaxSub.
Definition gdcmTransferSyntaxSub.h:38
Definition gdcmULActionAE.h:80
ULConnectionInfo.
Definition gdcmULConnectionInfo.h:38
ULConnectionManager.
Definition gdcmULConnectionManager.h:46
ULConnection.
Definition gdcmULConnection.h:58
PresentationContextRQ FindContext(const DataElement &de) const
EStateID GetState() const
std::vector< PresentationContextAC > & GetAcceptedPresentationContexts()
void SetPresentationContexts(const std::vector< PresentationContextRQ > &inContexts)
bool InitializeIncomingConnection()
used to establish scp connections
std::vector< PresentationContextAC > const & GetAcceptedPresentationContexts() const
uint32_t GetMaxPDUSize() const
const PresentationContextRQ * GetPresentationContextRQByID(uint8_t id) const
std::vector< PresentationContextRQ > const & GetPresentationContexts() const
void AddAcceptedPresentationContext(const PresentationContextAC &inPC)
ULConnection(const ULConnectionInfo &inUserInformation)
std::iostream * GetProtocol()
void SetState(const EStateID &inState)
void SetMaxPDUSize(uint32_t inSize)
ULConnection(const ULConnection &)=delete
const PresentationContextAC * GetPresentationContextACByID(uint8_t id) const
void SetPresentationContexts(const std::vector< PresentationContext > &inContexts)
const ULConnectionInfo & GetConnectionInfo() const
void operator=(const ULConnection &)=delete
uint8_t GetPresentationContextIDFromPresentationContext(PresentationContextRQ const &pc) const
return 0 upon error
bool InitializeConnection()
used to establish scu connections
#define GDCM_EXPORT
Definition gdcmWin32.h:34
EStateID
Definition gdcmNetworkStateID.h:32
Definition gdcmASN1.h:21