00001
00002
00003
00004
00005
00006
00007
00008 #ifndef DCPS_GUIDCONVERTER_H
00009 #define DCPS_GUIDCONVERTER_H
00010
00011 #include "tao/Basic_Types.h"
00012
00013 #include "dds/DdsDcpsGuidC.h"
00014
00015 #include "GuidUtils.h"
00016
00017 #include "dcps_export.h"
00018 #include "dds/DCPS/Definitions.h"
00019 #include "dds/DCPS/SafetyProfileStreams.h"
00020 #include "dds/DCPS/PoolAllocator.h"
00021
00022 namespace OpenDDS {
00023 namespace DCPS {
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 class OpenDDS_Dcps_Export GuidConverter {
00064 public:
00065
00066 GuidConverter(const GUID_t& guid);
00067
00068
00069 virtual ~GuidConverter();
00070
00071
00072 long checksum() const;
00073
00074
00075 long vendorId() const;
00076
00077
00078 long entityId() const;
00079
00080
00081 long entityKey() const;
00082
00083
00084 EntityKind entityKind() const;
00085
00086
00087 operator OPENDDS_STRING() const;
00088 #ifdef DDS_HAS_WCHAR
00089 operator std::wstring() const;
00090 #endif
00091
00092 OPENDDS_STRING uniqueId() const;
00093
00094 protected:
00095 const GUID_t guid_;
00096 };
00097
00098 struct OpenDDS_Dcps_Export LogGuid {
00099 explicit LogGuid(const GUID_t& id)
00100 : conv_(GuidConverter(id)) {}
00101 const char* c_str() const { return conv_.c_str(); }
00102 OPENDDS_STRING conv_;
00103 };
00104
00105 #ifndef OPENDDS_SAFETY_PROFILE
00106 OpenDDS_Dcps_Export std::ostream&
00107 operator<<(std::ostream& os, const OpenDDS::DCPS::GuidConverter& rhs);
00108
00109 #ifdef DDS_HAS_WCHAR
00110 OpenDDS_Dcps_Export std::wostream&
00111 operator<<(std::wostream& os, const OpenDDS::DCPS::GuidConverter& rhs);
00112 #endif //DDS_HAS_WCHAR
00113 #endif //OPENDDS_SAFETY_PROFILE
00114
00115 }
00116 }
00117
00118 #endif