@@ -49,47 +49,63 @@ namespace mtconnect::source::adapter::shdr {
49
49
GetOptions (block, m_options, options);
50
50
AddOptions (block, m_options,
51
51
{{configuration::Heartbeat, Milliseconds {0 }},
52
- {configuration::UUID, string ()},
53
- {configuration::Manufacturer, string ()},
54
- {configuration::Station, string ()},
55
- {configuration::Url, string ()}});
56
-
52
+ {configuration::UUID, string ()},
53
+ {configuration::Manufacturer, string ()},
54
+ {configuration::AdapterIdentity, string ()},
55
+ {configuration::Station, string ()},
56
+ {configuration::Url, string ()}});
57
+
57
58
m_options.erase (configuration::Host);
58
59
m_options.erase (configuration::Port);
59
60
m_heartbeatOverride = GetOption<Milliseconds>(m_options, configuration::Heartbeat);
60
-
61
+
61
62
AddDefaultedOptions (block, m_options,
62
63
{{configuration::Host, " localhost" s},
63
- {configuration::Port, 7878 },
64
- {configuration::AutoAvailable, false },
65
- {configuration::RealTime, false },
66
- {configuration::RelativeTime, false },
67
- {configuration::EnableSourceDeviceModels, false }});
68
-
64
+ {configuration::Port, 7878 },
65
+ {configuration::AutoAvailable, false },
66
+ {configuration::RealTime, false },
67
+ {configuration::RelativeTime, false },
68
+ {configuration::SuppressIPAddress, false },
69
+ {configuration::EnableSourceDeviceModels, false }});
70
+
69
71
m_server = get<string>(m_options[configuration::Host]);
70
72
m_port = get<int >(m_options[configuration::Port]);
71
-
73
+
72
74
auto timeout = m_options.find (configuration::LegacyTimeout);
73
75
if (timeout != m_options.end ())
74
76
m_legacyTimeout = get<Seconds>(timeout->second );
75
-
77
+
76
78
stringstream url;
77
79
url << " shdr://" << m_server << ' :' << m_port;
78
80
m_name = url.str ();
79
-
81
+
80
82
stringstream identity;
81
83
identity << ' _' << m_server << ' _' << m_port;
82
- m_name = identity.str ();
83
- boost::uuids::detail::sha1 sha1;
84
- sha1.process_bytes (identity.str ().c_str (), identity.str ().length ());
85
- boost::uuids::detail::sha1::digest_type digest;
86
- sha1.get_digest (digest);
87
-
88
- identity.str (" " );
89
- identity << std::hex << digest[0 ] << digest[1 ] << digest[2 ];
90
- m_identity = string (" _" ) + (identity.str ()).substr (0 , 10 );
91
-
92
- m_options[configuration::AdapterIdentity] = m_identity;
84
+
85
+ if (auto ident = GetOption<string>(m_options , configuration::AdapterIdentity))
86
+ {
87
+ m_identity = *ident;
88
+ }
89
+ else
90
+ {
91
+ if (IsOptionSet (m_options, configuration::SuppressIPAddress))
92
+ {
93
+ boost::uuids::detail::sha1 sha1;
94
+ sha1.process_bytes (identity.str ().c_str (), identity.str ().length ());
95
+ boost::uuids::detail::sha1::digest_type digest;
96
+ sha1.get_digest (digest);
97
+
98
+ identity.str (" " );
99
+ identity << std::hex << digest[0 ] << digest[1 ] << digest[2 ];
100
+ m_identity = string (" _" ) + (identity.str ()).substr (0 , 10 );
101
+ }
102
+ else
103
+ {
104
+ m_identity = identity.str ();
105
+ }
106
+ m_options[configuration::AdapterIdentity] = m_identity;
107
+ }
108
+
93
109
m_handler = m_pipeline.makeHandler ();
94
110
if (m_pipeline.hasContract ())
95
111
m_pipeline.build (m_options);
0 commit comments