2010-05-20 20:58:17 +04:00
/* -------------------------------------------------------------------------- */
/* Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org) */
/* */
/* 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 IMAGE_POOL_H_
# define IMAGE_POOL_H_
# include "PoolSQL.h"
# include "Image.h"
2010-05-25 20:19:22 +04:00
# include "NebulaLog.h"
2010-05-20 20:58:17 +04:00
# include <time.h>
# include <sstream>
# include <iostream>
# include <vector>
2010-07-14 20:11:29 +04:00
class AuthRequest ;
2010-05-20 20:58:17 +04:00
using namespace std ;
/**
* The Image Pool class .
*/
class ImagePool : public PoolSQL
{
public :
2010-05-28 20:56:35 +04:00
ImagePool ( SqlDB * db ,
2010-05-25 20:19:22 +04:00
const string & _source_prefix ,
const string & _default_type ,
2010-05-31 18:52:51 +04:00
const string & _default_dev_prefix ) ;
2010-05-20 20:58:17 +04:00
~ ImagePool ( ) { } ;
/**
* Function to allocate a new Image object
* @ param uid the user id of the image ' s owner
* @ param stemplate template associated with the image
* @ param oid the id assigned to the Image
2010-06-24 18:47:39 +04:00
* @ return the oid assigned to the object ,
2010-05-20 20:58:17 +04:00
* - 1 in case of failure
* - 2 in case of template parse failure
*/
int allocate (
2010-07-14 21:37:43 +04:00
int uid ,
ImageTemplate * img_template ,
2010-08-05 21:28:28 +04:00
int * oid ,
string & error_str ) ;
2010-05-20 20:58:17 +04:00
/**
* Function to get a Image from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid Image unique id
* @ param lock locks the Image mutex
* @ return a pointer to the Image , 0 if the Image could not be loaded
*/
Image * get (
int oid ,
bool lock )
{
return static_cast < Image * > ( PoolSQL : : get ( oid , lock ) ) ;
} ;
2010-06-24 18:47:39 +04:00
2010-05-20 20:58:17 +04:00
/**
* Function to get an Image from the pool using the image name
* @ param name of the image
* @ param lock locks the User mutex
* @ return a pointer to the Image , 0 if the User could not be loaded
*/
Image * get (
2010-06-24 20:35:18 +04:00
const string & name ,
bool lock )
2010-05-20 20:58:17 +04:00
{
map < string , int > : : iterator index ;
2010-05-21 14:36:24 +04:00
index = image_names . find ( name ) ;
2010-05-20 20:58:17 +04:00
2010-05-21 14:36:24 +04:00
if ( index ! = image_names . end ( ) )
2010-05-20 20:58:17 +04:00
{
return get ( ( int ) index - > second , lock ) ;
}
return 0 ;
}
/** Update a particular Image
* @ param image pointer to Image
* @ return 0 on success
*/
int update ( Image * image )
{
return image - > update ( db ) ;
} ;
2010-06-24 18:47:39 +04:00
2010-05-20 20:58:17 +04:00
/** Drops an image from the DB, the image mutex MUST BE locked
* @ param image pointer to Image
2010-06-08 19:42:18 +04:00
* @ return 0 on success
2010-05-20 20:58:17 +04:00
*/
int drop ( Image * image )
{
int rc = PoolSQL : : drop ( image ) ;
if ( rc = = 0 )
{
image_names . erase ( image - > get_name ( ) ) ;
}
return rc ;
} ;
2010-06-24 18:47:39 +04:00
2010-05-20 20:58:17 +04:00
/**
* Bootstraps the database table ( s ) associated to the Image pool
*/
static void bootstrap ( SqlDB * _db )
{
Image : : bootstrap ( _db ) ;
} ;
2010-06-24 18:47:39 +04:00
2010-05-20 20:58:17 +04:00
/**
* Dumps the Image 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
* @ return 0 on success
*/
int dump ( ostringstream & oss , const string & where ) ;
2010-06-24 20:35:18 +04:00
/**
* Generates a DISK attribute for VM templates using the Image metadata
* @ param disk the disk to be generated
2010-07-21 19:50:04 +04:00
* @ param disk_id the id for this disk
2010-07-20 20:53:03 +04:00
* @ param index number of datablock images used by the same VM . Will be
* automatically increased .
* @ param img_type will be set to the used image ' s type
2010-06-24 20:35:18 +04:00
* @ return 0 on success , - 1 error , - 2 not using the pool
*/
2010-07-21 19:50:04 +04:00
int disk_attribute ( VectorAttribute * disk ,
int disk_id ,
int * index ,
Image : : ImageType * img_type ) ;
2010-07-14 20:11:29 +04:00
/**
* Generates an Authorization token for the DISK attribute
* @ param disk the disk to be authorized
* @ param ar the AuthRequest
*/
void authorize_disk ( VectorAttribute * disk , AuthRequest * ar ) ;
2010-06-30 19:08:11 +04:00
static const string & source_prefix ( )
2010-06-30 15:10:07 +04:00
{
2010-06-30 19:08:11 +04:00
return _source_prefix ;
2010-06-30 15:10:07 +04:00
} ;
2010-06-30 19:08:11 +04:00
static const string & default_type ( )
2010-06-30 15:10:07 +04:00
{
2010-06-30 19:08:11 +04:00
return _default_type ;
2010-06-30 15:10:07 +04:00
} ;
2010-06-30 19:08:11 +04:00
static const string & default_dev_prefix ( )
2010-06-30 15:10:07 +04:00
{
2010-06-30 19:08:11 +04:00
return _default_dev_prefix ;
2010-06-30 15:10:07 +04:00
} ;
2010-05-20 20:58:17 +04:00
private :
2010-06-30 19:08:11 +04:00
//--------------------------------------------------------------------------
// Configuration Attributes for Images
// -------------------------------------------------------------------------
2010-05-25 20:19:22 +04:00
/**
* Path to the image repository
* */
2010-06-30 19:08:11 +04:00
static string _source_prefix ;
2010-06-24 18:47:39 +04:00
2010-05-25 20:19:22 +04:00
/**
* Default image type
* */
2010-06-30 19:08:11 +04:00
static string _default_type ;
2010-06-07 18:21:58 +04:00
2010-05-25 20:19:22 +04:00
/**
2010-05-28 20:56:35 +04:00
* Default device prefix
2010-05-25 20:19:22 +04:00
* */
2010-06-30 19:08:11 +04:00
static string _default_dev_prefix ;
//--------------------------------------------------------------------------
// Pool Attributes
// -------------------------------------------------------------------------
/**
* This map stores the association between IIDs and Image names
*/
map < string , int > image_names ;
2010-06-24 18:47:39 +04:00
2010-05-20 20:58:17 +04:00
/**
* Factory method to produce Image objects
* @ return a pointer to the new Image
*/
PoolObjectSQL * create ( )
{
return new Image ;
} ;
/**
* Callback function to get output the image pool in XML format
* ( Image : : dump )
* @ 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 dump_cb ( void * _oss , int num , char * * values , char * * names ) ;
2010-05-31 18:52:51 +04:00
/**
* Callback function to build the image_names map
* @ 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 init_cb ( void * nil , int num , char * * values , char * * names ) ;
2010-05-20 20:58:17 +04:00
} ;
2010-05-21 14:36:24 +04:00
# endif /*IMAGE_POOL_H_*/