File: instrument.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 (187 lines) | stat: -rw-r--r-- 4,750 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
/*      -*- c++ -*-
 *
 * (C) Copyright Pigeon Point Systems. 2011
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY without even the implied warranty of
 * MERCHANTINSTRUMENTLITY 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>
 */

#include <string>

#include <oh_utils.h>

#include "instrument.h"
#include "resource.h"
#include "structs.h"
#include "utils.h"


namespace TA {


/**************************************************************
 * Helper functions
 *************************************************************/
static void MakeDefaultRdr( const SaHpiEntityPathT& ep,
                            SaHpiRdrTypeT type,
                            const SaHpiRdrTypeUnionT& data,
                            const std::string& name,
                            SaHpiRdrT& rdr )
{
    SaHpiInstrumentIdT instr_id = SAHPI_ENTRY_UNSPECIFIED;
    switch ( type ) {
        case SAHPI_CTRL_RDR:
            instr_id = data.CtrlRec.Num;
            break;
        case SAHPI_SENSOR_RDR:
            instr_id = data.SensorRec.Num;
            break;
        case SAHPI_INVENTORY_RDR:
            instr_id = data.InventoryRec.IdrId;
            break;
        case SAHPI_WATCHDOG_RDR:
            instr_id = data.WatchdogRec.WatchdogNum;
            break;
        case SAHPI_ANNUNCIATOR_RDR:
            instr_id = data.AnnunciatorRec.AnnunciatorNum;
            break;
        case SAHPI_DIMI_RDR:
            instr_id = data.DimiRec.DimiNum;
            break;
        case SAHPI_FUMI_RDR:
            instr_id = data.FumiRec.Num;
            break;
        default:
            instr_id = SAHPI_ENTRY_UNSPECIFIED;
    }

    rdr.RecordId     = oh_get_rdr_uid( type, instr_id );
    rdr.RdrType      = type;
    rdr.Entity       = ep;
    rdr.IsFru        = SAHPI_FALSE;
    rdr.RdrTypeUnion = data;
    MakeHpiTextBuffer( rdr.IdString, name.c_str() );
}


/**************************************************************
 * class cInstrument
 *************************************************************/
cInstrument::cInstrument( cHandler& handler,
                          cResource& resource,
                          const std::string& name,
                          SaHpiRdrTypeT type,
                          const SaHpiRdrTypeUnionT& data )
    : cObject( name, SAHPI_FALSE ),
      m_handler( handler ),
      m_resource( resource )
{
    MakeDefaultRdr( resource.GetEntityPath(),
                    type,
                    data,
                    GetName(),
                    m_rdr );
}

cInstrument::~cInstrument()
{
    SetVisible( false );
}

const SaHpiRdrT& cInstrument::GetRdr() const
{
    return m_rdr;
}


// cObject virtual functions
void cInstrument::BeforeVisibilityChange()
{
    cObject::BeforeVisibilityChange();

    if ( IsVisible() ) {
        // Instrument disappears
        PostUpdateEvent( true );
    }
}

void cInstrument::AfterVisibilityChange()
{
    if ( IsVisible() ) {
        // Instrument appears
        m_resource.UpdateCaps( RequiredResourceCap() );
        PostUpdateEvent();
    }

    cObject::AfterVisibilityChange();
}

void cInstrument::GetVars( cVars& vars )
{
    cObject::GetVars( vars );
    Structs::GetVars( m_rdr, vars );
}

void cInstrument::AfterVarSet( const std::string& var_name )
{
    cObject::AfterVarSet( var_name );

    if ( var_name.find( "Rdr." ) == 0 ) {
        // RDR has been changed
        HandleRdrChange( var_name );
    }
}


// Event generation
void cInstrument::PostEvent( SaHpiEventTypeT type,
                             const SaHpiEventUnionT& data,
                             SaHpiSeverityT severity,
                             bool remove ) const
{
    if ( !IsVisible() ) {
        return;
    }

    InstrumentList l, l_remove;
    if ( !remove ) {
        l.push_back( this );
    } else {
        l_remove.push_back( this );
    }

    m_resource.PostEvent( type, data, severity, l, l_remove );
}


void cInstrument::PostUpdateEvent( bool remove ) const
{
    SaHpiEventUnionT data;
    data.ResourceEvent.ResourceEventType = SAHPI_RESE_RESOURCE_UPDATED;
    PostEvent( SAHPI_ET_RESOURCE, data, SAHPI_INFORMATIONAL, remove );
}


// Handling RDR changes
void cInstrument::HandleRdrChange( const std::string& field_name )
{
    UpdateRdr( field_name, m_rdr.RdrTypeUnion );
    PostUpdateEvent();
}

void cInstrument::UpdateRdr( const std::string& field_name,
                             SaHpiRdrTypeUnionT& data )
{
    // extend in inherited classes
}


}; // namespace TA