43 void initFromUrl(
const std::string& etpUrl,
const std::string& proxyUrl);
46 boost::uuids::uuid identifier;
47 std::string etpServerHost;
48 uint16_t etpServerPort;
49 std::string etpServerUrlPath;
50 std::string proxyHost;
52 std::map<std::string, std::string> additionalHandshakeHeaderFields;
53 std::string additionalCertificates;
54 bool forceTls =
false;
61 uint64_t preferredMaxFrameSize = 4096;
70 uint64_t maxWebSocketMessagePayloadSize = 16000000;
83 const std::string& etpServerUrl,
const std::string& proxyUrl =
"")
85 initFromUrl(etpServerUrl, proxyUrl);
86 identifier = instanceUuid;
99 const std::string& etpServerUrl,
const std::string& proxyUrl =
"")
101 initFromUrl(etpServerUrl, proxyUrl);
102 std::stringstream ss(instanceUuid);
116 const std::string& host, uint16_t port,
const std::string& urlPath =
"") :
117 identifier(instanceUuid), etpServerHost(host), etpServerPort(port), etpServerUrlPath(urlPath)
132 const std::string& host, uint16_t port,
const std::string& urlPath =
"") :
133 etpServerHost(host), etpServerPort(port), etpServerUrlPath(urlPath)
135 std::stringstream ss(instanceUuid);
141 FETPAPI_DLL_IMPORT_OR_EXPORT
void setMaxWebSocketMessagePayloadSize(uint64_t value) { maxWebSocketMessagePayloadSize = value; }
142 FETPAPI_DLL_IMPORT_OR_EXPORT uint64_t getMaxWebSocketMessagePayloadSize()
const {
return maxWebSocketMessagePayloadSize; }
144 FETPAPI_DLL_IMPORT_OR_EXPORT
void setPreferredMaxFrameSize(uint64_t value) { preferredMaxFrameSize = value; }
145 FETPAPI_DLL_IMPORT_OR_EXPORT uint64_t getPreferredMaxFrameSize()
const {
return preferredMaxFrameSize; }
147 FETPAPI_DLL_IMPORT_OR_EXPORT
void setAdditionalHandshakeHeaderFields(
const std::map<std::string, std::string>& extraHandshakeHeaderFields)
148 { this->additionalHandshakeHeaderFields = extraHandshakeHeaderFields; }
149 FETPAPI_DLL_IMPORT_OR_EXPORT
const std::map<std::string, std::string>& getAdditionalHandshakeHeaderFields()
const {
return additionalHandshakeHeaderFields; }
151 FETPAPI_DLL_IMPORT_OR_EXPORT
void setAdditionalCertificates(
const std::string& extraCertificates) { this->additionalCertificates = extraCertificates; }
152 FETPAPI_DLL_IMPORT_OR_EXPORT
const std::string& getAdditionalCertificates()
const {
return additionalCertificates; }
154 FETPAPI_DLL_IMPORT_OR_EXPORT
const boost::uuids::uuid& getInstanceId()
const {
return identifier; }
156 FETPAPI_DLL_IMPORT_OR_EXPORT
const std::string& getEtpServerHost()
const {
return etpServerHost; }
157 FETPAPI_DLL_IMPORT_OR_EXPORT uint16_t getEtpServerPort()
const {
return etpServerPort; }
158 FETPAPI_DLL_IMPORT_OR_EXPORT
const std::string& getEtpServerUrlPath()
const {
return etpServerUrlPath; }
160 FETPAPI_DLL_IMPORT_OR_EXPORT
const std::string& getProxyHost()
const {
return proxyHost; }
161 FETPAPI_DLL_IMPORT_OR_EXPORT uint16_t getProxyPort()
const {
return proxyPort; }
163 FETPAPI_DLL_IMPORT_OR_EXPORT
void setForceTls(
bool force) { forceTls = force; }
164 FETPAPI_DLL_IMPORT_OR_EXPORT
bool isTlsForced()
const {
return forceTls; }
166 FETPAPI_DLL_IMPORT_OR_EXPORT
virtual std::string getApplicationName()
const {
return "F2I-CONSULTING ETP CLIENT"; }
167 FETPAPI_DLL_IMPORT_OR_EXPORT
virtual std::string getApplicationVersion()
const {
return "0.0"; }
169 FETPAPI_DLL_IMPORT_OR_EXPORT std::map<std::string, Energistics::Etp::v12::Datatypes::DataValue> makeEndpointCapabilities()
const;
170 FETPAPI_DLL_IMPORT_OR_EXPORT
virtual std::vector<Energistics::Etp::v12::Datatypes::SupportedDataObject> makeSupportedDataObjects()
const;
171 FETPAPI_DLL_IMPORT_OR_EXPORT
virtual std::vector<Energistics::Etp::v12::Datatypes::SupportedProtocol> makeSupportedProtocols()
const;