-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathFeatureSet_Level_impl.cpp
105 lines (86 loc) · 3.18 KB
/
FeatureSet_Level_impl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/************************************************************************
* Copyright(c) 2023, One Unified. All rights reserved. *
* email: [email protected] *
* *
* This file is provided as is WITHOUT ANY WARRANTY *
* without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* This software may not be used nor distributed without proper license *
* agreement. *
* *
* See the file LICENSE.txt for redistribution information. *
************************************************************************/
/*
* File: FeatureSet_Level_impl.cpp
* Author: [email protected]
* Project: lib/TFIQFeed/Level2
* Created: May 5, 2023 18:19:22
*/
#include <boost/fusion/algorithm/iteration/for_each.hpp>
#include <boost/fusion/include/for_each.hpp>
#include "FeatureSet_Level_impl.hpp"
namespace ou { // One Unified
namespace tf { // TradeFrame
namespace iqfeed { // IQFeed
namespace l2 { // level 2 data
#define FUSION_VECTOR_REFERENCES(z,n,data ) \
BOOST_PP_COMMA_IF(n) \
Sentinel( level.BOOST_PP_ARRAY_ELEM(n,ARRAY_NAMES ) )
#define MAP_LUCOLUMN_VALUE(z,n,data) \
BOOST_PP_COMMA_IF(n) \
{ BOOST_PP_STRINGIZE(BOOST_PP_ARRAY_ELEM(n,ARRAY_NAMES)), n }
const FeatureSet_Column::mapLuColumn_t FeatureSet_Column::m_mapLuColumn = {
BOOST_PP_REPEAT( ARRAY_NAMES_SIZE, MAP_LUCOLUMN_VALUE, 0 )
};
FeatureSet_Column::FeatureSet_Column( FeatureSet_Level& level )
: m_bSentinelSet( false )
, m_fvSentinel(
BOOST_PP_REPEAT( ARRAY_NAMES_SIZE, FUSION_VECTOR_REFERENCES, 0 )
)
{}
FeatureSet_Column::~FeatureSet_Column() {}
void FeatureSet_Column::MapColumnNames( const vName_t& vName, rSentinelFlag_t& rSentinelFlag ) {
for ( bool& entry: rSentinelFlag ) entry = false;
for ( const vName_t::value_type& name: vName ) {
mapLuColumn_t::const_iterator iter = m_mapLuColumn.find( name );
if ( m_mapLuColumn.end() == iter ) {
std::cout << "FeatureSet column " << name << " not found" << std::endl;
}
else {
rSentinelFlag[ iter->second ] = true;
}
}
}
void FeatureSet_Column::SetSentinel( const rSentinelFlag_t& r ) {
assert( !m_bSentinelSet ); // set only once
m_bSentinelSet = true;
rSentinelFlag_t::const_iterator iter( r.begin() );
boost::fusion::for_each(
m_fvSentinel,
[&iter]( auto& element ){
element.bSentinel = *iter;
iter++;
} );
}
void FeatureSet_Column::Changed( bool& bChanged ) {
if ( m_bSentinelSet ) {
boost::fusion::for_each(
m_fvSentinel,
[&bChanged]( auto& element ){
if ( element.bSentinel ) {
if ( element.original != element.copy ) {
bChanged = true;
element.copy = element.original;
}
}
} );
}
else {
bChanged = true;
}
}
} // namespace l2
} // namesapce iqfeed
} // namespace tf
} // namespace ou