/usr/include/quickfix/FieldMap.h is in libquickfix-dev 1.13.3+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | /* -*- C++ -*- */
/****************************************************************************
** Copyright (c) quickfixengine.org All rights reserved.
**
** This file is part of the QuickFIX FIX Engine
**
** This file may be distributed under the terms of the quickfixengine.org
** license as defined by quickfixengine.org and appearing in the file
** LICENSE included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.quickfixengine.org/LICENSE for licensing information.
**
** Contact ask@quickfixengine.org if any conditions of this licensing are
** not clear to you.
**
****************************************************************************/
#ifndef FIX_FIELDMAP
#define FIX_FIELDMAP
#ifdef _MSC_VER
#pragma warning( disable: 4786 )
#endif
#include "Field.h"
#include "MessageSorters.h"
#include "Exceptions.h"
#include "CallStack.h"
#include "Utility.h"
#include <map>
#include <vector>
#include <sstream>
#include <algorithm>
namespace FIX
{
/**
* Stores and organizes a collection of Fields.
*
* This is the basis for a message, header, and trailer. This collection
* class uses a sorter to keep the fields in a particular order.
*/
class FieldMap
{
public:
#if defined(_MSC_VER) && _MSC_VER < 1300
typedef std::multimap < int, FieldBase, message_order > Fields;
typedef std::map < int, std::vector < FieldMap* >, std::less<int> > Groups;
#else
typedef std::multimap < int, FieldBase, message_order,
ALLOCATOR<std::pair<const int,FieldBase> > > Fields;
typedef std::map < int, std::vector < FieldMap* >, std::less<int>,
ALLOCATOR<std::pair<const int, std::vector< FieldMap* > > > > Groups;
#endif
typedef Fields::const_iterator iterator;
typedef iterator const_iterator;
typedef Groups::const_iterator g_iterator;
typedef Groups::const_iterator g_const_iterator;
FieldMap( const message_order& order =
message_order( message_order::normal ) )
: m_fields( order ) {}
FieldMap( const int order[] )
: m_fields( message_order(order) ) {}
FieldMap( const FieldMap& copy )
{ *this = copy; }
virtual ~FieldMap();
FieldMap& operator=( const FieldMap& rhs );
/// Set a field without type checking
void setField( const FieldBase& field, bool overwrite = true )
throw( RepeatedTag )
{
Fields::iterator i = m_fields.find( field.getField() );
if( i == m_fields.end() )
m_fields.insert( Fields::value_type( field.getField(), field ) );
else
{
if( overwrite )
i->second = field;
else
m_fields.insert( Fields::value_type( field.getField(), field ) );
}
}
/// Set a field without a field class
void setField( int field, const std::string& value )
throw( RepeatedTag, NoTagValue )
{
FieldBase fieldBase( field, value );
setField( fieldBase );
}
/// Get a field without type checking
FieldBase& getField( FieldBase& field )
const throw( FieldNotFound )
{
Fields::const_iterator iter = m_fields.find( field.getField() );
if ( iter == m_fields.end() )
throw FieldNotFound( field.getField() );
field = iter->second;
return field;
}
/// Get a field without a field class
const std::string& getField( int field )
const throw( FieldNotFound )
{
return getFieldRef( field ).getString();
}
/// Get direct access to a field through a reference
const FieldBase& getFieldRef( int field )
const throw( FieldNotFound )
{
Fields::const_iterator iter = m_fields.find( field );
if ( iter == m_fields.end() )
throw FieldNotFound( field );
return iter->second;
}
/// Get direct access to a field through a pointer
const FieldBase* const getFieldPtr( int field )
const throw( FieldNotFound )
{
return &getFieldRef( field );
}
/// Check to see if a field is set
bool isSetField( const FieldBase& field ) const
{ return m_fields.find( field.getField() ) != m_fields.end(); }
/// Check to see if a field is set by referencing its number
bool isSetField( int field ) const
{ return m_fields.find( field ) != m_fields.end(); }
/// Remove a field. If field is not present, this is a no-op.
void removeField( int field );
/// Add a group.
void addGroup( int field, const FieldMap& group, bool setCount = true );
/// Replace a specific instanct of a group.
void replaceGroup( int num, int field, FieldMap& group );
/// Get a specific instance of a group.
FieldMap& getGroup( int num, int field, FieldMap& group ) const
throw( FieldNotFound )
{
return group = getGroupRef( num, field );
}
/// Get direct access to a field through a reference
FieldMap& getGroupRef( int num, int field ) const
throw( FieldNotFound )
{
Groups::const_iterator i = m_groups.find( field );
if( i == m_groups.end() ) throw FieldNotFound( field );
if( num <= 0 ) throw FieldNotFound( field );
if( i->second.size() < (unsigned)num ) throw FieldNotFound( field );
return *( *(i->second.begin() + (num-1) ) );
}
/// Get direct access to a field through a pointer
FieldMap* getGroupPtr( int num, int field ) const
throw( FieldNotFound )
{
return &getGroupRef( num, field );
}
/// Remove a specific instance of a group.
void removeGroup( int num, int field );
/// Remove all instances of a group.
void removeGroup( int field );
/// Check to see any instance of a group exists
bool hasGroup( int field ) const;
/// Check to see if a specific instance of a group exists
bool hasGroup( int num, int field ) const;
/// Count the number of instance of a group
int groupCount( int field ) const;
/// Clear all fields from the map
void clear();
/// Check if map contains any fields
bool isEmpty();
int totalFields() const;
std::string& calculateString( std::string&, bool clear = true ) const;
int calculateLength( int beginStringField = FIELD::BeginString,
int bodyLengthField = FIELD::BodyLength,
int checkSumField = FIELD::CheckSum ) const;
int calculateTotal( int checkSumField = FIELD::CheckSum ) const;
iterator begin() const { return m_fields.begin(); }
iterator end() const { return m_fields.end(); }
g_iterator g_begin() const { return m_groups.begin(); }
g_iterator g_end() const { return m_groups.end(); }
private:
Fields m_fields;
Groups m_groups;
};
/*! @} */
}
#define FIELD_SET( MAP, FIELD ) \
bool isSet( const FIELD& field ) const \
{ return (MAP).isSetField(field); } \
void set( const FIELD& field ) \
{ (MAP).setField(field); } \
FIELD& get( FIELD& field ) const \
{ return (FIELD&)(MAP).getField(field); }
#define FIELD_GET_PTR( MAP, FLD ) \
(const FIX::FLD*)MAP.getFieldPtr( FIX::FIELD::FLD )
#define FIELD_GET_REF( MAP, FLD ) \
(const FIX::FLD&)MAP.getFieldRef( FIX::FIELD::FLD )
#endif //FIX_FIELDMAP
|