File: test.h

package info (click to toggle)
openhpi 3.8.0-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 31,792 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 (103 lines) | stat: -rw-r--r-- 2,742 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
/*      -*- c++ -*-
 *
 * (C) Copyright Pigeon Point Systems. 2012
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTTESTLITY 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.
 *
 * Author(s):
 *        Anton Pak <anton.pak@pigeonpoint.com>
 */

#ifndef TEST_H_FB2B5DD5_4E7D_49F5_9397_C2FEC21B4010
#define TEST_H_FB2B5DD5_4E7D_49F5_9397_C2FEC21B4010

#include <list>
#include <string>

#include <SaHpi.h>

#include "object.h"
#include "timers.h"


namespace TA {


/**************************************************************
 * class cTest
 *************************************************************/
class cHandler;
class cDimi;

class cTest : public cObject, private cTimerCallback
{
public:

    static const std::string classname;

    explicit cTest( cHandler& handler, cDimi& dimi, SaHpiDimiTestNumT num );
    virtual ~cTest();

public: // HPI interface

    SaErrorT GetInfo( SaHpiDimiTestT& info ) const;
    SaErrorT GetReadiness( SaHpiDimiReadyT& ready );
    SaErrorT Start( SaHpiUint8T nparams,
                    const SaHpiDimiTestVariableParamsT * params );
    SaErrorT Cancel();
    SaErrorT GetStatus( SaHpiDimiTestPercentCompletedT& progress,
                        SaHpiDimiTestRunStatusT& status ) const;
    SaErrorT GetResults( SaHpiDimiTestResultsT& results ) const;

protected: // cObject virtual functions

    virtual void GetVars( cVars& vars );
    virtual void AfterVarSet( const std::string& var_name );

private:

    cTest( const cTest& );
    cTest& operator =( const cTest& );

private:

    bool CheckParams( SaHpiUint8T nparams,
                      const SaHpiDimiTestVariableParamsT * params ) const;
    void ChangeStatus( SaHpiDimiTestRunStatusT status );

private: // cTimerCallback virtual functions

    virtual void TimerEvent();

private: // data

    cHandler&                      m_handler;
    cDimi&                         m_dimi;
    const SaHpiDimiTestNumT        m_num;
    SaHpiDimiTestT                 m_info;
    SaHpiDimiReadyT                m_ready;
    SaHpiDimiTestRunStatusT        m_status;
    SaHpiDimiTestPercentCompletedT m_progress;

    SaHpiDimiTestResultsT m_prev_results;
    SaHpiTimeT            m_start_timestamp;
    struct
    {
        SaHpiTimeoutT           run_duration;
        SaHpiDimiTestErrCodeT   err;
        SaHpiTextBufferT        result_string;
        SaHpiBoolT              result_string_is_uri;
    } m_next;
};


}; // namespace TA


#endif // TEST_H_FB2B5DD5_4E7D_49F5_9397_C2FEC21B4010