dxFeed Graal CXX API v5.0.0
Loading...
Searching...
No Matches
StringUtils.hpp
1// Copyright (c) 2025 Devexperts LLC.
2// SPDX-License-Identifier: MPL-2.0
3
4#pragma once
5
6#include "../Conf.hpp"
7
9
10#include <cstdint>
11#include <iterator>
12#include <locale>
13#include <optional>
14#include <string>
15#include <thread>
16#include <type_traits>
17#include <vector>
18
19#if !defined(_LIBCPP_VERSION)
20# include <charconv>
21#endif
22
24
25/// A lightweight wrapper around strings or string-like inputs.
26/// Stores either a view or an owned string but always exposes a valid view.
27struct StringLike {
28 mutable std::string owned_;
29 mutable std::string_view view_;
30
31 StringLike() = default;
32
33 // ReSharper disable once CppNonExplicitConvertingConstructor
34 StringLike(const char *s) : owned_(s ? s : ""), view_(owned_) {
35 }
36
37 // ReSharper disable once CppNonExplicitConvertingConstructor
38 StringLike(std::string_view sv) : view_(sv) {
39 }
40
41 // ReSharper disable once CppNonExplicitConvertingConstructor
42 StringLike(const std::string &s) : owned_(s), view_(owned_) {
43 }
44
45 // ReSharper disable once CppNonExplicitConvertingConstructor
46 StringLike(std::string &&s) noexcept : owned_(std::move(s)), view_(owned_) {
47 }
48
49 // ReSharper disable once CppNonExplicitConvertingConstructor
50 template <std::size_t N> StringLike(const char (&arr)[N]) : view_(arr, N - 1) {
51 }
52
53 // ReSharper disable once CppNonExplicitConversionOperator
54 operator std::string_view() const noexcept {
55 return view_;
56 }
57
58 // ReSharper disable once CppNonExplicitConversionOperator
59 operator std::string() const {
60 return std::string(view_);
61 }
62
63 const char *data() const noexcept {
64 return view_.data();
65 }
66
67 const char *c_str() const {
68 if (owned_.empty() && !view_.empty()) {
70 view_ = owned_;
71 }
72
73 return owned_.c_str();
74 }
75
76 auto begin() const noexcept {
77 return view_.begin();
78 }
79
80 auto end() const noexcept {
81 return view_.end();
82 }
83
84 auto cbegin() const noexcept {
85 return view_.cbegin();
86 }
87
88 auto cend() const noexcept {
89 return view_.cend();
90 }
91
92 bool empty() const noexcept {
93 return view_.empty();
94 }
95 std::size_t size() const noexcept {
96 return view_.size();
97 }
98 std::size_t length() const noexcept {
99 return view_.size();
100 }
101
102 bool ends_with(const StringLike &other) const noexcept {
103#if __cpp_lib_ends_with >= 201907L
104 return view_.ends_with(other.view_);
105#else
106 const auto sv = other.view_;
107
108 return sv.size() <= view_.size() && view_.compare(view_.size() - sv.size(), sv.size(), sv) == 0;
109#endif
110 }
111
112 std::string substr(std::size_t pos = 0, std::size_t count = std::string::npos) const {
113 const auto sv2 = view_.substr(pos, count);
114
115 return std::string(sv2);
116 }
117
118 bool operator==(const StringLike &other) const noexcept {
119 return view_ == other.view_;
120 }
121
122 friend std::string operator+(const StringLike &a, const StringLike &b) {
124
125 result.reserve(a.size() + b.size());
128
129 return result;
130 }
131
132 explicit operator double() const {
133 double result{};
134#if defined(_LIBCPP_VERSION)
136#else
137 if (auto [ptr, ec] = std::from_chars(view_.data(), view_.data() + view_.size(), result); ec != std::errc{})
138 throw std::invalid_argument("StringLike: cannot convert to double");
139#endif
140 return result;
141 }
142
143 std::string toString() const noexcept {
144 return std::string(view_);
145 }
146
147 std::string_view toStringView() const noexcept {
148 return view_;
149 }
150
151 friend std::ostream &operator<<(std::ostream &os, const StringLike &sl) {
152 return os << sl.view_;
153 }
154
155 // friend std::string_view format_as(const StringLike &sl) {
156 // return sl.view_;
157 // }
158};
159
161
162template <> struct DXFCPP_EXPORT std::hash<dxfcpp::StringLike> {
163 std::size_t operator()(const dxfcpp::StringLike &sl) const noexcept {
164 return std::hash<std::string_view>{}(std::string_view(sl));
165 }
166};
167
169
170/// Universal functional object that allows searching std::unordered_map for string-like keys.
172 using HashType = std::hash<std::string_view>;
173 using is_transparent = void;
174
175 std::size_t operator()(const char *str) const {
176 return HashType{}(str);
177 }
178 std::size_t operator()(std::string_view sv) const {
179 return HashType{}(sv);
180 }
181 std::size_t operator()(const std::string &str) const {
182 return HashType{}(str);
183 }
184 std::size_t operator()(const StringLike &s) const {
185 return HashType{}(s);
186 }
187};
188
189struct DXFCPP_EXPORT String {
190 inline static const std::string EMPTY{};
191 inline static const std::string NUL{"<null>"};
192};
193
194DXFCPP_EXPORT std::string toString(bool b) noexcept; // NOLINT(*-redundant-declaration)
195
196DXFCPP_EXPORT std::string toString(const char *chars) noexcept; // NOLINT(*-redundant-declaration)
197
198DXFCPP_EXPORT std::optional<std::string> toStringOpt(const char *chars) noexcept; // NOLINT(*-redundant-declaration)
199
200DXFCPP_EXPORT std::string toString(std::thread::id theadId); // NOLINT(*-redundant-declaration)
201
202DXFCPP_EXPORT std::string toString(void *ptr); // NOLINT(*-redundant-declaration)
203
204DXFCPP_EXPORT std::string toString(double d); // NOLINT(*-redundant-declaration)
205
206// template <typename T> std::string toStringAny(T &&t);
207
208template <typename T, typename U> std::string toString(const std::pair<T, U> &p) {
209 return "{" + toStringAny(p.first) + ", " + toStringAny(p.second) + "}";
210}
211
212#if __cpp_concepts
213template <typename T> std::string toStringAny(T &&t) {
214 if constexpr (requires { t.toString(); }) {
215 return t.toString();
216 } else if constexpr (requires { t->toString(); }) {
217 return t->toString();
218 } else if constexpr (requires { toString(t); }) {
219 return toString(t);
220 } else if constexpr (requires { std::to_string(t); }) {
221 return std::to_string(t);
222 } else if constexpr (requires { std::string(t); }) {
223 return std::string(t);
224 } else {
225 return "unknown";
226 }
227}
228#else
229namespace to_string_any {
230namespace detail {
231template <typename T, typename = void> struct HasToStringMember : std::false_type {};
232
233template <typename T> struct HasToStringMember<T, decltype(std::declval<T>().toString(), void())> : std::true_type {};
234
235template <typename T, typename = void> struct HasToStringMemberByPointer : std::false_type {};
236
237template <typename T>
238struct HasToStringMemberByPointer<T, decltype(std::declval<T>()->toString(), void())> : std::true_type {};
239
240template <typename T, typename = void> struct HasFreeToString : std::false_type {};
241
242template <typename T> struct HasFreeToString<T, decltype(toString(std::declval<T>()), void())> : std::true_type {};
243
244template <typename T, typename = void> struct HasStdToString : std::false_type {};
245
246template <typename T> struct HasStdToString<T, decltype(std::to_string(std::declval<T>()), void())> : std::true_type {};
247
248template <typename T, typename = void> struct IsConvertibleToString : std::false_type {};
249
250template <typename T>
251struct IsConvertibleToString<T, typename std::enable_if<std::is_convertible<T, std::string>::value>::type>
252 : std::true_type {};
253
254} // namespace detail
255} // namespace to_string_any
256
257template <typename T>
258typename std::enable_if<to_string_any::detail::HasToStringMember<T>::value, std::string>::type toStringAny(T &&t) {
259 return t.toString();
260}
261
262template <typename T>
263typename std::enable_if<to_string_any::detail::HasToStringMemberByPointer<T>::value &&
264 !to_string_any::detail::HasToStringMember<T>::value,
265 std::string>::type
266toStringAny(T &&t) {
267 return t->toString();
268}
269
270template <typename T>
271typename std::enable_if<to_string_any::detail::HasFreeToString<T>::value &&
272 !to_string_any::detail::HasToStringMember<T>::value &&
273 !to_string_any::detail::HasToStringMemberByPointer<T>::value,
274 std::string>::type
275toStringAny(T &&t) {
276 return toString(t);
277}
278
279template <typename T>
280typename std::enable_if<to_string_any::detail::HasStdToString<T>::value &&
281 !to_string_any::detail::HasToStringMember<T>::value &&
282 !to_string_any::detail::HasToStringMemberByPointer<T>::value &&
283 !to_string_any::detail::HasFreeToString<T>::value,
284 std::string>::type
285toStringAny(T &&t) {
286 return std::to_string(t);
287}
288
289template <typename T>
290typename std::enable_if<
291 to_string_any::detail::IsConvertibleToString<T>::value && !to_string_any::detail::HasToStringMember<T>::value &&
292 !to_string_any::detail::HasToStringMemberByPointer<T>::value &&
293 !to_string_any::detail::HasFreeToString<T>::value && !to_string_any::detail::HasStdToString<T>::value,
294 std::string>::type
295toStringAny(T &&t) {
296 return std::string(t);
297}
298
299// Fallback case
300template <typename T>
301typename std::enable_if<!to_string_any::detail::HasToStringMember<T>::value &&
302 !to_string_any::detail::HasToStringMemberByPointer<T>::value &&
303 !to_string_any::detail::HasFreeToString<T>::value &&
304 !to_string_any::detail::HasStdToString<T>::value &&
305 !to_string_any::detail::IsConvertibleToString<T>::value,
306 std::string>::type
307toStringAny(T &&) {
308 return "unknown";
309}
310#endif
311
312/**
313 * Tries to convert UTF16 char to ASCII (part of UTF8) char.
314 *
315 * @param in The UTF16 char
316 * @return ASCII char
317 */
318DXFCPP_EXPORT char utf16to8(std::int16_t in) noexcept; // NOLINT(*-redundant-declaration)
319
320/**
321 * Converts UTF16 char to UTF8 string
322 *
323 * @param in The UTF16 char
324 * @return UTF8 string
325 */
326DXFCPP_EXPORT std::string utf16toUtf8String(std::int16_t in) noexcept; // NOLINT(*-redundant-declaration)
327
328/**
329 * Converts UTF16 string to UTF8 string
330 *
331 * @param in The UTF16 string
332 * @return UTF8 string
333 */
334DXFCPP_EXPORT std::string utf16toUtf8String(const std::u16string &in) noexcept; // NOLINT(*-redundant-declaration)
335
336/**
337 * Converts vector of UTF16 chars to UTF8 string
338 *
339 * @param in The UTF16 string
340 * @return UTF8 string
341 */
342DXFCPP_EXPORT std::string
343utf16toUtf8String(const std::vector<std::int16_t> &in) noexcept; // NOLINT(*-redundant-declaration)
344
345/**
346 * Tries to convert ASCII (part of UTF8) char to UTF16 char.
347 *
348 * @param in The ASCII char
349 * @return The UTF16 char
350 */
351DXFCPP_EXPORT std::int16_t utf8to16(char in) noexcept; // NOLINT(*-redundant-declaration)
352
353DXFCPP_EXPORT std::string formatTimeStamp(std::int64_t timestamp); // NOLINT(*-redundant-declaration)
354
355DXFCPP_EXPORT std::string formatTimeStampWithTimeZone(std::int64_t timestamp); // NOLINT(*-redundant-declaration)
356
357DXFCPP_EXPORT std::string formatTimeStampFast(std::int64_t timestamp); // NOLINT(*-redundant-declaration)
358
359DXFCPP_EXPORT std::string formatTimeStampWithMillis(std::int64_t timestamp); // NOLINT(*-redundant-declaration)
360
361DXFCPP_EXPORT std::string
362formatTimeStampWithMillisWithTimeZone(std::int64_t timestamp); // NOLINT(*-redundant-declaration)
363
364DXFCPP_EXPORT char *createCString(const StringLike &s); // NOLINT(*-redundant-declaration)
365
366template <typename S> char *createCString(const std::optional<S> &s) {
367 if (!s) {
368 return nullptr;
369 }
370
371 return createCString(s.value());
372}
373
374template <typename It>
375 requires requires { std::is_same_v<std::decay_t<decltype(It {} -> getName())>, std::string>; }
376std::string namesToString(It begin, It end) {
377 std::string result{"["};
378
379 for (auto it = begin; it != end; ++it) {
380 result += String::EMPTY + "'" + it->getName() + "'" + (std::next(it) == end ? "" : ", ");
381 }
382
383 return result + "]";
384}
385
386template <typename It>
387 requires requires { std::is_same_v<std::decay_t<decltype(It {} -> get().getName())>, std::string>; }
388std::string namesToString(It begin, It end) {
389 std::string result{"["};
390
391 for (auto it = begin; it != end; ++it) {
392 result += String::EMPTY + "'" + it->get().getName() + "'" + (std::next(it) == end ? "" : ", ");
393 }
394
395 return result + "]";
396}
397
398template <typename It>
399std::string elementsToString(It begin, It end, const std::string &prefix = "[", const std::string &postfix = "[",
400 const std::string &separator = ", ") {
401 std::string result{prefix};
402
403 for (auto it = begin; it != end; ++it) {
404 result += String::EMPTY + toStringAny(*it) + (std::next(it) == end ? "" : separator);
405 }
406
407 return result + postfix;
408}
409
410DXFCPP_EXPORT std::string encodeChar(std::int16_t c); // NOLINT(*-redundant-declaration)
411
412inline std::string encodeChar(char c) {
413 return encodeChar(static_cast<std::int16_t>(static_cast<unsigned char>(c)));
414}
415
416namespace detail {
417
418class IsIEqual {
419 std::locale locale_;
420
421 public:
422 explicit IsIEqual(const std::locale &locale = std::locale()) : locale_{locale} {
423 }
424
425 template <typename T, typename U> bool operator()(const T &t, const U &u) const {
426 return std::tolower<T>(t, locale_) == std::tolower<U>(u, locale_);
427 }
428};
429
430} // namespace detail
431
432template <typename Range1, typename Range2, typename Predicate>
433bool equals(const Range1 &first, const Range2 &second, Predicate cmp) {
434 auto firstIt = std::begin(first);
435 auto secondIt = std::begin(second);
436
437 for (; firstIt != std::end(first) && secondIt != std::end(second); ++firstIt, ++secondIt) {
438 if (!cmp(*firstIt, *secondIt)) {
439 return false;
440 }
441 }
442
443 return (secondIt == std::end(second)) && (firstIt == std::end(first));
444}
445
446DXFCPP_EXPORT inline bool iEquals(const StringLike &first, const StringLike &second) noexcept {
447 const auto &locale = std::locale();
448
449 return equals(first, second, detail::IsIEqual(locale));
450}
451
452DXFCPP_EXPORT inline std::size_t icHash(const StringLike &s) noexcept {
453 const auto &locale = std::locale();
454 std::string result{};
455
456 for (auto c : s) {
457 result += std::tolower(c, locale);
458 }
459
460 return std::hash<std::string>()(result);
461}
462
463DXFCPP_EXPORT std::string trimStr(const StringLike &s) noexcept; // NOLINT(*-redundant-declaration)
464
465DXFCPP_EXPORT std::vector<std::string> splitStr(const StringLike &s, char sep = ',') noexcept;
466
467DXFCPP_EXPORT std::string joinStr(const std::vector<StringLike> &v, const StringLike &sep = ", ") noexcept;
468
469DXFCPP_EXPORT bool toBool(const StringLike &s) noexcept; // NOLINT(*-redundant-declaration)
470
472
#define DXFCPP_MACRO_CONCAT_INNER(a, b)
Definition Common.hpp:129
#define DXFCPP_MACRO_CONCAT(a, b)
Definition Common.hpp:128
#define DXFCPP_MACRO_UNIQUE_NAME(base)
Definition Common.hpp:130
#define DXFCXX_DISABLE_MSC_WARNINGS_POP()
Definition Conf.hpp:31
#define DXFCPP_END_NAMESPACE
Definition Conf.hpp:97
#define DXFCPP_BEGIN_NAMESPACE
Definition Conf.hpp:94
#define DXFCXX_DISABLE_GCC_WARNINGS_PUSH(warnings)
Definition Conf.hpp:47
#define DXFCXX_DISABLE_GCC_WARNINGS_POP()
Definition Conf.hpp:49
#define DXFCXX_DISABLE_MSC_WARNINGS_PUSH(warnings)
Definition Conf.hpp:30
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_name(dxfc_dxendpoint_builder_t builderHandle, const char *name)
Changes the name used to distinguish multiple endpoints in the same process (GraalVM Isolate) in logs...
Definition DXEndpoint.cpp:680
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_properties(dxfc_dxendpoint_builder_t builder, const dxfc_dxendpoint_property_t **properties, size_t size)
Sets all supported properties from the provided properties object.
Definition DXEndpoint.cpp:713
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_password(dxfc_dxendpoint_t endpoint, const char *password)
Changes password for this endpoint.
Definition DXEndpoint.cpp:961
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_publisher(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxpublisher_t *publisher)
Definition DXEndpoint.cpp:1151
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_supports_property(dxfc_dxendpoint_builder_t builder, const char *key, DXFC_OUT int *supports)
Checks if a property is supported.
Definition DXEndpoint.cpp:740
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_add_state_change_listener(dxfc_dxendpoint_t endpoint, dxfc_dxendpoint_state_change_listener listener)
Adds a listener notified about changes in state property.
Definition DXEndpoint.cpp:1097
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_disconnect(dxfc_dxendpoint_t endpoint)
Terminates all remote network connections.
Definition DXEndpoint.cpp:1012
#define DXFCPP_EXPORT
Definition api.h:35
void * dxfc_dxendpoint_builder_t
The dxFeed endpoint's builder handle.
Definition api.h:207
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_close_and_await_termination(dxfc_dxendpoint_t endpoint)
Closes this endpoint and wait until all pending data processing tasks are completed.
Definition DXEndpoint.cpp:910
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_await_not_connected(dxfc_dxendpoint_t endpoint)
Waits while this endpoint state becomes NOT_CONNECTED or CLOSED.
Definition DXEndpoint.cpp:1063
dxfc_dxendpoint_state_t
Represents the current state of endpoint.
Definition api.h:149
@ DXFC_DXENDPOINT_STATE_CLOSED
Endpoint was closed.
Definition api.h:169
@ DXFC_DXENDPOINT_STATE_NOT_CONNECTED
Endpoint was created by is not connected to remote endpoints.
Definition api.h:153
@ DXFC_DXENDPOINT_STATE_CONNECTING
The connect function was called to establish connection to remove endpoint, but the connection is not...
Definition api.h:159
@ DXFC_DXENDPOINT_STATE_CONNECTED
The connection to the remote endpoint is established.
Definition api.h:164
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_instance(void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Returns a default application-wide singleton instance of dxFeed endpoint with a FEED role.
Definition DXEndpoint.cpp:799
#define DXFC_OUT
Definition api.h:17
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_state(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxendpoint_state_t *state)
Returns the state of this endpoint.
Definition DXEndpoint.cpp:1080
void * dxfc_dxendpoint_t
The dxFeed endpoint handle.
Definition api.h:198
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_property(dxfc_dxendpoint_builder_t builder, const char *key, const char *value)
Sets the specified property.
Definition DXEndpoint.cpp:696
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_free(dxfc_dxendpoint_builder_t builder)
Removes a builder from the registry.
Definition DXEndpoint.cpp:787
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_connect(dxfc_dxendpoint_t endpoint, const char *address)
Connects to the specified remote address.
Definition DXEndpoint.cpp:978
dxfc_error_code_t
List of error codes.
Definition api.h:49
@ DXFC_EC_ERROR
The error returned if the current operation cannot be completed.
Definition api.h:60
@ DXFC_EC_SUCCESS
OK.
Definition api.h:53
@ DXFC_EC_G_ERR
dxFeed Graal Native API error.
Definition api.h:57
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_remove_state_change_listener(dxfc_dxendpoint_t endpoint, dxfc_dxendpoint_state_change_listener listener)
Removes a listener notified about changes in state property.
Definition DXEndpoint.cpp:1123
DXFCPP_EXPORT dxfc_error_code_t dxfc_system_set_property(const char *key, const char *value)
Sets the system property indicated by the specified key.
Definition System.cpp:73
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_build(dxfc_dxendpoint_builder_t builder, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Builds the new dxFeed endpoint instance.
Definition DXEndpoint.cpp:757
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_feed(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxfeed_t *feed)
Definition DXEndpoint.cpp:1146
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_await_processed(dxfc_dxendpoint_t endpoint)
Waits until this endpoint stops processing data (becomes quiescent).
Definition DXEndpoint.cpp:1046
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_close(dxfc_dxendpoint_t endpoint)
Closes this endpoint.
Definition DXEndpoint.cpp:893
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_new_builder(DXFC_OUT dxfc_dxendpoint_builder_t *builder)
Creates a new dxFeed endpoint's builder instance.
Definition DXEndpoint.cpp:647
void(* dxfc_dxendpoint_state_change_listener)(dxfc_dxendpoint_state_t old_state, dxfc_dxendpoint_state_t new_state, void *user_data)
The endpoint current state change listener.
Definition api.h:178
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_reconnect(dxfc_dxendpoint_t endpoint)
Terminates all established network connections and initiates connecting again with the same address.
Definition DXEndpoint.cpp:995
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_role(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxendpoint_role_t *role)
Returns the role of this endpoint.
Definition DXEndpoint.cpp:927
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_user(dxfc_dxendpoint_t endpoint, const char *user)
Changes username for this endpoint.
Definition DXEndpoint.cpp:944
DXFCPP_EXPORT dxfc_error_code_t dxfc_system_get_property(const char *key, DXFC_OUT char *buffer, size_t buffer_size)
Gets the system property indicated by the specified key.
dxfc_dxendpoint_role_t
Represents the role of an endpoint that was specified during its creation.
Definition api.h:89
@ DXFC_DXENDPOINT_ROLE_PUBLISHER
PUBLISHER endpoint connects to the remote publisher hub (also known as multiplexor) or creates a publ...
Definition api.h:127
@ DXFC_DXENDPOINT_ROLE_STREAM_FEED
STREAM_FEED endpoint is similar to DXFC_DXENDPOINT_ROLE_FEED and also connects to the remote data fee...
Definition api.h:116
@ DXFC_DXENDPOINT_ROLE_FEED
FEED endpoint connects to the remote data feed provider and is optimized for real-time or delayed dat...
Definition api.h:99
@ DXFC_DXENDPOINT_ROLE_STREAM_PUBLISHER
STREAM_PUBLISHER endpoint is similar to DXFC_DXENDPOINT_ROLE_PUBLISHER and also connects to the remot...
Definition api.h:136
@ DXFC_DXENDPOINT_ROLE_LOCAL_HUB
LOCAL_HUB endpoint is a local hub without the ability to establish network connections.
Definition api.h:143
@ DXFC_DXENDPOINT_ROLE_ON_DEMAND_FEED
ON_DEMAND_FEED endpoint is similar to DXFC_DXENDPOINT_ROLE_FEED, but it is designed to be used with d...
Definition api.h:107
void * dxfc_dxpublisher_t
The dxFeed publisher handle.
Definition api.h:217
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_create(void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Creates an endpoint with FEED role.
Definition DXEndpoint.cpp:846
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_instance2(dxfc_dxendpoint_role_t role, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Returns a default application-wide singleton instance of DXEndpoint for a specific role.
Definition DXEndpoint.cpp:822
void * dxfc_dxfeed_t
The dxFeed handle.
Definition api.h:212
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_role(dxfc_dxendpoint_builder_t builder, dxfc_dxendpoint_role_t role)
Sets role for the created dxFeed endpoint.
Definition DXEndpoint.cpp:663
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_create2(dxfc_dxendpoint_role_t role, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Creates an endpoint with a specified role.
Definition DXEndpoint.cpp:869
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_free(dxfc_dxendpoint_t endpoint)
Removes the dxFeed endpoint from the registry.
Definition DXEndpoint.cpp:1156
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_disconnect_and_clear(dxfc_dxendpoint_t endpoint)
Terminates all remote network connections and clears stored data.
Definition DXEndpoint.cpp:1029
Builder class for DXEndpoint that supports additional configuration properties.
Definition DXEndpoint.hpp:842
std::shared_ptr< DXEndpoint > build()
Builds DXEndpoint instance.
Definition DXEndpoint.cpp:323
std::shared_ptr< Builder > withName(const StringLike &name)
Changes the name used to distinguish multiple endpoints in the same process (GraalVM Isolate) in logs...
Definition DXEndpoint.cpp:366
bool supportsProperty(const StringLike &key) const
Checks if a property is supported.
Definition DXEndpoint.cpp:313
std::shared_ptr< Builder > withProperties(Properties &&properties)
Sets all supported properties from the provided properties object.
Definition DXEndpoint.hpp:931
~Builder() noexcept override
Releases the GraalVM handle.
Definition DXEndpoint.cpp:355
std::shared_ptr< Builder > withRole(Role role)
Sets role for the created DXEndpoint.
Definition DXEndpoint.cpp:285
std::shared_ptr< Builder > withProperty(const StringLike &key, const StringLike &value)
Sets the specified property.
Definition DXEndpoint.cpp:298
Manages network connections to feed or publisher.
Definition DXEndpoint.hpp:172
bool isClosed() const
Definition DXEndpoint.cpp:499
SimpleHandler< void(DXEndpoint::State, DXEndpoint::State)> & onStateChange() noexcept
Returns the onStateChange handler that can be used to add or remove listeners.
Definition DXEndpoint.cpp:511
static const std::string DXFEED_PASSWORD_PROPERTY
"dxfeed.password"
Definition DXEndpoint.hpp:238
static std::shared_ptr< DXEndpoint > create(Role role)
Creates an endpoint with a specified role.
Definition DXEndpoint.cpp:486
std::shared_ptr< DXFeed > getFeed() const
Definition DXEndpoint.cpp:212
std::shared_ptr< DXEndpoint > password(const StringLike &password)
Changes password for this endpoint.
Definition DXEndpoint.cpp:139
State
Represents the current state of endpoint.
Definition DXEndpoint.hpp:436
@ CLOSED
Endpoint was closed.
Definition DXEndpoint.hpp:456
@ CONNECTING
The connect method was called to establish connection to remove endpoint, but the connection is not e...
Definition DXEndpoint.hpp:446
@ CONNECTED
The connection to the remote endpoint is established.
Definition DXEndpoint.hpp:451
@ NOT_CONNECTED
Endpoint was created by is not connected to remote endpoints.
Definition DXEndpoint.hpp:440
std::shared_ptr< DXEndpoint > user(const StringLike &user)
Changes username for this endpoint.
Definition DXEndpoint.cpp:132
void reconnect() const
Terminates all established network connections and initiates connecting again with the same address.
Definition DXEndpoint.cpp:158
static std::shared_ptr< DXEndpoint > create()
Creates an endpoint with FEED role.
Definition DXEndpoint.cpp:477
void removeStateChangeListener(std::size_t listenerId) noexcept
Removes a listener notified about changes in state property.
Definition DXEndpoint.cpp:507
const std::string & getName() const &noexcept
Definition DXEndpoint.cpp:503
Role
Represents the role of an endpoint that was specified during its creation.
Definition DXEndpoint.hpp:365
@ PUBLISHER
PUBLISHER endpoint connects to the remote publisher hub (also known as multiplexor) or creates a publ...
Definition DXEndpoint.hpp:410
@ STREAM_FEED
STREAM_FEED endpoint is similar to DXEndpoint::FEED and also connects to the remote data feed provide...
Definition DXEndpoint.hpp:398
@ LOCAL_HUB
LOCAL_HUB endpoint is a local hub without the ability to establish network connections.
Definition DXEndpoint.hpp:426
@ ON_DEMAND_FEED
ON_DEMAND_FEED endpoint is similar to DXEndpoint::FEED, but it is designed to be used with OnDemandSe...
Definition DXEndpoint.hpp:389
@ STREAM_PUBLISHER
STREAM_PUBLISHER endpoint is similar to DXEndpoint::PUBLISHER and also connects to the remote publish...
Definition DXEndpoint.hpp:419
@ FEED
FEED endpoint connects to the remote data feed provider and is optimized for real-time or delayed dat...
Definition DXEndpoint.hpp:376
std::string toString() const override
Returns a string representation of the current object.
Definition DXEndpoint.cpp:376
void awaitProcessed() const
Waits until this endpoint stops processing data (becomes quiescent).
Definition DXEndpoint.cpp:194
std::shared_ptr< DXPublisher > getPublisher() const
Definition DXEndpoint.cpp:221
static const std::string DXFEED_WILDCARD_ENABLE_PROPERTY
"dxfeed.wildcard.enable"
Definition DXEndpoint.hpp:266
std::size_t addStateChangeListener(std::function< void(State, State)> listener) noexcept
Adds a listener notified about changes in state property.
Definition DXEndpoint.hpp:611
static const std::string DXENDPOINT_EVENT_TIME_PROPERTY
"dxendpoint.eventTime"
Definition DXEndpoint.hpp:311
static const std::string DXPUBLISHER_THREAD_POOL_SIZE_PROPERTY
"dxpublisher.threadPoolSize"
Definition DXEndpoint.hpp:294
State getState() const
Returns the state of this endpoint.
Definition DXEndpoint.cpp:128
static const std::string DXENDPOINT_STORE_EVERYTHING_PROPERTY
"dxendpoint.storeEverything"
Definition DXEndpoint.hpp:324
void awaitNotConnected() const
Waits while this endpoint state becomes NOT_CONNECTED or CLOSED.
Definition DXEndpoint.cpp:185
static std::shared_ptr< DXEndpoint > getInstance(Role role)
Returns a default application-wide singleton instance of DXEndpoint for a specific role.
Definition DXEndpoint.cpp:459
static const std::string DXFEED_AGGREGATION_PERIOD_PROPERTY
"dxfeed.aggregationPeriod"
Definition DXEndpoint.hpp:257
void close() const
Closes this endpoint.
Definition DXEndpoint.cpp:515
static const std::string DXFEED_THREAD_POOL_SIZE_PROPERTY
"dxfeed.threadPoolSize"
Definition DXEndpoint.hpp:247
void disconnect() const
Terminates all remote network connections.
Definition DXEndpoint.cpp:167
void closeAndAwaitTermination() const
Closes this endpoint and wait until all pending data processing tasks are completed.
Definition DXEndpoint.cpp:203
static std::shared_ptr< DXEndpoint > getInstance()
Returns a default application-wide singleton instance of DXEndpoint with a FEED role.
Definition DXEndpoint.cpp:450
static const std::string DXPUBLISHER_ADDRESS_PROPERTY
"dxpublisher.address"
Definition DXEndpoint.hpp:285
static const std::string DXFEED_USER_PROPERTY
"dxfeed.user"
Definition DXEndpoint.hpp:228
static const std::string NAME_PROPERTY
"name"
Definition DXEndpoint.hpp:189
static const std::string DXSCHEME_ENABLED_PROPERTY_PREFIX
"dxscheme.enabled."
Definition DXEndpoint.hpp:358
static const std::string DXPUBLISHER_PROPERTIES_PROPERTY
"dxpublisher.properties"
Definition DXEndpoint.hpp:275
static const std::string DXSCHEME_NANO_TIME_PROPERTY
"dxscheme.nanoTime"
Definition DXEndpoint.hpp:344
static const std::string DXFEED_ADDRESS_PROPERTY
"dxfeed.address"
Definition DXEndpoint.hpp:218
void disconnectAndClear() const
Terminates all remote network connections and clears stored data.
Definition DXEndpoint.cpp:176
Role getRole() const noexcept
Returns the role of this endpoint.
Definition DXEndpoint.cpp:495
static const std::string DXFEED_PROPERTIES_PROPERTY
"dxfeed.properties"
Definition DXEndpoint.hpp:200
static std::shared_ptr< Builder > newBuilder()
Creates a new Builder instance.
Definition DXEndpoint.cpp:468
std::shared_ptr< DXEndpoint > connect(const StringLike &address)
Connects to the specified remote address.
Definition DXEndpoint.cpp:146
Main entry class for dxFeed API (read it first).
Definition DXFeed.hpp:115
Provides API for publishing of events to local or remote DXFeed.
Definition DXPublisher.hpp:56
Base abstract class for all dxFeed C++ API entities.
Definition Entity.hpp:13
Marks all event types that can be received via dxFeed API.
Definition EventType.hpp:31
Provides on-demand historical tick data replay controls.
Definition OnDemandService.hpp:71
A helper class needed to construct smart pointers to objects and does not allow explicit construction...
Definition SharedEntity.hpp:88
static auto createShared(Args &&...args)
Creates a smart pointer to an object.
Definition SharedEntity.hpp:102
A base abstract "shared entity" class. Has some helpers for dynamic polymorphism.
Definition SharedEntity.hpp:20
virtual std::string toString() const
Returns a string representation of the current object.
Definition SharedEntity.hpp:77
std::shared_ptr< T > sharedAs() const noexcept
Returns a pointer to the current object wrapped in a smart pointer to type T.
Definition SharedEntity.hpp:68
std::shared_ptr< T > sharedAs() noexcept
Returns a pointer to the current object wrapped in a smart pointer to type T.
Definition SharedEntity.hpp:55
bool is() const noexcept
Checks that the pointer to the current type could be converted to type T* In other words: whether typ...
Definition SharedEntity.hpp:34
Universal functional object that allows searching std::unordered_map for string-like keys.
Definition Common.hpp:959
Universal functional object that allows searching std::unordered_map for string-like keys.
Definition StringUtils.hpp:171
A simple wrapper around strings or something similar to strings to reduce the amount of code for meth...
Definition Common.hpp:842
A lightweight wrapper around strings or string-like inputs.
Definition StringUtils.hpp:27
The simple key-value structure that represents an endpoint's property.
Definition api.h:184
const char * key
The property's key.
Definition api.h:186
const char * value
The property's value.
Definition api.h:188