File: new_sim_dimi.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 (350 lines) | stat: -rw-r--r-- 8,200 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
/** 
 * @file    new_sim_dimi.cpp
 *
 * The file includes a class for dimi handling:\n
 * NewSimulatorDimi
 * 
 * @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_dimi.h"
#include "new_sim_dimi_data.h"
#include "new_sim_entity.h"


/**
 * Constructor
 **/
NewSimulatorDimi::NewSimulatorDimi( NewSimulatorResource *res )
  : NewSimulatorRdr( res, SAHPI_DIMI_RDR ),
    m_test_id( 0 ) {
    	
   memset( &m_dimi_rec, 0, sizeof( SaHpiFumiRecT ));
   memset( &m_dimi_info, 0, sizeof( SaHpiFumiSpecInfoT ));
}


/**
 * Full qualified constructor to fill an object with the parsed data
 **/
NewSimulatorDimi::NewSimulatorDimi( NewSimulatorResource *res,
                                    SaHpiRdrT rdr)
  : NewSimulatorRdr( res, SAHPI_DIMI_RDR, rdr.Entity, rdr.IsFru, rdr.IdString ),
    m_test_id( 0 ) {

   memcpy(&m_dimi_rec, &rdr.RdrTypeUnion.DimiRec, sizeof( SaHpiDimiRecT ));
   memset( &m_dimi_info, 0, sizeof( SaHpiDimiInfoT ));
}

                      
/**
 * Destructor
 **/
NewSimulatorDimi::~NewSimulatorDimi() {
   m_tests.RemAll();   
}


/** 
 * Dump the dimi information
 * 
 * @param dump Address of the log
 * 
 **/
void NewSimulatorDimi::Dump( NewSimulatorLog &dump ) const {

  dump << "Dimi:       " << m_dimi_rec.DimiNum << "\n";
  dump << "Oem:        " << m_dimi_rec.Oem << "\n";
  dump << "NumberOfTests: " << m_dimi_info.NumberOfTests << "\n";
  dump << "TestNumUpdateCounter: " << m_dimi_info.TestNumUpdateCounter << "\n";
  dump << "Test(s) Information: " << "\n";
  dump << "-------------------\n";
  for (int i= 0; i < m_tests.Num(); i++) {
      m_tests[i]->Dump( dump );
  }
}

/**
 * A rdr structure is filled with the data
 * 
 * This method is called by method NewSimulatorRdr::Populate().
 * 
 * @param resource Address of resource structure
 * @param rdr Address of rdr structure
 * 
 * @return true
 **/
bool NewSimulatorDimi::CreateRdr( SaHpiRptEntryT &resource, SaHpiRdrT &rdr ) {
  
  if ( NewSimulatorRdr::CreateRdr( resource, rdr ) == false )
       return false;

  // Inventory record
  memcpy(&rdr.RdrTypeUnion.DimiRec, &m_dimi_rec, sizeof(SaHpiDimiRecT));

  return true;
}

/**
 * Set dimi record data 
 * 
 * @param dimiRec DimiRecord data
 * @return true (simple copy)
 **/ 
bool NewSimulatorDimi::SetData( SaHpiDimiRecT dimiRec ) {
   
   memcpy( &m_dimi_rec, &dimiRec, sizeof( SaHpiDimiRecT ));

   return true;
}


/**
 * Set dimi information data 
 * 
 * @param info record with information
 *
 * @return true 
 **/
bool NewSimulatorDimi::SetInfo( SaHpiDimiInfoT info ) {
   
   memcpy( &m_dimi_info, &info, sizeof( SaHpiDimiInfoT ));
   
   return true;
}


/**
 * Find a test by id
 * 
 * @param id id of NewSimulatorTest object

 * @return pointer on a NewSimulatorTest object, NULL if no test can be found
 **/
NewSimulatorDimiTest *NewSimulatorDimi::GetTest( SaHpiDimiTestNumT id ) {
   NewSimulatorDimiTest *t = NULL;
   
   for (int i=0; i < m_tests.Num(); i++) {
      if ( id == m_tests[i]->Num() )
         t = m_tests[i];
   }
   
   return t;
}

/**
 * Add a test 
 * 
 * @param t pointer on NewSimulatorDimiTest to be added

 * @return true
 **/
bool NewSimulatorDimi::AddTest( NewSimulatorDimiTest *t ) {
                                 	
   m_tests.Add( t );
   
   return true;
}


// Official HPI functions
 
/**
 * HPI function saHpiDimiInfoGet()
 * 
 * See also the description of the function inside the specification or header file.
 * Copying the internal values (if a read is allowed).
 * 
 * @param info address of the DimiInfo record to be filled
 * 
 * @return HPI return code
 **/    
SaErrorT NewSimulatorDimi::GetInfo( SaHpiDimiInfoT &info ) {
   SaErrorT rv = SA_OK;

   if ( &info == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
      
   memcpy( &info, &m_dimi_info, sizeof( SaHpiDimiInfoT ));
   return rv;
}

/**
 * HPI function saHpiDimiTestInfoGet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param id id of test 
 * @param tinfo address of the Dimi test record to be filled
 * 
 * @return HPI return code
 **/  
SaErrorT NewSimulatorDimi::GetTestInfo( SaHpiDimiTestNumT id, SaHpiDimiTestT &tinfo ) {
   NewSimulatorDimiTest *t;
   
   if ( &tinfo == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
      
   return t->GetInfo( tinfo );
}


/**
 * HPI function saHpiDimiTestReadinessGet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param id id of test
 * @param ready address to store the Ready information
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorDimi::GetReadiness( SaHpiDimiTestNumT id, 
                                         SaHpiDimiReadyT &ready ) {

   NewSimulatorDimiTest *t;
   
   if ( &ready == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
      
   return t->GetReady( ready );
}


/**
 * HPI function saHpiDimiTestStart()
 * 
 * See also the description of the function inside the specification or header file.
 * Copying the internal values (if a read is allowed).
 * 
 * @param id id of test
 * @param number number of parameters
 * @param param pointer on array including the parameters
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorDimi::StartTest( SaHpiDimiTestNumT id,  
                                      SaHpiUint8T number,
                                      SaHpiDimiTestVariableParamsT *param) {

   NewSimulatorDimiTest *t;
   
   if ( (number != 0) && (param == NULL) )
      return SA_ERR_HPI_INVALID_PARAMS;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
      
   return t->StartTest( number, param );
}


/**
 * HPI function saHpiDimiTestCancel()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param id id of test
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorDimi::CancelTest( SaHpiDimiTestNumT id ) {

   NewSimulatorDimiTest *t;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
   
   if ( !t->IsRunning() )
      return SA_ERR_HPI_INVALID_STATE;
      
   return t->Cancel();
}


/**
 * HPI function saHpiDimiTestStatusGet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param id id of test
 * @param perc address to store percentage of test completed
 * @param status address to store the status of the last run
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorDimi::GetStatus( SaHpiDimiTestNumT id,
                                      SaHpiDimiTestPercentCompletedT &perc,
                                      SaHpiDimiTestRunStatusT &status ) {

   NewSimulatorDimiTest *t;
   
   if ( &status == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
      
   return t->GetStatus( perc, status);
}


/**
 * HPI function saHpiDimiTestResultsGet()
 * 
 * See also the description of the function inside the specification or header file.
 * 
 * @param id id of test
 * @param results address to store the results of the last run
 * 
 * @return HPI return code
 **/
SaErrorT NewSimulatorDimi::GetResults( SaHpiDimiTestNumT id,
                                       SaHpiDimiTestResultsT &results) {

   NewSimulatorDimiTest *t;
   
   if ( &results == NULL )
      return SA_ERR_HPI_INVALID_PARAMS;
   
   t = GetTest( id );
   
   if ( t == NULL )
      return SA_ERR_HPI_NOT_PRESENT;
      
   return t->GetResults( results );
}