FETPAPI 0.3.0.0
This project provides C++ classes which facilitate the developement of ETP1.2 clients and servers.
All Classes Namespaces Functions Variables Pages
InitializationParameters.h
1/*-----------------------------------------------------------------------
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"; you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-----------------------------------------------------------------------*/
19#pragma once
20
21#include <boost/uuid/uuid_io.hpp>
22
23#include "../nsDefinitions.h"
24#include "EtpMessages.h"
25
26#if defined(_WIN32) && !defined(FETPAPI_STATIC)
27#ifndef FETPAPI_DLL_IMPORT_OR_EXPORT
28#if defined(Fetpapi_EXPORTS)
29#define FETPAPI_DLL_IMPORT_OR_EXPORT __declspec(dllexport)
30#else
31#define FETPAPI_DLL_IMPORT_OR_EXPORT __declspec(dllimport)
32#endif
33#endif
34#else
35#define FETPAPI_DLL_IMPORT_OR_EXPORT
36#endif
37
38namespace ETP_NS
39{
41 {
42 private:
43 void initFromUrl(const std::string& etpUrl, const std::string& proxyUrl);
44
45 protected:
46 boost::uuids::uuid identifier;
47 std::string etpServerHost;
48 uint16_t etpServerPort;
49 std::string etpServerUrlPath;
50 std::string proxyHost;
51 uint16_t proxyPort;
52 std::map<std::string, std::string> additionalHandshakeHeaderFields;
53 std::string additionalCertificates;
54 bool forceTls = false;
55
61 uint64_t preferredMaxFrameSize = 4096;
62
70 uint64_t maxWebSocketMessagePayloadSize = 16000000;
71
72 public:
73
82 FETPAPI_DLL_IMPORT_OR_EXPORT InitializationParameters(boost::uuids::uuid instanceUuid,
83 const std::string& etpServerUrl, const std::string& proxyUrl = "")
84 {
85 initFromUrl(etpServerUrl, proxyUrl);
86 identifier = instanceUuid;
87 }
88
98 FETPAPI_DLL_IMPORT_OR_EXPORT InitializationParameters(const std::string& instanceUuid,
99 const std::string& etpServerUrl, const std::string& proxyUrl = "")
100 {
101 initFromUrl(etpServerUrl, proxyUrl);
102 std::stringstream ss(instanceUuid);
103 ss >> identifier;
104 }
105
115 InitializationParameters(boost::uuids::uuid instanceUuid,
116 const std::string& host, uint16_t port, const std::string& urlPath = "") :
117 identifier(instanceUuid), etpServerHost(host), etpServerPort(port), etpServerUrlPath(urlPath)
118 {}
119
131 InitializationParameters(const std::string & instanceUuid,
132 const std::string& host, uint16_t port, const std::string& urlPath = "") :
133 etpServerHost(host), etpServerPort(port), etpServerUrlPath(urlPath)
134 {
135 std::stringstream ss(instanceUuid);
136 ss >> identifier;
137 }
138
139 virtual ~InitializationParameters() = default;
140
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; }
143
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; }
146
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; }
150
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; }
153
154 FETPAPI_DLL_IMPORT_OR_EXPORT const boost::uuids::uuid& getInstanceId() const { return identifier; }
155
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; }
159
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; }
162
163 FETPAPI_DLL_IMPORT_OR_EXPORT void setForceTls(bool force) { forceTls = force; }
164 FETPAPI_DLL_IMPORT_OR_EXPORT bool isTlsForced() const { return forceTls; }
165
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"; }
168
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;
172
176 FETPAPI_DLL_IMPORT_OR_EXPORT virtual void postSessionCreationOperation(class AbstractSession* session) const;
177 };
178}
Definition AbstractSession.h:51
Definition InitializationParameters.h:41
FETPAPI_DLL_IMPORT_OR_EXPORT InitializationParameters(boost::uuids::uuid instanceUuid, const std::string &etpServerUrl, const std::string &proxyUrl="")
Definition InitializationParameters.h:82
InitializationParameters(const std::string &instanceUuid, const std::string &host, uint16_t port, const std::string &urlPath="")
Definition InitializationParameters.h:131
FETPAPI_DLL_IMPORT_OR_EXPORT InitializationParameters(const std::string &instanceUuid, const std::string &etpServerUrl, const std::string &proxyUrl="")
Definition InitializationParameters.h:98
InitializationParameters(boost::uuids::uuid instanceUuid, const std::string &host, uint16_t port, const std::string &urlPath="")
Definition InitializationParameters.h:115
virtual FETPAPI_DLL_IMPORT_OR_EXPORT void postSessionCreationOperation(class AbstractSession *session) const