File: object.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 (160 lines) | stat: -rw-r--r-- 3,337 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
/*      -*- 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
 * MERCHANTOBJECTLITY 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 <list>
#include <iterator>
#include <string>

#include "object.h"
#include "vars.h"


namespace TA {


/**************************************************************
 * class cObject
 *************************************************************/
cObject::cObject( const std::string& name, SaHpiBoolT visible )

    : m_name( name ),
      m_visible( visible ),
      m_new_visible( visible ),
      m_visible_ro( visible != SAHPI_FALSE )
      // If object is visible at creation time,
      // It will be always visible
{
    // empty
}

cObject::~cObject()
{
    // empty
}

bool cObject::SetVisible( bool value )
{
    if ( m_visible_ro ) {
        return false;
    }
    m_new_visible = value ? SAHPI_TRUE : SAHPI_FALSE;
    if ( m_visible != m_new_visible ) {
        BeforeVisibilityChange();
        m_visible = m_new_visible;
        AfterVisibilityChange();
    }

    return true;
}

cObject * cObject::GetChild( const std::string& name ) const
{
    Children children;
    GetChildren( children );
    Children::const_iterator i    = children.begin();
    Children::const_iterator end  = children.end();
    for ( ; i != end; ++i ) {
        if ( name == (*i)->GetName() ) {
            return *i;
        }
    }

    return 0;
}

bool cObject::GetVar( const std::string& name, Var& var )
{
    cVars vars;
    GetVars( vars );
    VarIter vi, vend;
    for ( vi = vars.begin(), vend = vars.end(); vi != vend; ++vi ) {
        if ( name == vi->name ) {
            var = *vi;
            return true;
        }
    }

    return false;
}


// Extensible interface
void cObject::GetNB( std::string& nb ) const
{
    nb.clear();
}

void cObject::BeforeVisibilityChange()
{
    // extend in inherited classes
}

void cObject::AfterVisibilityChange()
{
    // extend in inherited classes
}

void cObject::GetNewNames( NewNames& names ) const
{
    // extend in inherited classes
}

bool cObject::CreateChild( const std::string& name )
{
    // extend in inherited classes
    return false;
}

bool cObject::RemoveChild( const std::string& name )
{
    // extend in inherited classes
    return false;
}

void cObject::GetChildren( Children& children ) const
{
    // extend in inherited classes
}

void cObject::GetVars( cVars& vars )
{
    vars << "Visible"
         << dtSaHpiBoolT
         << DATA( m_visible, m_new_visible )
         << READONLY_IF( m_visible_ro )
         << VAR_END();

    // extend in inherited classes
}

void cObject::BeforeVarSet( const std::string& var_name )
{
    m_new_visible = m_visible;
    // extend in inherited classes
}

void cObject::AfterVarSet( const std::string& var_name )
{
    if ( m_visible != m_new_visible ) {
        BeforeVisibilityChange();
        m_visible = m_new_visible;
        AfterVisibilityChange();
    }
    // extend in inherited classes
}


}; // namespace TA