summaryrefslogtreecommitdiff
path: root/gobi-api/GobiAPI_1.0.40/Core/ProtocolEntityNav.h
blob: 4ad8550ad028067b721140e9c997652c66f0a5db (plain)
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*===========================================================================
FILE:
   ProtocolEntityNav.h

DESCRIPTION:
   Declaration of cProtocolEntityNav
   
PUBLIC CLASSES AND METHODS:
   cProtocolEntityNav
      This class serves as a base for all class that need to
      'navigate' a protocol entity database description.  It is
      necessary in order to seperate the structural aspects 
      from parsing/packing details

Copyright (c) 2011, Code Aurora Forum. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
    * Neither the name of Code Aurora Forum nor
      the names of its contributors may be used to endorse or promote
      products derived from this software without specific prior written
      permission.


THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
===========================================================================*/

//---------------------------------------------------------------------------
// Pragmas
//---------------------------------------------------------------------------
#pragma once

//---------------------------------------------------------------------------
// Include Files
//---------------------------------------------------------------------------
#include "CoreDatabase.h"

//---------------------------------------------------------------------------
// Definitions
//---------------------------------------------------------------------------
struct sSharedBuffer;
struct sDB2NavFragment;

// Field seperator string
extern LPCSTR PE_NAV_FIELD_SEP;

// Types of protocol entity field attributes
enum ePENavFieldAttr
{
   ePENAV_FIELD_BEGIN = -1,

   ePENAV_FIELD_NAME,         // Name of field
   ePENAV_FIELD_NAME_FULL,    // Fully qualified name of field
   ePENAV_FIELD_NAME_PARTIAL, // Partially qualified name of field
   ePENAV_FIELD_VALUE,        // Translated value of field
   ePENAV_FIELD_VALUE_RAW,    // Raw value of field
   ePENAV_FIELD_TYPE,         // Type of field
   ePENAV_FIELD_SIZE,         // Size of field
   ePENAV_FIELD_OFFSET,       // Offset of field
   ePENAV_FIELD_INDEX,        // Index of field
   ePENAV_FIELD_ID,           // ID of field

   ePENAV_FIELD_END           // Number of field attributes
};

/*===========================================================================
METHOD:
   IsValid (Inline Method)

DESCRIPTION:
   Is this a valid ePENavFieldAttr?
  
PARAMETERS:
   contentType [ I ] - The enum value being validated

RETURN VALUE:
   bool
===========================================================================*/
inline bool IsValid( ePENavFieldAttr attr )
{
   bool bRC = false;
   if (attr > ePENAV_FIELD_BEGIN && attr < ePENAV_FIELD_END)
   {
      bRC = true;
   }

   return bRC;
};

/*=========================================================================*/
// Class cProtocolEntityNav
//    Class to navigate a protocol entity
/*=========================================================================*/
class cProtocolEntityNav
{
   public:
      // Constructor
      cProtocolEntityNav( const cCoreDatabase & db );

      // Destructor
      virtual ~cProtocolEntityNav();

      // Return the fully qualified field name given the partial name
      virtual std::string GetFullFieldName( const std::string & partialName ) const;

      // Return the partial field name given the fully qualified name
      virtual std::string GetPartialFieldName( 
         const std::string &            fieldNameFQ ) const;

   protected:     
      // Evaluate the given condition
      virtual bool EvaluateCondition( 
         LPCSTR                    pCondition,
         bool &                     bResult );

      // Get the array bounds described by the fragment descriptor
      virtual bool GetArrayBounds( 
         const sDB2Fragment &       frag,
         LONGLONG &                 arraySz,
         LONGLONG &                 arrayAdj );

      // Return the value for the specified field ID as a
      // LONGLONG (field type must be able to fit)
      virtual bool GetLastValue( 
         ULONG                      fieldID,
         LONGLONG &                 val ) = 0;

      // Modify string length based on existing field value
      virtual bool ModifyStringLength( 
         const sDB2Fragment &       frag,
         sDB2Field &                field );

      // Process the protocol entity described by the given key/name
      virtual bool ProcessEntity( const std::vector <ULONG> & key );

      // (Inline) Contiue navigation now that entity has been set?
      virtual bool ContinueNavigation()
      {
         // Override to implement
         return true;
      };

      // Process a structure described by the given initial fragment
      virtual bool ProcessStruct(
         const sDB2NavFragment *       pFrag,
         const std::string &               preamble,
         LONGLONG                      arrayIndex = -1 );

      // Process the given fragment
      virtual bool ProcessFragment(
         const sDB2NavFragment *       pFrag,
         ULONG                         structOffset,
         ULONG &                       structSize,
         const std::string &               preamble );

      // Process the given field 
      virtual bool ProcessField(
         const sDB2Field *          pField,
         const std::string &            fieldName,
         LONGLONG                   arrayIndex = -1 ) = 0;
      
      // (Inline) Handle an array being entered
      virtual void EnterArray( 
         const sDB2Fragment &       /* frag */,
         LONGLONG                   /* arraySz */ )
      { };

      // (Inline) Handle an array being exited
      virtual void ExitArray( 
         const sDB2Fragment &       /* frag */,
         LONGLONG                   /* arraySz */ )
      { };

      // (Inline) Handle a structure being entered
      virtual void EnterStruct( 
         LPCSTR                    /* pName */,
         LONGLONG                   /* arrayIndex */ )
      { };

      // (Inline) Handle a structure being exited
      virtual void ExitStruct( 
         LPCSTR                    /* pName */,
         LONGLONG                   /* arrayIndex */ )
      { };

      // (Inline) Get current working offset 
      virtual ULONG GetOffset() 
      {
         // Override to implement
         return 0;
      };

      // (Inline) Set current working offset 
      virtual bool SetOffset( ULONG /* offset */ ) 
      {
         // Override to implement
         return true;
      };

      // (Inline) Get current navigation order
      virtual bool GetLSBMode() 
      {
         // Override to implement
         return true;
      };

      // (Inline) Set current navigation order
      virtual bool SetLSBMode( bool /* bLSB */ ) 
      {
         // Override to implement
         return true;
      };

      /* Generate field name strings? */
      bool mbFieldNames;

      /* Protocol entity being navigated */
      sDB2ProtocolEntity mEntity;

      /* Database reference */
      const cCoreDatabase & mDB;

      /* References to DB tables we need */
      const tDB2OptionalModMap & mConditions;
      const tDB2ExpressionModMap & mExpressions;
      const tDB2Array1ModMap & mArrays1;
      const tDB2Array2ModMap & mArrays2;

      /* Map of all 'tracked' fields */
      std::map <ULONG, std::pair <bool, LONGLONG> > mTrackedFields;
};