Newer
Older
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
/*----- PROTECTED REGION ID(USB2StateMachine.cpp) ENABLED START -----*/
//=============================================================================
//
// file : USB2StateMachine.cpp
//
// description : State machine file for the USB2 class
//
// project :
//
// This file is part of Tango device class.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango 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. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Author: alessio $
//
// $Revision: 1.1.1.1 $
// $Date: 2018-01-16 15:32:20 $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <USB2.h>
/*----- PROTECTED REGION END -----*/ // USB2::USB2StateMachine.cpp
//================================================================
// States | Description
//================================================================
// ON | Connected
// FAULT | Connection failed
// INIT |
namespace USB2_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : USB2::is_InputLength_allowed()
* Description : Execution allowed for InputLength attribute
*/
//--------------------------------------------------------
bool USB2::is_InputLength_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for InputLength attribute in read access.
/*----- PROTECTED REGION ID(USB2::InputLengthStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::InputLengthStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : USB2::is_OutputLength_allowed()
* Description : Execution allowed for OutputLength attribute
*/
//--------------------------------------------------------
bool USB2::is_OutputLength_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for OutputLength attribute in read access.
/*----- PROTECTED REGION ID(USB2::OutputLengthStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::OutputLengthStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : USB2::is_Reconnections_allowed()
* Description : Execution allowed for Reconnections attribute
*/
//--------------------------------------------------------
bool USB2::is_Reconnections_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for Reconnections attribute in read access.
/*----- PROTECTED REGION ID(USB2::ReconnectionsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::ReconnectionsStateAllowed_READ
return true;
}
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : USB2::is_Write_allowed()
* Description : Execution allowed for Write attribute
*/
//--------------------------------------------------------
bool USB2::is_Write_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Compare device state with not allowed states.
if (get_state()==Tango::FAULT ||
get_state()==Tango::INIT)
{
/*----- PROTECTED REGION ID(USB2::WriteStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::WriteStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : USB2::is_Read_allowed()
* Description : Execution allowed for Read attribute
*/
//--------------------------------------------------------
bool USB2::is_Read_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Compare device state with not allowed states.
if (get_state()==Tango::FAULT ||
get_state()==Tango::INIT)
{
/*----- PROTECTED REGION ID(USB2::ReadStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::ReadStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : USB2::is_ReadUntil_allowed()
* Description : Execution allowed for ReadUntil attribute
*/
//--------------------------------------------------------
bool USB2::is_ReadUntil_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Compare device state with not allowed states.
if (get_state()==Tango::FAULT ||
get_state()==Tango::INIT)
{
/*----- PROTECTED REGION ID(USB2::ReadUntilStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2::ReadUntilStateAllowed
return false;
}
return true;
}
/*----- PROTECTED REGION ID(USB2::USB2StateAllowed.AdditionalMethods) ENABLED START -----*/
// Additional Methods
/*----- PROTECTED REGION END -----*/ // USB2::USB2StateAllowed.AdditionalMethods
} // End of namespace