2019-09-09 15:43:51 +03:00
/* -------------------------------------------------------------------------- */
2020-04-30 16:00:02 +03:00
/* Copyright 2002-2020, OpenNebula Project, OpenNebula Systems */
2019-09-09 15:43:51 +03: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 13:14:00 +03:00
# include "OneDB.h"
2019-09-09 15:43:51 +03:00
2020-07-02 23:42:10 +03:00
class SqlDB ;
2019-09-09 15:43:51 +03:00
class HookPool : public PoolSQL
{
public :
2020-06-29 13:14:00 +03:00
HookPool ( SqlDB * db ) : PoolSQL ( db , one_db : : hook_table ) { } ;
2019-09-09 15:43:51 +03: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-07-02 23:42:10 +03:00
int allocate ( Template * tmpl , std : : string & error_str ) ;
2019-09-09 15:43:51 +03:00
/**
* Function to get a Hook from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid Hook unique id
* @ return a pointer to the Hook , 0 if the Hook could not be loaded
*/
Hook * get ( int oid )
{
return static_cast < Hook * > ( PoolSQL : : get ( oid ) ) ;
} ;
/**
* Function to get a read only Hook from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid Hook unique id
* @ return a pointer to the Hook , 0 if the Host could not be loaded
*/
Hook * get_ro ( int oid )
{
return static_cast < Hook * > ( PoolSQL : : get_ro ( oid ) ) ;
}
/**
* 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 18:32:21 +03:00
* @ param sid first element used for pagination
* @ param eid last element used for pagination , - 1 to disable
2019-09-09 15:43:51 +03:00
* @ param desc descending order of pool elements
*
* @ return 0 on success
*/
2020-04-13 18:32:21 +03:00
int dump ( std : : string & oss , const std : : string & where , int sid , int eid ,
2019-09-09 15:43:51 +03:00
bool desc )
{
2020-06-29 13:14:00 +03:00
return PoolSQL : : dump ( oss , " HOOK_POOL " , " body " , one_db : : hook_table ,
where , sid , eid , desc ) ;
2019-09-09 15:43:51 +03:00
} ;
/**
* Factory method to produce Hook objects
* @ return a pointer to the new VN
*/
PoolObjectSQL * create ( )
{
return new Hook ( 0 ) ;
} ;
} ;
# endif