File: new_sim_inventory_data.cpp

package info (click to toggle)
openhpi 3.8.0-2.3
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 31,888 kB
  • sloc: ansic: 225,326; cpp: 63,687; java: 16,472; cs: 15,161; python: 11,884; sh: 11,508; makefile: 4,945; perl: 1,529; xml: 36; asm: 13
file content (399 lines) | stat: -rw-r--r-- 9,890 bytes parent folder | download | duplicates (4)
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/** 
 * @file    new_sim_inventory_data.cpp
 *
 * The file includes a class for inventory data handling:\n
 * NewSimulatorInventoryArea
 * NewSimulatorInventoryField
 * 
 * @author  Lars Wetzel <larswetzel@users.sourceforge.net>
 * @version 0.1
 * @date    2010
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  This
 * file and program are licensed under a BSD style license.  See
 * the Copying file included with the OpenHPI distribution for
 * full licensing terms.
 * 
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <glib.h>

#include "new_sim_domain.h"
#include "new_sim_inventory.h"
#include "new_sim_inventory_data.h"
#include "new_sim_entity.h"


/**
 * Constructor
 **/
NewSimulatorInventoryArea::NewSimulatorInventoryArea( )
  : m_field_id( 0 ) {
    	
   memset( &m_area_header, 0, sizeof( SaHpiIdrAreaHeaderT ));
}


/**
 * Full qualified constructor to fill an object with the parsed data
 **/
NewSimulatorInventoryArea::NewSimulatorInventoryArea( SaHpiIdrAreaHeaderT area )
  : m_field_id( 0 ) {

   memcpy(&m_area_header, &area, sizeof( SaHpiIdrAreaHeaderT ));
}
  
                      
/**
 * Destructor
 **/
NewSimulatorInventoryArea::~NewSimulatorInventoryArea() {
   m_fields.RemAll();
}


/** 
 * Dump the Inventory Area information
 * 
 * @param dump Address of the log
 * 
 **/
void NewSimulatorInventoryArea::Dump( NewSimulatorLog &dump ) const {

  dump << "Area: " << m_area_header.AreaId << "\n";
  dump << "Type: " << m_area_header.Type << "\n";
  dump << "ReadOnly; " << m_area_header.ReadOnly << "\n";
  dump << "Area: " << "\n";
  for (int i= 0; i < m_fields.Num(); i++) {
      m_fields[i]->Dump( dump );
  }
}

/**
 * Find field by field pointer
 * 
 * @param field pointer on the inventory field to be found 
 * @return return the same pointer if it could be found  
 **/
NewSimulatorInventoryField *NewSimulatorInventoryArea::FindInventoryField( 
                                           NewSimulatorInventoryField *field ) {
	
   for( int i = 0; i < m_fields.Num(); i++ ) {
      NewSimulatorInventoryField *idf = m_fields[i];
      if ( idf == field ) return field;
   }

   return 0;
}


/**
 * Add a inventory field to the array if it isn't already included in the array
 * 
 * @param field pointer to field to be added
 * @return bool if successful 
 **/ 
bool NewSimulatorInventoryArea::AddInventoryField( NewSimulatorInventoryField *field ) {
	
   if ( FindInventoryField( field ) ) {
      return false;
   }
   
   if (field->Num() > m_field_id)
      m_field_id = field->Num();
      
   m_fields.Add( field );
   m_area_header.NumFields = m_fields.Num();

   return true;
}

/**
 * Check the Inventory fields if one field is set to ReadOnly
 * 
 * @return bool if one field is set to read only 
 **/
bool NewSimulatorInventoryArea::IncludesReadOnlyField() {
	
   for( int i = 0; i < m_fields.Num(); i++ ) {
      if ( m_fields[i]->IsReadOnly() )
         return true;
   }
   
   return false;
}

/**
 * Delete all fields from the fields array 
 **/
void NewSimulatorInventoryArea::DeleteFields() {
   
   m_fields.RemAll();
}


/**
 * Set area header information 
 * The field NumAreas is filled with a internal values and will not be 
 * overwritten.
 * 
 * @param aheader record with AreaHeader data
 * @return true 
 **/
bool NewSimulatorInventoryArea::SetData(SaHpiIdrAreaHeaderT aheader) {

   m_area_header.AreaId = aheader.AreaId;
   m_area_header.Type = aheader.Type;
   m_area_header.ReadOnly = aheader.ReadOnly;
   m_area_header.NumFields = m_fields.Num();
   
   return true;
}


// Official HPI functions
/**
 * HPI function saHpiIdrFieldGet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param fieldType Type of Inventory Data Field
 * @param fieldId Identifier of Field to retrieve
 * @param nextId address to store the FieldId of next field
 * @param field address into which the field information is placed
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorInventoryArea::GetField( SaHpiIdrFieldTypeT fieldType, 
                                              SaHpiEntryIdT fieldId, 
                                              SaHpiEntryIdT &nextId, 
                                              SaHpiIdrFieldT &field ) {

   bool found = false, foundId = false, foundType = false;
   
   if ( fieldId == SAHPI_LAST_ENTRY )
      return SA_ERR_HPI_INVALID_PARAMS;
      
   if ( &nextId == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
      
   if ( &field == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;

   
   for (int i = 0; i < m_fields.Num(); i++) {
      if ( (fieldId == SAHPI_FIRST_ENTRY) ||
            (fieldId == m_fields[i]->Num()) )
         foundId = true;
      
      if ( (fieldType == SAHPI_IDR_FIELDTYPE_UNSPECIFIED) ||
            (fieldType ==  m_fields[i]->Type()) ) 
         foundType = true;

      if (found) {
        nextId = m_fields[i]->Num();
        return SA_OK; 
      }
      
      if (foundType && foundId) {
         if (!found) {
            found = true;
            memcpy( &field, &m_fields[i]->FieldData(), sizeof( SaHpiIdrFieldT ));
         }
         foundId = false;
         foundType = false;
      }
   }
   if (found) {
      nextId = SAHPI_LAST_ENTRY;
      return SA_OK;
   }
   
   return SA_ERR_HPI_NOT_PRESENT;
}


/**
 * HPI function saHpiIdrFieldAdd()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param field address of Inventory Data Field, which contains the new field information to add
 * @return HPI return code
 **/
SaErrorT NewSimulatorInventoryArea::AddField( SaHpiIdrFieldT &field ) {
   	
   	if ( field.Type == SAHPI_IDR_FIELDTYPE_UNSPECIFIED )
   	   return SA_ERR_HPI_INVALID_PARAMS;
   	   
   	field.FieldId = ValidFieldId();
   	field.ReadOnly = SAHPI_FALSE;
   	
   	NewSimulatorInventoryField *idf = new NewSimulatorInventoryField( field );
   	
   	if ( AddInventoryField( idf ) )
   	   return SA_OK;
   	
   	return SA_ERR_HPI_INVALID_DATA;
}


/**
 * HPI function saHpiIdrFieldAddById()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param field address of Inventory Data Field, which contains the new field information to add
 * @return HPI return code
 **/
SaErrorT NewSimulatorInventoryArea::AddFieldById( SaHpiIdrFieldT &field ) {
   
   if ( field.Type == SAHPI_IDR_FIELDTYPE_UNSPECIFIED )
   	   return SA_ERR_HPI_INVALID_PARAMS;

   // Ok, we can try to add the field
   NewSimulatorInventoryField *idf;
   
   field.ReadOnly = SAHPI_FALSE;
   
   if ( field.FieldId == SAHPI_FIRST_ENTRY ) {
      field.FieldId    = ValidFieldId();
      idf = new NewSimulatorInventoryField( field );
      m_fields.Insert( 0, idf );

      return SA_OK;	  
   } 
   
   for (int i=0; i < m_fields.Num(); i++) {
      if ( m_fields[i]->Num() == field.FieldId )
         return SA_ERR_HPI_DUPLICATE;
   }

   idf = new NewSimulatorInventoryField( field );
   if ( AddInventoryField( idf ) ) {
   	   return SA_OK;
   } else {
   	   return SA_ERR_HPI_INVALID_DATA;
   }
     	
}


/**
 * HPI function saHpiIdrFieldSet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param field field to set in the IDA
 *
 * @return HPI return code
 **/
SaErrorT NewSimulatorInventoryArea::SetField( SaHpiIdrFieldT field ) {
   
   if ( field.Type == SAHPI_IDR_FIELDTYPE_UNSPECIFIED )
   	   return SA_ERR_HPI_INVALID_PARAMS;   
   
   for (int i=0; i < m_fields.Num(); i++) {
      if ( m_fields[i]->Num() == field.FieldId ) {

         if ( m_fields[i]->IsReadOnly() )
            return SA_ERR_HPI_READ_ONLY;
         
         SaHpiIdrFieldT *data = &m_fields[i]->FieldData();
         data->Type = field.Type;
         memcpy( &data->Field, &field.Field, sizeof( SaHpiTextBufferT ));
         return SA_OK; 
      }
   }
   
   return SA_ERR_HPI_NOT_PRESENT;
}


/**
 * HPI function saHpiIdrFieldDelete()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param fieldId Identifier of Field to delete from the IDA
 *
 * @return HPI return code
 **/
SaErrorT NewSimulatorInventoryArea::DeleteField( SaHpiEntryIdT fieldId ) {
   
   for (int i=0; i < m_fields.Num(); i++) {
      if ( ( m_fields[i]->Num() == fieldId ) ||
            ( fieldId == SAHPI_FIRST_ENTRY ) ) {
         
         if ( m_fields[i]->IsReadOnly() )
            return SA_ERR_HPI_READ_ONLY;
         
         m_fields.Rem( i );
         return SA_OK;
      }
   }
   
   return SA_ERR_HPI_NOT_PRESENT;
}


/**
 * Constructor
 **/
NewSimulatorInventoryField::NewSimulatorInventoryField() {
}
  
/**
 * Full qualified Constructor
 **/
NewSimulatorInventoryField::NewSimulatorInventoryField( SaHpiIdrFieldT field ) {

   memcpy( &m_field, &field, sizeof( SaHpiIdrFieldT ));
}

                     
/**
 * Destructor
 **/
NewSimulatorInventoryField::~NewSimulatorInventoryField() {
}


/**
 * Set field data 
 * 
 * @param field IdrField data
 * @return true (simple copy)
 **/ 
bool NewSimulatorInventoryField::SetData( SaHpiIdrFieldT field ) {

   memcpy( &m_field, &field, sizeof( SaHpiIdrFieldT ));
   return true;
}


/** 
 * Dump the Inventory Field information
 * 
 * @param dump Address of the log
 * 
 **/
void NewSimulatorInventoryField::Dump( NewSimulatorLog &dump ) const {

  dump << "   Field.AreaID: " << m_field.AreaId << "\n";
  dump << "   Field.FieldID: " << m_field.FieldId << "\n";
  dump << "   Type: " << m_field.Type << "\n";
  dump << "   ReadOnly; " << m_field.ReadOnly << "\n";
  
  NewSimulatorTextBuffer tmp( m_field.Field );
  char str[256];
  tmp.GetAscii( str, 256 );
  dump << "   Field: " << str << "\n";
}