2008-06-17 20:27:32 +04:00
/* -------------------------------------------------------------------------- */
2010-02-22 20:00:30 +03:00
/* Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org) */
2008-06-17 20:27:32 +04: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 POOL_OBJECT_SQL_H_
# define POOL_OBJECT_SQL_H_
# include "ObjectSQL.h"
2011-02-24 20:12:26 +03:00
# include "ObjectXML.h"
2008-06-17 20:27:32 +04:00
# include <pthread.h>
2011-02-24 20:12:26 +03:00
# include <string.h>
2008-06-17 20:27:32 +04:00
using namespace std ;
/**
2010-04-03 18:54:54 +04:00
* PoolObject class . Provides a SQL backend interface for Pool components . Each
2008-06-17 20:27:32 +04:00
* object is identified with and unique OID
2010-04-03 18:54:54 +04:00
*
* Note : The PoolObject provides a synchronization mechanism ( mutex ) . This
2008-06-17 20:27:32 +04:00
* implementation assumes that the mutex IS LOCKED when the class destructor
2010-04-03 18:54:54 +04:00
* is called .
2008-06-17 20:27:32 +04:00
*/
2011-02-24 20:12:26 +03:00
class PoolObjectSQL : public ObjectSQL , public ObjectXML
2008-06-17 20:27:32 +04:00
{
public :
2011-02-25 01:30:39 +03:00
//TODO remove Defaults for Constructor Attributes
PoolObjectSQL ( int id = - 1 , const char * _table = 0 )
: ObjectSQL ( ) , ObjectXML ( ) , oid ( id ) , valid ( true ) , table ( _table )
2008-06-17 20:27:32 +04:00
{
pthread_mutex_init ( & mutex , 0 ) ;
} ;
virtual ~ PoolObjectSQL ( )
{
pthread_mutex_unlock ( & mutex ) ;
2010-04-03 18:54:54 +04:00
2008-06-17 20:27:32 +04:00
pthread_mutex_destroy ( & mutex ) ;
} ;
2010-04-03 18:54:54 +04:00
2008-06-17 20:27:32 +04:00
int get_oid ( ) const
{
return oid ;
} ;
2009-07-13 16:21:14 +04:00
/**
* Check if the object is valid
* @ return true if object is valid
*/
const bool & isValid ( ) const
{
return valid ;
} ;
/**
2010-04-03 18:54:54 +04:00
* Set the object valid flag
2009-07-13 16:21:14 +04:00
* @ param _valid new valid flag
*/
void set_valid ( const bool _valid )
{
valid = _valid ;
2011-02-24 20:12:26 +03:00
} ;
2009-07-13 16:21:14 +04:00
2008-06-17 20:27:32 +04:00
/**
* Function to lock the object
*/
void lock ( )
{
pthread_mutex_lock ( & mutex ) ;
} ;
/**
* Function to unlock the object
*/
void unlock ( )
{
pthread_mutex_unlock ( & mutex ) ;
} ;
2010-04-03 18:54:54 +04:00
2011-02-24 20:12:26 +03:00
/**
* Function to print the object into a string in XML format
* @ param xml the resulting XML string
* @ return a reference to the generated string
*/
// virtual string& to_xml(string& xml) const = 0;
// TODO: change to pure virtual when all child classes implement it
string & to_xml ( string & xml ) const
{
return xml ;
} ;
/**
* Rebuilds the object from an xml formatted string
* @ param xml_str The xml - formatted string
*
* @ return 0 on success , - 1 otherwise
*/
// virtual int from_xml(const string &xml_str) = 0;
// TODO: change to pure virtual when all child classes implement it
virtual int from_xml ( const string & xml_str )
{
return 0 ;
} ;
2008-06-17 20:27:32 +04:00
protected :
2010-04-03 18:54:54 +04:00
2008-06-17 20:27:32 +04:00
/**
2011-02-24 20:12:26 +03:00
* Callback function to unmarshall a PoolObjectSQL
* @ param num the number of columns read from the DB
* @ param names the column names
* @ param vaues the column values
* @ return 0 on success
*/
int select_cb ( void * nil , int num , char * * values , char * * names )
{
if ( ( ! values [ 0 ] ) | | ( num ! = 1 ) )
{
return - 1 ;
}
2011-02-25 01:30:39 +03:00
return from_xml ( values [ 0 ] ) ;
2011-02-24 20:12:26 +03:00
} ;
/**
* Reads the PoolObjectSQL ( identified by its OID ) from the database .
* @ param db pointer to the db
* @ return 0 on success
*/
virtual int select ( SqlDB * db )
{
ostringstream oss ;
int rc ;
int boid ;
set_callback (
static_cast < Callbackable : : Callback > ( & PoolObjectSQL : : select_cb ) ) ;
2011-02-25 01:30:39 +03:00
oss < < " SELECT body FROM " < < table < < " WHERE oid = " < < oid ;
2011-02-24 20:12:26 +03:00
boid = oid ;
oid = - 1 ;
rc = db - > exec ( oss , this ) ;
unset_callback ( ) ;
if ( ( rc ! = 0 ) | | ( oid ! = boid ) )
{
return - 1 ;
}
return 0 ;
} ;
/**
* Drops object from the database
* @ param db pointer to the db
* @ return 0 on success
*/
virtual int drop ( SqlDB * db )
{
ostringstream oss ;
int rc ;
2011-02-25 01:30:39 +03:00
oss < < " DELETE FROM " < < table < < " WHERE oid= " < < oid ;
2011-02-24 20:12:26 +03:00
rc = db - > exec ( oss ) ;
if ( rc = = 0 )
{
set_valid ( false ) ;
}
return rc ;
} ;
/**
* Function to output a pool object into a stream in XML format
* @ param oss the output stream
* @ param num the number of columns read from the DB
* @ param names the column names
* @ param vaues the column values
* @ return 0 on success
*/
static int dump ( ostringstream & oss , int num , char * * values , char * * names )
{
if ( ( ! values [ 0 ] ) | | ( num ! = 1 ) )
{
return - 1 ;
}
oss < < values [ 0 ] ;
return 0 ;
} ;
/**
* The object ' s unique ID
2008-06-17 20:27:32 +04:00
*/
2009-07-13 16:21:14 +04:00
int oid ;
/**
2011-02-24 20:12:26 +03:00
* The contents of this object are valid
2009-07-13 16:21:14 +04:00
*/
2010-04-03 18:54:54 +04:00
bool valid ;
2008-06-17 20:27:32 +04:00
private :
/**
* The PoolSQL , friend to easily manipulate its Objects
*/
friend class PoolSQL ;
/**
2010-04-03 18:54:54 +04:00
* The mutex for the PoolObject . This implementation assumes that the mutex
* IS LOCKED when the class destructor is called .
2008-06-17 20:27:32 +04:00
*/
pthread_mutex_t mutex ;
2011-02-25 01:30:39 +03:00
/**
* Pointer to the SQL table for the PoolObjectSQL
*/
const char * table ;
2008-06-17 20:27:32 +04:00
} ;
# endif /*POOL_OBJECT_SQL_H_*/