/usr/include/dcmtk/dcmnet/dccfprmp.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 | /*
*
* Copyright (C) 1994-2015, 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: dcmnet
*
* Author: Marco Eichelberg
*
* Purpose:
* class DcmProfileEntry
* class DcmProfileMap
*
*/
#ifndef DCCFPRMP_H
#define DCCFPRMP_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofstring.h" /* for class OFString */
#include "dcmtk/ofstd/ofcond.h" /* for class OFCondition */
#include "dcmtk/ofstd/ofmap.h" /* for class OFMap */
#include "dcmtk/dcmnet/dndefine.h"
/** this helper class is a profile list entry.
* Not intended for use by the end user.
*/
class DCMTK_DCMNET_EXPORT DcmProfileEntry
{
public:
/** constructor
* @param presentationContextGroup symbolic identifier of the presentation context list
* @param roleSelectionGroup symbolic identifier of the role selection list, may be empty
* @param extendedNegotiationGroup symbolic identifier of the extended negotiation list, may be empty
*/
DcmProfileEntry(
const OFString& presentationContextGroup,
const OFString& roleSelectionGroup,
const OFString& extendedNegotiationGroup);
/// copy constructor
DcmProfileEntry(const DcmProfileEntry& arg);
/// copy assignment operator
DcmProfileEntry& operator=(const DcmProfileEntry& arg);
/// destructor
~DcmProfileEntry();
/** returns the presentation context key
* @return presentation context key
*/
const char *getPresentationContextKey() const;
/** returns the role selection key
* @return role selection key, NULL if empty
*/
const char *getRoleSelectionKey() const;
/** returns the extended negotiation key
* @return extended negotiation key, NULL if empty
*/
const char *getExtendedNegotiationKey() const;
/** comparison operator.
* @param arg object to compare with
* @return true if equal
*/
OFBool operator==(const DcmProfileEntry& arg) const
{
return (presentationContextGroup_ == arg.presentationContextGroup_)
&& (roleSelectionGroup_ == arg.roleSelectionGroup_)
&& (extendedNegotiationGroup_ == arg.extendedNegotiationGroup_);
}
private:
/// symbolic identifier of the presentation context list
OFString presentationContextGroup_;
/// symbolic identifier of the role selection list, may be empty
OFString roleSelectionGroup_;
/// symbolic identifier of the extended negotiation list, may be empty
OFString extendedNegotiationGroup_;
};
/** this helper class maintains a map of association negotiation profile keys.
* Not intended for use by the end user.
*/
class DCMTK_DCMNET_EXPORT DcmProfileMap
{
public:
/// constructor
DcmProfileMap();
/// destructor
~DcmProfileMap();
/// copy constructor, creates deep copy
DcmProfileMap(const DcmProfileMap& arg);
/// copy constructor, creates deep copy
DcmProfileMap& operator=(const DcmProfileMap& arg);
/** const iterator pointing to start of profile map
* @return iterator to start of profile map
*/
OFMap<OFString, DcmProfileEntry*>::const_iterator begin();
/** const iterator pointing to end of profile map (behind last profile entry)
* @return iterator to end of profile map
*/
OFMap<OFString, DcmProfileEntry*>::const_iterator end();
/** return profile entry from profile map by its name
* @param name The name of the profile, empty if unknown
* @return the profile
*/
const DcmProfileEntry* getProfile(const OFString& name);
/** Resets DcmProfileMap and frees any allocated memory
*/
void clear();
/** add new entry to list within map.
* @param key map key, must not exist in map
* @param presentationContextKey symbolic identifier of the presentation context list, must not be NULL
* @param roleSelectionKey symbolic identifier of the role selection list, may be NULL
* @param extendedNegotiationKey symbolic identifier of the extended negotiation list, may be NULL
* @return EC_Normal if successful, an error code otherwise
*/
OFCondition add(
const char *key,
const char *presentationContextKey,
const char *roleSelectionKey,
const char *extendedNegotiationKey);
/** checks if the key is known
* @param key key name, must not be NULL
* @return true if key is known, false otherwise
*/
OFBool isKnownKey(const char *key) const;
/** returns the presentation context key for the given profile
* @param key key name, must not be NULL
* @return presentation context key, NULL if not found
*/
const char *getPresentationContextKey(const char *key) const;
/** returns the role selection key for the given profile
* @param key key name, must not be NULL
* @return role selection key, NULL if not found or empty
*/
const char *getRoleSelectionKey(const char *key) const;
/** returns the extended negotiation key for the given profile
* @param key key name, must not be NULL
* @return extended negotiation key, NULL if not found or empty
*/
const char *getExtendedNegotiationKey(const char *key) const;
private:
/// map of profiles
OFMap<OFString, DcmProfileEntry *> map_;
};
#endif
|