2010-05-20 20:58:17 +04:00
/* -------------------------------------------------------------------------- */
2011-02-25 16:34:44 +03:00
/* Copyright 2002-2011, OpenNebula Project Leads (OpenNebula.org) */
2010-05-20 20:58:17 +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 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 :
2011-03-08 18:52:45 +03:00
ImagePool ( SqlDB * db ,
const string & _source_prefix ,
const string & _default_type ,
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 ,
2011-02-25 21:02:29 +03:00
string user_name ,
2010-07-14 21:37:43 +04:00
ImageTemplate * img_template ,
2010-08-05 21:28:28 +04:00
int * oid ,
string & error_str ) ;
2010-05-20 20:58:17 +04:00
/**
2011-03-08 18:52:45 +03:00
* * Function to get a Image from the pool , if the object is not in memory
2010-05-20 20:58:17 +04:00
* 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
*/
2011-03-05 05:24:11 +03:00
Image * get ( int oid , bool lock )
2010-05-20 20:58:17 +04:00
{
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
2011-03-08 18:52:45 +03:00
* @ return a pointer to the Image , 0 if the image could not be loaded
2010-05-20 20:58:17 +04:00
*/
2011-03-05 05:24:11 +03:00
Image * get ( const string & name , int uid , bool lock )
2010-05-20 20:58:17 +04:00
{
2011-03-05 00:37:21 +03:00
return static_cast < Image * > ( PoolSQL : : get ( name , uid , lock ) ) ;
2010-05-20 20:58:17 +04:00
}
2011-03-08 18:52:45 +03:00
/**
* Update a particular Image
2010-05-20 20:58:17 +04:00
* @ 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 )
{
2011-03-05 00:37:21 +03:00
return PoolSQL : : drop ( image ) ;
2010-05-20 20:58:17 +04:00
} ;
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
*/
2011-03-09 15:23:01 +03:00
int dump ( ostringstream & oss , const string & where )
{
return PoolSQL : : dump ( oss , " IMAGE_POOL " , Image : : table , where ) ;
}
2010-05-20 20:58:17 +04:00
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
2011-03-08 18:52:45 +03:00
* @ param uid of VM owner ( to look for the image id within its images )
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 ,
2011-03-05 00:37:21 +03:00
Image : : ImageType * img_type ,
int uid ) ;
2010-07-14 20:11:29 +04:00
/**
* Generates an Authorization token for the DISK attribute
* @ param disk the disk to be authorized
2011-03-08 18:52:45 +03:00
* @ param uid of owner ( to look for the image id within her images )
2010-07-14 20:11:29 +04:00
* @ param ar the AuthRequest
*/
2011-03-05 00:37:21 +03:00
void authorize_disk ( VectorAttribute * disk , int uid , AuthRequest * ar ) ;
2010-07-14 20:11:29 +04:00
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
* */
2011-03-08 18:52:45 +03:00
static string _source_prefix ;
2010-06-24 18:47:39 +04:00
2010-05-25 20:19:22 +04:00
/**
* Default image type
* */
2011-03-08 18:52:45 +03: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
* */
2011-03-08 18:52:45 +03:00
static string _default_dev_prefix ;
2010-06-30 19:08:11 +04:00
//--------------------------------------------------------------------------
// Pool Attributes
// -------------------------------------------------------------------------
2010-05-20 20:58:17 +04:00
/**
* Factory method to produce Image objects
* @ return a pointer to the new Image
*/
PoolObjectSQL * create ( )
{
2011-03-08 18:52:45 +03:00
return new Image ( - 1 , " " , 0 ) ;
2010-05-20 20:58:17 +04:00
} ;
} ;
2010-05-21 14:36:24 +04:00
# endif /*IMAGE_POOL_H_*/