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 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
/*----- PROTECTED REGION ID(AccessControlStateMachine.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: AccessControlStateMachine.cpp 16159 2011-03-21 13:06:19Z taurel $";
//=============================================================================
//
// file : AccessControlStateMachine.cpp
//
// description : C++ source for the name and its alowed
// methods for commands and attributes
//
// project : Access Control abstract class.
//
//
// Copyright (C) : 2004,2005,2006,2007,2008,2009,2010,2011
// European Synchrotron Radiation Facility
// BP 220, Grenoble 38043
// FRANCE
//
// This file is part of Tango.
//
// 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: taurel $
//
// $Revision: 16159 $
// $Date: 2011-03-21 14:06:19 +0100 (Mon, 21 Mar 2011) $
//
// SVN only:
// $HeadURL: $
//
// CVS only:
// $Source$
// $Log$
// Revision 1.4 2011/02/11 14:20:27 pascal_verdier
// GetAccessForMutiIP command added.
//
// Revision 1.3 2011/02/11 13:43:12 pascal_verdier
// Pogo-7 compatibility.
//
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <AccessControl.h>
#include <AccessControlClass.h>
/*----- PROTECTED REGION END -----*/
/*
* AccessControl states description:
*
* ON : The MySql database handle is OK.
* FAULT : The MySql database handle is not OK.
*/
namespace AccessControl_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
/*----- PROTECTED REGION ID(AccessControl::are_dynamic_attributes_allowed) ENABLED START -----*/
// Add your code to check if dynamic attributes are alowed
/*----- PROTECTED REGION END -----*/ // AccessControl::are_dynamic_attributes_allowed
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : AccessControl::is_AddAddressForUserState_allowed()
* Description : Execution allowed for AddAddressForUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_AddAddressForUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::AddAddressForUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::AddAddressForUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_AddDeviceForUserState_allowed()
* Description : Execution allowed for AddDeviceForUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_AddDeviceForUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::AddDeviceForUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::AddDeviceForUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_CloneUserState_allowed()
* Description : Execution allowed for CloneUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_CloneUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::CloneUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::CloneUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetAccessState_allowed()
* Description : Execution allowed for GetAccess command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetAccess_allowed(const CORBA::Any &any)
{
// Not any excluded states for GetAccess command.
/*----- PROTECTED REGION ID(AccessControl::GetAccessStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetAccessStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetAccessForMultiIPState_allowed()
* Description : Execution allowed for GetAccessForMultiIP command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetAccessForMultiIP_allowed(const CORBA::Any &any)
{
// Not any excluded states for GetAccessForMultiIP command.
/*----- PROTECTED REGION ID(AccessControl::GetAccessForMultiIPStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetAccessForMultiIPStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetAddressByUserState_allowed()
* Description : Execution allowed for GetAddressByUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetAddressByUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::GetAddressByUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetAddressByUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetAllowedCommandsState_allowed()
* Description : Execution allowed for GetAllowedCommands command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetAllowedCommands_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::GetAllowedCommandsStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetAllowedCommandsStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetDeviceByUserState_allowed()
* Description : Execution allowed for GetDeviceByUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetDeviceByUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::GetDeviceByUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetDeviceByUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetDeviceClassState_allowed()
* Description : Execution allowed for GetDeviceClass command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetDeviceClass_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::GetDeviceClassStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetDeviceClassStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_GetUsersState_allowed()
* Description : Execution allowed for GetUsers command.
*/
//--------------------------------------------------------
bool AccessControl::is_GetUsers_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::GetUsersStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::GetUsersStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_RegisterServiceState_allowed()
* Description : Execution allowed for RegisterService command.
*/
//--------------------------------------------------------
bool AccessControl::is_RegisterService_allowed(const CORBA::Any &any)
{
// Not any excluded states for RegisterService command.
/*----- PROTECTED REGION ID(AccessControl::RegisterServiceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::RegisterServiceStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_RemoveAddressForUserState_allowed()
* Description : Execution allowed for RemoveAddressForUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_RemoveAddressForUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::RemoveAddressForUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::RemoveAddressForUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_RemoveDeviceForUserState_allowed()
* Description : Execution allowed for RemoveDeviceForUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_RemoveDeviceForUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::RemoveDeviceForUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::RemoveDeviceForUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_RemoveUserState_allowed()
* Description : Execution allowed for RemoveUser command.
*/
//--------------------------------------------------------
bool AccessControl::is_RemoveUser_allowed(const CORBA::Any &any)
{
if ( // Compare device state with not allowed states for command
get_state() == Tango::FAULT)
{
/*----- PROTECTED REGION ID(AccessControl::RemoveUserStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::RemoveUserStateAllowed
return false;
}
return true;
}
//--------------------------------------------------------
/**
* Method : AccessControl::is_UnregisterServiceState_allowed()
* Description : Execution allowed for UnregisterService command.
*/
//--------------------------------------------------------
bool AccessControl::is_UnregisterService_allowed(const CORBA::Any &any)
{
// Not any excluded states for UnregisterService command.
/*----- PROTECTED REGION ID(AccessControl::UnregisterServiceStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AccessControl::UnregisterServiceStateAllowed
return true;
}
/*----- PROTECTED REGION ID(AccessControl::are_dynamic_commands_allowed) ENABLED START -----*/
// Add your code to check if dynamic commands are alowed
/*----- PROTECTED REGION END -----*/ // AccessControl::are_dynamic_commands_allowed
} // namespace AccessControl_ns
|