dxFeed Graal CXX API v5.0.0
Loading...
Searching...
No Matches
Common.hpp
1// Copyright (c) 2025 Devexperts LLC.
2// SPDX-License-Identifier: MPL-2.0
3
4#pragma once
5
6#include "./Conf.hpp"
7
8#include "./utils/StringUtils.hpp"
9
11
12#ifdef __cpp_lib_bit_cast
13# include <bit>
14#endif
15#include <climits>
16#include <cstring>
17
18#include <charconv>
19#include <chrono>
20#include <cmath>
21#include <string>
22#include <type_traits>
23#include <utility>
24#include <variant>
25
26#include "utils/debug/Debug.hpp"
27
29
30namespace detail {
31template <typename, template <class...> class> struct IsInstanceImpl : std::false_type {};
32
33template <template <class...> class C, typename... Ts> struct IsInstanceImpl<C<Ts...>, C> : std::true_type {};
34} // namespace detail
35
36template <typename T, template <class...> class C> constexpr bool isInstanceOf = detail::IsInstanceImpl<T, C>::value;
37template <typename T, template <class...> class C>
38concept InstanceOf = isInstanceOf<T, C>;
39
40template <typename T>
41concept Integral = std::is_integral_v<T>;
42
43template <typename T>
44concept EnumConcept = std::is_enum_v<T>;
45
46template <class From, class To>
47concept ConvertibleTo = std::is_convertible_v<From, To> && requires { static_cast<To>(std::declval<From>()); };
48
49template <class T, class U>
50concept Derived = std::is_base_of_v<U, T>;
51
52template <class T, class U>
53concept Extends = Derived<T, U>;
54
55template <class T, class U>
56concept BaseOf = Derived<U, T>;
57
58template <typename T>
59concept PairLike = requires(T t) {
60 t.first;
61 t.second;
62};
63
64template <typename T>
65concept MapLike = requires(T t) {
66 { std::begin(t) } -> std::input_iterator;
67 { std::end(t) } -> std::sentinel_for<decltype(std::begin(t))>;
68} && PairLike<std::remove_cvref_t<decltype(*std::begin(std::declval<T &>()))>>;
69
70namespace detail {
71template <typename T>
72struct RemoveAllPointers
73 : std::conditional_t<std::is_pointer_v<T>, RemoveAllPointers<std::remove_pointer_t<T>>, std::type_identity<T>> {};
74} // namespace detail
75
76template <typename T> using RemoveAllPointers = typename detail::RemoveAllPointers<T>::type;
77
78template <class... Ts> struct Overloads : Ts... {
79 using Ts::operator()...;
80};
81
82template <class... Ts> Overloads(Ts...) -> Overloads<Ts...>;
83
84struct DXFeedEventListener {};
85
86struct DXEndpointStateChangeListener {};
87
88struct IpfPropertyChangeListener {};
89
90struct InstrumentProfileUpdateListener {};
91
92template <typename... T> constexpr void ignoreUnused(const T &...) {
93}
94
95constexpr inline auto is_constant_evaluated(bool default_value = false) noexcept -> bool {
96#ifdef __cpp_lib_is_constant_evaluated
97 ignoreUnused(default_value);
98 return std::is_constant_evaluated();
99#else
100 return default_value;
101#endif
102}
103
104// Implementation of std::bit_cast for pre-C++20.
105template <typename To, typename From>
106constexpr To bit_cast(const From &from)
107#if __cpp_concepts
108 requires(sizeof(To) == sizeof(From))
109#endif
110{
111#ifdef __cpp_lib_bit_cast
112 if (is_constant_evaluated())
113 return std::bit_cast<To>(from);
114#endif
115 auto to = To();
116 // The cast suppresses a bogus -Wclass-memaccess on GCC.
117 std::memcpy(static_cast<void *>(&to), &from, sizeof(to));
118 return to;
119}
120
121/// Lightweight implementation of "nullable bool"
122enum class Tristate : std::uint8_t {
123 FALSE = 0,
124 TRUE = 1,
125 NONE = 2,
126};
127
128#define DXFCPP_MACRO_CONCAT(a, b) DXFCPP_MACRO_CONCAT_INNER(a, b)
129#define DXFCPP_MACRO_CONCAT_INNER(a, b) a##b
130#define DXFCPP_MACRO_UNIQUE_NAME(base) DXFCPP_MACRO_CONCAT(base, __LINE__)
131
132namespace detail {
133template <typename Func> struct OnScopeExit {
134 Func func;
135
136 // ReSharper disable once CppNonExplicitConvertingConstructor
137 OnScopeExit(const Func &f) : func(static_cast<Func &&>(f)) { // NOLINT(*-explicit-constructor)
138 }
139
140 // ReSharper disable once CppNonExplicitConvertingConstructor
141 OnScopeExit(Func &&f) : func(f) { // NOLINT(*-explicit-constructor)
142 }
143
144 OnScopeExit(const OnScopeExit &) = delete;
145
146 ~OnScopeExit() {
147 func();
148 }
149};
150} // namespace detail
151
152#define DXFCPP_FINALLY(...) detail::OnScopeExit DXFCPP_MACRO_UNIQUE_NAME(ose__) = __VA_ARGS__
153
154template <typename GraalList, typename ElementWrapper> struct GraalListUtils {
155 static std::ptrdiff_t calculateSize(std::ptrdiff_t initSize) noexcept {
156 using ListType = GraalList;
157 using SizeType = decltype(ListType::size);
158
159 if (initSize < 0) {
160 return 0;
161 }
162
163 if (initSize > std::numeric_limits<SizeType>::max()) {
164 return std::numeric_limits<SizeType>::max();
165 }
166
167 return initSize;
168 }
169
170 static void *newList(std::ptrdiff_t size) {
171 using ListType = GraalList;
172 using SizeType = decltype(ListType::size);
173 using ElementType = std::remove_pointer_t<decltype(ListType::elements)>;
174
175 auto *list = new ListType{static_cast<SizeType>(size), nullptr};
176
177 if (size == 0) {
178 return static_cast<void *>(list);
179 }
180
181 list->elements = new ElementType[size]{nullptr};
182
183 return list;
184 }
185
186 static bool setElement(void *graalList, std::ptrdiff_t elementIdx, void *element) noexcept {
187 using ListType = GraalList;
188 using SizeType = decltype(ListType::size);
189 using ElementType = std::remove_pointer_t<decltype(ListType::elements)>;
190
191 if (graalList == nullptr || elementIdx < 0 || elementIdx >= std::numeric_limits<SizeType>::max() ||
192 element == nullptr) {
193 return false;
194 }
195
196 static_cast<ListType *>(graalList)->elements[elementIdx] = static_cast<ElementType>(element);
197
198 return true;
199 }
200
201 static bool freeElements(void *graalList, std::ptrdiff_t count) {
202 using ListType = GraalList;
203 using SizeType = decltype(ListType::size);
204
205 if (graalList == nullptr || count < 0 || count >= std::numeric_limits<SizeType>::max()) {
206 return false;
207 }
208
209 auto *list = static_cast<ListType *>(graalList);
210
211 for (SizeType i = 0; i < count; i++) {
212 if (list->elements[i]) {
213 ElementWrapper::freeGraal(static_cast<void *>(list->elements[i]));
214 }
215 }
216
217 delete[] list->elements;
218 delete list;
219
220 return true;
221 }
222
223 static void freeList(void *graalList) {
224 using ListType = GraalList;
225 using SizeType = decltype(ListType::size);
226
227 if (graalList == nullptr) {
228 return;
229 }
230
231 auto list = static_cast<ListType *>(graalList);
232
233 if (list->size > 0 && list->elements != nullptr) {
234 for (SizeType elementIndex = 0; elementIndex < list->size; elementIndex++) {
235 if (list->elements[elementIndex]) {
236 ElementWrapper::freeGraal(static_cast<void *>(list->elements[elementIndex]));
237 }
238 }
239
240 delete[] list->elements;
241 }
242
243 delete list;
244 }
245
246 static std::vector<ElementWrapper> fromList(void *graalList) {
247 using ListType = GraalList;
248 using SizeType = decltype(ListType::size);
249
250 if (!graalList) {
251 return {};
252 }
253
254 std::vector<ElementWrapper> result{};
255
256 auto list = static_cast<ListType *>(graalList);
257
258 if (list->size > 0 && list->elements != nullptr) {
259 for (SizeType elementIndex = 0; elementIndex < list->size; elementIndex++) {
260 if (list->elements[elementIndex]) {
261 result.emplace_back(ElementWrapper::fromGraal(static_cast<void *>(list->elements[elementIndex])));
262 }
263 }
264 }
265
266 return result;
267 }
268};
269
270/**
271 * @return The number of milliseconds that have passed since the start of the Unix epoch (1970-01-01).
272 */
273inline auto now() {
274 return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch())
275 .count();
276}
277
278namespace math {
279static constexpr std::int64_t floorDiv(std::int64_t x, std::int64_t y) {
280 std::int64_t r = x / y;
281
282 // if the signs are different and modulo not zero, round down
283 if ((x < 0) != (y < 0) && (r * y != x)) {
284 r--;
285 }
286
287 return r;
288}
289
290static constexpr std::int64_t floorMod(std::int64_t x, std::int64_t y) {
291 return x - (floorDiv(x, y) * y);
292}
293
294static const double NaN = std::numeric_limits<double>::quiet_NaN();
295
296inline bool equals(double a, double b, double eps = std::numeric_limits<double>::epsilon()) {
297 if (std::isnan(a) || std::isnan(b)) {
298 return false;
299 }
300
301 return std::abs(a - b) < eps;
302}
303
304template <typename T, typename U> static bool equals(T a, U b, double eps = std::numeric_limits<double>::epsilon()) {
305 if (std::isnan(static_cast<double>(a)) || std::isnan(static_cast<double>(b))) {
306 return false;
307 }
308
309 return std::abs(static_cast<double>(a) - static_cast<double>(b)) < eps;
310}
311
312} // namespace math
313
314namespace time_nanos_util {
315static constexpr std::int64_t NANOS_IN_MILLIS = 1'000'000LL;
316
317/**
318 * Returns time measured in nanoseconds since epoch from the time in milliseconds and its nano part.
319 * The result of this method is `timeMillis * 1'000'000 + timeNanoPart`.
320 *
321 * @param timeMillis time in milliseconds since epoch.
322 * @param timeNanoPart nanoseconds part that shall lie within [0..999999] interval.
323 * @return time measured in nanoseconds since epoch.
324 */
325static constexpr std::int64_t getNanosFromMillisAndNanoPart(std::int64_t timeMillis, std::int32_t timeNanoPart) {
326 return (timeMillis * NANOS_IN_MILLIS) + timeNanoPart;
327}
328
329/**
330 * Returns time measured in milliseconds since Java epoch from the time in nanoseconds.
331 * Idea is that nano part of time shall be within [0..999999] interval
332 * so that the following equation always holds
333 * `getMillisFromNanos(timeNanos) * 1'000'000 + getNanoPartFromNanos(timeNanos) == timeNanos`.
334 *
335 * @param timeNanos time measured in nanoseconds since epoch
336 * @return time measured in milliseconds since epoch.
337 * @see ::getNanoPartFromNanos()
338 */
339static constexpr std::int64_t getMillisFromNanos(std::int64_t timeNanos) {
340 return math::floorDiv(timeNanos, NANOS_IN_MILLIS);
341}
342
343/**
344 * Returns nano part of time.
345 * Idea is that nano part of time shall be within [0..999999] interval
346 * so that the following equation always holds
347 * `getMillisFromNanos(timeNanos) * 1'000'000 + getNanoPartFromNanos(timeNanos) == timeNanos`.
348 *
349 * @param timeNanos time measured in nanoseconds since epoch
350 * @return time measured in milliseconds since epoch.
351 * @see ::getMillisFromNanos()
352 */
353static constexpr std::int32_t getNanoPartFromNanos(std::int64_t timeNanos) {
354 return static_cast<std::int32_t>(math::floorMod(timeNanos, NANOS_IN_MILLIS));
355}
356
357} // namespace time_nanos_util
358
359namespace time_util {
360/// Number of milliseconds in a second.
361static constexpr std::int64_t SECOND = 1000LL;
362
363/// Number of milliseconds in a minute.
364static constexpr std::int64_t MINUTE = 60LL * SECOND;
365
366/// Number of milliseconds in an hour.
367static constexpr std::int64_t HOUR = 60LL * MINUTE;
368
369/// Number of milliseconds in an day.
370static constexpr std::int64_t DAY = 24LL * HOUR;
371
372/**
373 * Returns correct number of milliseconds with proper handling negative values.
374 * Idea is that number of milliseconds shall be within [0..999] interval
375 *
376 * @param timeMillis The timestamp in milliseconds
377 * @return a correct number of milliseconds
378 */
379static constexpr std::int32_t getMillisFromTime(std::int64_t timeMillis) {
380 return static_cast<std::int32_t>(math::floorMod(timeMillis, SECOND));
381}
382
383/**
384 * Returns correct number of seconds with proper handling negative values and overflows.
385 * Idea is that number of milliseconds shall be within [0..999] interval
386 *
387 * @param timeMillis The timestamp in milliseconds
388 * @return a correct number of second
389 */
390static constexpr std::int32_t getSecondsFromTime(std::int64_t timeMillis) {
391 if (timeMillis >= 0) {
392 return static_cast<std::int32_t>(
393 std::min(timeMillis / SECOND, static_cast<std::int64_t>(std::numeric_limits<std::int32_t>::max())));
394 }
395
396 return static_cast<std::int32_t>(
397 std::max((timeMillis + 1) / SECOND - 1, static_cast<std::int64_t>(std::numeric_limits<std::int32_t>::min())));
398}
399} // namespace time_util
400
401namespace math_util {
402
403/**
404 * Returns quotient according to number theory - i.e. when remainder is zero or positive.
405 *
406 * @tparam T The dividend's and divisor's type
407 * @param a dividend
408 * @param b divisor
409 * @return quotient according to number theory
410 */
411template <Integral T> constexpr static T div(T a, T b) {
412 if (a >= 0) {
413 return a / b;
414 }
415
416 if (b >= 0) {
417 return ((a + 1) / b) - 1;
418 }
419
420 return ((a + 1) / b) + 1;
421}
422
423template <Integral T> constexpr static T abs(T a) {
424 return a < 0 ? -a : a;
425}
426
427} // namespace math_util
428
429namespace day_util {
430
431DXFCXX_DISABLE_GCC_WARNINGS_PUSH("-Wunused-variable")
432static std::int32_t DAY_OF_YEAR[] = {0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365};
434
435/**
436 * Returns yyyymmdd integer in Gregorian calendar for a specified day identifier.
437 * The day identifier is defined as the number of days since Unix epoch of January 1, 1970.
438 * The result is equal to `yearSign * (abs(year) * 10000 + month * 100 + day)`, where year,
439 * month, and day are in Gregorian calendar, month is between 1 and 12 inclusive, and day is counted from 1.
440 *
441 * @param dayId The day id
442 * @return integer date
443 */
444constexpr static std::int32_t getYearMonthDayByDayId(std::int32_t dayId) {
445 std::int32_t j = dayId + 2472632; // this shifts the epoch back to astronomical year -4800
446 std::int32_t g = math_util::div(j, 146097);
447 std::int32_t dg = j - g * 146097;
448 std::int32_t c = (dg / 36524 + 1) * 3 / 4;
449 std::int32_t dc = dg - c * 36524;
450 std::int32_t b = dc / 1461;
451 std::int32_t db = dc - b * 1461;
452 std::int32_t a = (db / 365 + 1) * 3 / 4;
453 std::int32_t da = db - a * 365;
454 std::int32_t y = g * 400 + c * 100 + b * 4 +
455 a; // this is the integer number of full years elapsed since March 1, 4801 BC at 00:00 UTC
456 std::int32_t m = (da * 5 + 308) / 153 -
457 2; // this is the integer number of full months elapsed since the last March 1 at 00:00 UTC
458 std::int32_t d =
459 da - (m + 4) * 153 / 5 + 122; // this is the number of days elapsed since day 1 of the month at 00:00 UTC
460 std::int32_t yyyy = y - 4800 + (m + 2) / 12;
461 std::int32_t mm = (m + 2) % 12 + 1;
462 std::int32_t dd = d + 1;
463 std::int32_t yyyymmdd = math_util::abs(yyyy) * 10000 + mm * 100 + dd;
464
465 return yyyy >= 0 ? yyyymmdd : -yyyymmdd;
466}
467
468std::int32_t getDayIdByYearMonthDay(std::int32_t year, std::int32_t month, std::int32_t day);
469
470} // namespace day_util
471
472namespace detail {
473template <typename...> struct MaxImpl;
474
475template <typename T> struct MaxImpl<T> {
476 using Type = T;
477};
478
479template <typename T, typename U> struct MaxImpl<T, U> {
480 using Type = std::conditional_t<sizeof(T) >= sizeof(U), T, U>;
481};
482
483template <typename T, typename U, typename V, typename... Ws> struct MaxImpl<T, U, V, Ws...> {
484 using Type = typename MaxImpl<T, typename MaxImpl<U, typename MaxImpl<V, Ws...>::Type>::Type>::Type;
485};
486} // namespace detail
487
488/**
489 * Returns max type by size (first is better)
490 */
491template <typename... Ts> using Max = typename detail::MaxImpl<Ts...>::Type;
492
493/**
494 * Performs a right arithmetic bit shift operation (>> in Java, C, etc). The sign bit is extended to preserve the
495 * signedness of the number.
496 *
497 * The result of the shift will be of the same type as the `value` being shifted.
498 * If the shift is a negative number of bits, then a @ref ::sal() "left arithmetic shift" will be performed.
499 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then if the `value` is
500 * negative (signed integer type), `-1` will be returned, and if positive, then `0` will be returned.
501 *
502 * @tparam V The type of `value`
503 * @tparam S The type of `shift`
504 * @param value The value to be shifted.
505 * @param shift The shift in bits
506 * @return The shifted `value`
507 */
508template <Integral V, Integral S> static constexpr V sar(V value, S shift) noexcept;
509
510/**
511 * Performs a left arithmetic bit shift operation (<< in Java, C, etc).
512 *
513 * The result of the shift will be of the same type as the `value` being shifted.
514 * If the shift is a negative number of bits, then a @ref ::sar() "right arithmetic shift" will be performed.
515 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
516 * returned.
517 *
518 * @tparam V The type of `value`
519 * @tparam S The type of `shift`
520 * @param value The value to be shifted
521 * @param shift The shift in bits
522 * @return The shifted `value`
523 */
524template <Integral V, Integral S> static constexpr V leftArithmeticShift(V value, S shift) noexcept {
525 if constexpr (std::is_signed_v<S>) {
526 if (shift < 0) {
527 return sar(value, -shift);
528 }
529 }
530
531 if (shift == 0 || value == 0) {
532 return value;
533 }
534
535 auto unsignedShift = static_cast<std::make_unsigned_t<S>>(shift);
536
537 if (unsignedShift >= sizeof(V) * CHAR_BIT) {
538 return 0;
539 }
540
541 return value << unsignedShift;
542}
543
544/**
545 * Performs a left arithmetic bit shift operation (<< in Java, C, etc).
546 *
547 * The result of the shift will be of the same type as the `value` being shifted.
548 * If the shift is a negative number of bits, then a @ref ::sar() "right arithmetic shift" will be performed.
549 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
550 * returned.
551 *
552 * @tparam V The type of `value`
553 * @tparam S The type of `shift`
554 * @param value The value to be shifted.
555 * @param shift The shift in bits
556 * @return The shifted `value`
557 */
558template <Integral V, Integral S> static constexpr V sal(V value, S shift) noexcept {
559 return leftArithmeticShift(value, shift);
560}
561
562/**
563 * Performs a right arithmetic bit shift operation (>> in Java, C, etc). The sign bit is extended to preserve the
564 * signedness of the number.
565 *
566 * The result of the shift will be of the same type as the `value` being shifted.
567 * If the shift is a negative number of bits, then a @ref ::sal() "left arithmetic shift" will be performed.
568 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then if the `value` is
569 * negative (signed integer type), `-1` will be returned, and if positive, then `0` will be returned.
570 *
571 * @tparam V The type of `value`
572 * @tparam S The type of `shift`
573 * @param value The value to be shifted
574 * @param shift The shift in bits
575 * @return The shifted `value`
576 */
577template <Integral V, Integral S> static constexpr V rightArithmeticShift(V value, S shift) noexcept {
578 if constexpr (std::is_signed_v<S>) {
579 if (shift < 0) {
580 return sal(value, -shift);
581 }
582 }
583
584 if (shift == 0 || value == 0) {
585 return value;
586 }
587
588 auto unsignedShift = static_cast<std::make_unsigned_t<S>>(shift);
589
590 if (unsignedShift >= sizeof(V) * CHAR_BIT) {
591 return value < 0 ? -1 : 0;
592 }
593
594 return value >> unsignedShift;
595}
596
597/**
598 * Performs a right arithmetic bit shift operation (>> in Java, C, etc). The sign bit is extended to preserve the
599 * signedness of the number.
600 *
601 * The result of the shift will be of the same type as the `value` being shifted.
602 * If the shift is a negative number of bits, then a @ref ::sal() "left arithmetic shift" will be performed.
603 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then if the `value` is
604 * negative (signed integer type), `-1` will be returned, and if positive, then `0` will be returned.
605 *
606 * @tparam V The type of `value`
607 * @tparam S The type of `shift`
608 * @param value The value to be shifted.
609 * @param shift The shift in bits
610 * @return The shifted `value`
611 */
612template <Integral V, Integral S> static constexpr V sar(V value, S shift) noexcept {
613 return rightArithmeticShift(value, shift);
614}
615
616/**
617 * Performs a right logical bit shift operation (>>> in Java). Fills the left bits by zero.
618 *
619 * The result of the shift will be of the same type as the `value` being shifted.
620 * If the shift is a negative number of bits, then a @ref ::shl() "left logical shift" will be performed.
621 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
622 * returned.
623 *
624 * @tparam V The type of `value`
625 * @tparam S The type of `shift`
626 * @param value The value to be shifted.
627 * @param shift The shift in bits
628 * @return The shifted `value`
629 */
630template <Integral V, Integral S> static constexpr V shr(V value, S shift) noexcept;
631
632/**
633 * Performs a left logical bit shift operation.
634 *
635 * The result of the shift will be of the same type as the `value` being shifted.
636 * If the shift is a negative number of bits, then a @ref ::shr() "right logical shift" will be performed.
637 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
638 * returned.
639 *
640 * @tparam V The type of `value`
641 * @tparam S The type of `shift`
642 * @param value The value to be shifted
643 * @param shift The shift in bits
644 * @return The shifted `value`
645 */
646template <Integral V, Integral S> static constexpr V leftLogicalShift(V value, S shift) noexcept {
647 if constexpr (std::is_signed_v<S>) {
648 if (shift < 0) {
649 return shr(value, -shift);
650 }
651 }
652
653 if (shift == 0 || value == 0) {
654 return value;
655 }
656
657 auto unsignedShift = static_cast<std::make_unsigned_t<S>>(shift);
658
659 if (unsignedShift >= sizeof(V) * CHAR_BIT) {
660 return 0;
661 }
662
663 return value << unsignedShift;
664}
665
666/**
667 * Performs a left logical bit shift operation.
668 *
669 * The result of the shift will be of the same type as the `value` being shifted.
670 * If the shift is a negative number of bits, then a @ref ::shr() "right logical shift" will be performed.
671 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
672 * returned.
673 *
674 * @tparam V The type of `value`
675 * @tparam S The type of `shift`
676 * @param value The value to be shifted.
677 * @param shift The shift in bits
678 * @return The shifted `value`
679 */
680template <Integral V, Integral S> static constexpr V shl(V value, S shift) noexcept {
681 return leftLogicalShift(value, shift);
682}
683
684/**
685 * Performs a right logical bit shift operation (>>> in Java). Fills the left bits by zero.
686 *
687 * The result of the shift will be of the same type as the `value` being shifted.
688 * If the shift is a negative number of bits, then a @ref ::shl() "left logical shift" will be performed.
689 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
690 * returned.
691 *
692 * @tparam V The type of `value`
693 * @tparam S The type of `shift`
694 * @param value The value to be shifted
695 * @param shift The shift in bits
696 * @return The shifted `value`
697 */
698template <Integral V, Integral S> static constexpr V rightLogicalShift(V value, S shift) noexcept {
699 if constexpr (std::is_signed_v<S>) {
700 if (shift < 0) {
701 return shl(value, -shift);
702 }
703 }
704
705 if (shift == 0 || value == 0) {
706 return value;
707 }
708
709 auto unsignedShift = static_cast<std::make_unsigned_t<S>>(shift);
710
711 if (unsignedShift >= sizeof(V) * CHAR_BIT) {
712 return 0;
713 }
714
715 return static_cast<V>(static_cast<std::make_unsigned_t<V>>(value) >> unsignedShift);
716}
717
718/**
719 * Performs a right logical bit shift operation (>>> in Java). Fills the left bits by zero.
720 *
721 * The result of the shift will be of the same type as the `value` being shifted.
722 * If the shift is a negative number of bits, then a @ref ::shl() "left logical shift" will be performed.
723 * If the shift size is greater than or equal to the number of bits in the shifted `value`, then `0` will be
724 * returned.
725 *
726 * @tparam V The type of `value`
727 * @tparam S The type of `shift`
728 * @param value The value to be shifted.
729 * @param shift The shift in bits
730 * @return The shifted `value`
731 */
732template <Integral V, Integral S> static constexpr V shr(V value, S shift) noexcept {
733 return rightLogicalShift(value, shift);
734}
735
736template <Integral A, Integral B> static constexpr A andOp(A a, B b) noexcept {
737 using Common = std::make_unsigned_t<Max<A, B>>;
738
739 return static_cast<A>(static_cast<Common>(a) & static_cast<Common>(b));
740}
741
742template <Integral A, Integral B> static constexpr A orOp(A a, B b) noexcept {
743 using Common = std::make_unsigned_t<Max<A, B>>;
744
745 return static_cast<A>(static_cast<Common>(a) | static_cast<Common>(b));
746}
747
748template <Integral A, Integral B> static constexpr A xorOp(A a, B b) noexcept {
749 using Common = std::make_unsigned_t<Max<A, B>>;
750
751 return static_cast<A>(static_cast<Common>(a) ^ static_cast<Common>(b));
752}
753
754template <Integral F, Integral M, Integral S> static constexpr F getBits(F flags, M mask, S shift) noexcept {
755 return static_cast<F>(andOp(shr(flags, shift), mask));
756}
757
758template <Integral T> static constexpr T setBits(T flags, T mask, T shift, T bits) noexcept {
759 if constexpr (std::is_signed_v<T>) {
760 using U = std::make_unsigned_t<T>;
761
762 return static_cast<T>((static_cast<U>(flags) & ~(static_cast<U>(mask) << static_cast<U>(shift))) |
763 ((static_cast<U>(bits) & static_cast<U>(mask)) << static_cast<U>(shift)));
764 } else {
765 return (flags & ~(mask << shift)) | ((bits & mask) << shift);
766 }
767}
768
769template <Integral F, Integral M, Integral S, Integral B>
770static constexpr F setBits(F flags, M mask, S shift, B bits) noexcept {
771 if constexpr (std::is_signed_v<F> || std::is_signed_v<M> || std::is_signed_v<S> || std::is_signed_v<B>) {
772 using U = std::make_unsigned_t<Max<F, M, S, B>>;
773
774 return static_cast<F>((static_cast<U>(flags) & ~(static_cast<U>(mask) << static_cast<U>(shift))) |
775 ((static_cast<U>(bits) & static_cast<U>(mask)) << static_cast<U>(shift)));
776 } else {
777 return (flags & ~(mask << shift)) | ((bits & mask) << shift);
778 }
779}
780
781template <std::size_t Bits> struct hashMixImpl;
782
783template <> struct hashMixImpl<64> {
784 constexpr static std::uint64_t fn(std::uint64_t x) noexcept {
785 std::uint64_t const m = (static_cast<std::uint64_t>(0xe9846af) << 32) + 0x9b1a615d;
786
787 x ^= x >> 32;
788 x *= m;
789 x ^= x >> 32;
790 x *= m;
791 x ^= x >> 28;
792
793 return x;
794 }
795};
796
797template <> struct hashMixImpl<32> {
798 constexpr static std::uint32_t fn(std::uint32_t x) noexcept {
799 std::uint32_t const m1 = 0x21f0aaad;
800 std::uint32_t const m2 = 0x735a2d97;
801
802 x ^= x >> 16;
803 x *= m1;
804 x ^= x >> 15;
805 x *= m2;
806 x ^= x >> 15;
807
808 return x;
809 }
810};
811
812constexpr static std::size_t hashMix(std::size_t v) noexcept {
813 return hashMixImpl<sizeof(std::size_t) * CHAR_BIT>::fn(v);
814}
815
816template <class T> constexpr void hashCombine(std::size_t &seed, const T &v) noexcept {
817 seed = hashMix(seed + 0x9e3779b9 + std::hash<T>()(v));
818}
819
820template <Integral T, Integral U> constexpr std::size_t pack(T t, U u) noexcept {
821 constexpr auto sizeOfSize = sizeof(std::size_t) * CHAR_BIT;
822
823 return orOp(shl(t, sizeOfSize / 2), u);
824}
825
826constexpr std::pair<std::size_t, std::size_t> unpack(std::size_t v) noexcept {
827 constexpr auto sizeOfSize = sizeof(std::size_t) * CHAR_BIT;
828
829 return {shr(v, sizeOfSize / 2), andOp(v, shr(~std::size_t{}, sizeOfSize / 2))};
830}
831
832template <typename T, typename U> T fitToType(const U &size) {
833 static_assert(sizeof(T) <= sizeof(U));
834
835 return static_cast<T>(static_cast<U>(std::numeric_limits<T>::max()) < size ? std::numeric_limits<T>::max() : size);
836}
837
838/**
839 * A simple wrapper around strings or something similar to strings to reduce the amount of code for methods that take
840 * strings as input.
841 */
844
845 private:
846 DataType data_{};
847
848 public:
849 StringLikeWrapperOld(std::string_view sv) : data_{sv} {
850 }
851
852 StringLikeWrapperOld(const char *chars) : data_{chars == nullptr ? std::string_view{} : std::string_view{chars}} {
853 }
854
855 StringLikeWrapperOld(const std::string &s) : data_{s} {
856 }
857
858 StringLikeWrapperOld(std::string &&s) : data_{std::move(s)} {
859 }
860
861 template <auto N>
862 StringLikeWrapperOld(const char (&chars)[N]) : StringLikeWrapperOld{std::string_view{chars, chars + N}} {
863 }
864
865 operator std::string() const {
866 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
867 return {sv->data(), sv->size()};
868 } else {
869 return std::get<std::string>(data_);
870 }
871 }
872
873 operator std::string_view() const & {
874 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
875 return *sv;
876 } else {
877 return std::get<std::string>(data_);
878 }
879 }
880
881 const char *data() const {
882 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
883 return sv->data();
884 } else {
885 return std::get<std::string>(data_).c_str();
886 }
887 }
888
889 const char *c_str() const {
890 return data();
891 }
892
893 bool empty() const {
894 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
895 return sv->empty();
896 } else {
897 return std::get<std::string>(data_).empty();
898 }
899 }
900
901 std::size_t size() const {
902 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
903 return sv->size();
904 } else {
905 return std::get<std::string>(data_).size();
906 }
907 }
908
909 std::size_t length() const {
910 return size();
911 }
912
913 bool ends_with(const StringLikeWrapperOld &sw) const {
914 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
915 return sv->ends_with(sw);
916 } else {
917 return std::get<std::string>(data_).ends_with(sw);
918 }
919 }
920
922 if (auto sv = std::get_if<std::string_view>(&data_); sv) {
923 auto sv2 = sv->substr(pos, count);
924
925 return {sv2.data(), sv2.size()};
926 } else {
927 return std::get<std::string>(data_).substr(pos, count);
928 }
929 }
930
931 bool operator==(const StringLikeWrapperOld &sw) const {
932 return sw.operator std::string_view() == this->operator std::string_view();
933 }
934
936 return sw1.operator std::string() + sw2.operator std::string();
937 }
938
939 explicit operator double() const {
940 double result{};
941
942 // At the moment, clang\apple clang's std lib does not support a version of the `from_chars` function (needed
943 // for `std::string_view`) for the `double` type.
944#ifdef _LIBCPP_VERSION
945 auto s = this->operator std::string();
946
947 result = std::stod(s);
948#else
949 auto sw = this->operator std::string_view();
950
951 std::from_chars(sw.data(), sw.data() + sw.size(), result);
952#endif
953
954 return result;
955 }
956};
957
958/// Universal functional object that allows searching std::unordered_map for string-like keys.
960 using HashType = std::hash<std::string_view>;
961 using is_transparent = void;
962
963 std::size_t operator()(const char *str) const {
964 return HashType{}(str);
965 }
966
967 std::size_t operator()(std::string_view sw) const {
968 return HashType{}(sw);
969 }
970
971 std::size_t operator()(std::string const &str) const {
972 return HashType{}(str);
973 }
974
975 std::size_t operator()(const StringLikeWrapperOld &sw) const {
976 return HashType{}(sw);
977 }
978};
979
980namespace util {
981
982void throwInvalidChar(char c, const std::string &name);
983
984inline void checkChar(char c, std::uint32_t mask, const std::string &name) {
985 if ((andOp(c, ~mask)) != 0) {
986 throwInvalidChar(c, name);
987 }
988}
989
990} // namespace util
991
992namespace math {
993
994template <Integral Type, typename ResultType = int> ResultType compare(Type v1, Type v2) {
995 if (v1 < v2) {
996 return -1;
997 }
998
999 if (v2 < v1) {
1000 return 1;
1001 }
1002
1003 return 0;
1004}
1005
1006inline int compare(double d1, double d2) {
1007 if (std::isnan(d1) || std::isnan(d2)) {
1008 return std::isnan(d1) ? (std::isnan(d2) ? 0 : -1) : 1;
1009 }
1010
1011 if (d1 < d2) {
1012 return -1;
1013 }
1014
1015 if (d1 > d2) {
1016 return 1;
1017 }
1018
1019 return 0;
1020}
1021
1022} // namespace math
1023
1025
#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
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