2012-06-01 12:02:15 +02:00
/* -------------------------------------------------------------------------- */
2018-01-02 18:27:37 +01:00
/* Copyright 2002-2018, OpenNebula Project, OpenNebula Systems */
2012-06-01 12:02:15 +02:00
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); you may */
/* not use this file except in compliance with the License. You may obtain */
/* a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
/* See the License for the specific language governing permissions and */
/* limitations under the License. */
/* -------------------------------------------------------------------------- */
# ifndef SYNC_REQUEST_H_
# define SYNC_REQUEST_H_
# include <time.h>
# include "ActionManager.h"
/**
* Base class to implement synchronous operation in the MadManagers . This class
* cannot be directly instantiated .
*/
class SyncRequest : public ActionListener
{
public :
SyncRequest ( ) :
result ( false ) ,
message ( " " ) ,
timeout ( false ) ,
id ( - 1 ) ,
2017-09-15 00:38:54 +02:00
time_out ( 0 )
2012-06-01 12:02:15 +02:00
{
am . addListener ( this ) ;
} ;
virtual ~ SyncRequest ( ) { } ;
/**
2015-07-01 15:15:40 -04:00
* The result of the request , true if the operation succeeded
2012-06-01 12:02:15 +02:00
*/
bool result ;
/**
* Error message for negative results
*/
2017-04-20 16:13:41 +02:00
std : : string message ;
2012-06-01 12:02:15 +02:00
/**
* Time out , true if the request ended because of a time out
*/
bool timeout ;
2015-07-01 15:15:40 -04:00
2012-06-01 12:02:15 +02:00
/**
* Identification of this request
*/
int id ;
/**
* Notify client that we have an answer for the request
*/
void notify ( )
{
2017-02-03 14:19:15 +01:00
am . finalize ( ) ;
2012-06-01 12:02:15 +02:00
} ;
/**
* Wait for the AuthRequest to be completed
*/
void wait ( )
{
time_out = time ( 0 ) + 90 ; //Requests will expire in 1.5 minutes
2017-02-03 14:19:15 +01:00
am . loop ( ) ;
2012-06-01 12:02:15 +02:00
} ;
2017-04-20 16:13:41 +02:00
/**
* Wait for the AuthRequest to be completed
*/
void wait ( time_t t )
{
am . loop ( t ) ;
} ;
2012-06-01 12:02:15 +02:00
protected :
friend class MadManager ;
/**
* Time in seconds when this request will expire
*/
time_t time_out ;
/**
* The ActionManager that will be notify when the request is ready .
*/
ActionManager am ;
2017-04-20 16:13:41 +02:00
/**
* Timer action to finalize time - out waits
*/
void timer_action ( const ActionRequest & ar )
{
result = false ;
timeout = true ;
message = " Operation time out " ;
am . finalize ( ) ;
} ;
2012-06-01 12:02:15 +02:00
} ;
# endif /*SYNC_REQUEST_H_*/