2019-09-09 14:43:51 +02:00
/* -------------------------------------------------------------------------- */
2022-04-07 19:49:58 +02:00
/* Copyright 2002-2022, OpenNebula Project, OpenNebula Systems */
2019-09-09 14:43:51 +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 HOOK_POOL_H_
# define HOOK_POOL_H_
# include "PoolSQL.h"
# include "Hook.h"
# include "HookAPI.h"
2020-06-29 12:14:00 +02:00
# include "OneDB.h"
2019-09-09 14:43:51 +02:00
2020-07-02 22:42:10 +02:00
class SqlDB ;
2019-09-09 14:43:51 +02:00
class HookPool : public PoolSQL
{
public :
2020-06-29 12:14:00 +02:00
HookPool ( SqlDB * db ) : PoolSQL ( db , one_db : : hook_table ) { } ;
2019-09-09 14:43:51 +02:00
~ HookPool ( ) { } ;
/**
* Function to allocate a new Hook object
* @ param oid the id assigned to the Hook
* @ return the oid assigned to the object or - 1 in case of failure
*/
2020-09-15 11:16:00 +02:00
int allocate ( std : : unique_ptr < Template > tmpl , std : : string & error_str ) ;
2019-09-09 14:43:51 +02:00
/**
2020-09-10 09:08:29 +02:00
* Gets an object from the pool ( if needed the object is loaded from the
* database ) . The object is locked , other threads can ' t access the same
* object . The lock is released by destructor .
* @ param oid the Hook unique identifier
* @ return a pointer to the Hook , nullptr in case of failure
2019-09-09 14:43:51 +02:00
*/
2020-09-10 09:08:29 +02:00
std : : unique_ptr < Hook > get ( int oid )
2019-09-09 14:43:51 +02:00
{
2020-09-10 09:08:29 +02:00
return PoolSQL : : get < Hook > ( oid ) ;
}
2019-09-09 14:43:51 +02:00
/**
2020-09-10 09:08:29 +02:00
* Gets a read only object from the pool ( if needed the object is loaded from the
* database ) . No object lock , other threads may work with the same object .
* @ param oid the Hook unique identifier
* @ return a pointer to the Hook , nullptr in case of failure
2019-09-09 14:43:51 +02:00
*/
2020-09-10 09:08:29 +02:00
std : : unique_ptr < Hook > get_ro ( int oid )
2019-09-09 14:43:51 +02:00
{
2020-09-10 09:08:29 +02:00
return PoolSQL : : get_ro < Hook > ( oid ) ;
2019-09-09 14:43:51 +02:00
}
/**
* Bootstraps the database table ( s ) associated to the Hook pool
* @ return 0 on success
*/
static int bootstrap ( SqlDB * _db )
{
return Hook : : bootstrap ( _db ) ;
} ;
/**
* Dumps the HOOK pool in XML format . A filter can be also added to the
* query
* @ param oss the output stream to dump the pool contents
* @ param where filter for the objects , defaults to all
2020-04-13 17:32:21 +02:00
* @ param sid first element used for pagination
* @ param eid last element used for pagination , - 1 to disable
2019-09-09 14:43:51 +02:00
* @ param desc descending order of pool elements
*
* @ return 0 on success
*/
2020-04-13 17:32:21 +02:00
int dump ( std : : string & oss , const std : : string & where , int sid , int eid ,
2019-09-09 14:43:51 +02:00
bool desc )
{
2020-06-29 12:14:00 +02:00
return PoolSQL : : dump ( oss , " HOOK_POOL " , " body " , one_db : : hook_table ,
where , sid , eid , desc ) ;
2019-09-09 14:43:51 +02:00
} ;
/**
* Factory method to produce Hook objects
* @ return a pointer to the new VN
*/
PoolObjectSQL * create ( )
{
return new Hook ( 0 ) ;
} ;
} ;
# endif