2008-06-17 20:27:32 +04:00
/* -------------------------------------------------------------------------- */
2012-01-12 15:29:18 +04:00
/* Copyright 2002-2012, 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 HOST_POOL_H_
# define HOST_POOL_H_
# include "PoolSQL.h"
# include "Host.h"
# include <time.h>
# include <sstream>
# include <iostream>
# include <vector>
using namespace std ;
/**
2010-04-04 03:12:52 +04:00
* The Host Pool class .
2008-06-17 20:27:32 +04:00
*/
class HostPool : public PoolSQL
{
public :
2010-12-26 20:58:41 +03:00
HostPool ( SqlDB * db ,
vector < const Attribute * > hook_mads ,
2011-12-20 02:35:46 +04:00
const string & hook_location ,
const string & remotes_location ) ;
2008-06-17 20:27:32 +04:00
~ HostPool ( ) { } ;
/**
* Function to allocate a new Host object
* @ param oid the id assigned to the Host
2010-04-28 20:25:43 +04:00
* @ return the oid assigned to the object or - 1 in case of failure
2008-06-17 20:27:32 +04:00
*/
int allocate (
int * oid ,
2010-08-05 21:28:28 +04:00
const string & hostname ,
const string & im_mad_name ,
const string & vmm_mad_name ,
2011-11-10 20:28:32 +04:00
const string & vnm_mad_name ,
2012-02-24 21:53:18 +04:00
int cluster_id ,
const string & cluster_name ,
2010-08-05 21:28:28 +04:00
string & error_str ) ;
2008-06-17 20:27:32 +04:00
/**
* Function to get a Host from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid Host unique id
* @ param lock locks the Host mutex
* @ return a pointer to the Host , 0 if the Host could not be loaded
*/
Host * get (
int oid ,
bool lock )
{
return static_cast < Host * > ( PoolSQL : : get ( oid , lock ) ) ;
} ;
2010-04-04 03:12:52 +04:00
2011-03-21 18:16:30 +03:00
/**
* Function to get a Host from the pool , if the object is not in memory
* it is loaded from the DB
* @ param hostname
* @ param lock locks the Host mutex
* @ return a pointer to the Host , 0 if the Host could not be loaded
*/
Host * get ( string name , bool lock )
{
2012-01-25 15:26:46 +04:00
// The owner is set to -1, because it is not used in the key() method
2011-03-21 18:16:30 +03:00
return static_cast < Host * > ( PoolSQL : : get ( name , - 1 , lock ) ) ;
} ;
2012-01-25 15:26:46 +04:00
/**
* Generate an index key for the object
* @ param name of the object
* @ param uid owner of the object , only used if needed
*
* @ return the key , a string
*/
string key ( const string & name , int uid )
{
// Name is enough key because Hosts can't repeat names.
return name ;
} ;
2008-06-17 20:27:32 +04:00
/**
* Bootstraps the database table ( s ) associated to the Host pool
2011-10-10 17:14:46 +04:00
* @ return 0 on success
2008-06-17 20:27:32 +04:00
*/
2011-10-10 17:14:46 +04:00
static int bootstrap ( SqlDB * _db )
2008-06-17 20:27:32 +04:00
{
2011-10-10 17:14:46 +04:00
return Host : : bootstrap ( _db ) ;
2008-06-17 20:27:32 +04:00
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2010-07-11 21:45:10 +04:00
* Get the least monitored hosts
2009-07-09 18:34:34 +04:00
* @ param discovered hosts , map to store the retrieved hosts hids and
* hostnames
2010-06-18 02:20:01 +04:00
* @ param host_limit max . number of hosts to monitor at a time
2009-07-09 18:34:34 +04:00
* @ return int 0 if success
2008-06-17 20:27:32 +04:00
*/
2010-06-18 02:20:01 +04:00
int discover ( map < int , string > * discovered_hosts , int host_limit ) ;
2008-06-22 05:51:49 +04:00
2009-07-09 18:34:34 +04:00
/**
* Allocates a given capacity to the host
* @ param oid the id of the host to allocate the capacity
* @ param cpu amount of CPU
* @ param mem amount of main memory
* @ param disk amount of disk
*/
2008-06-22 05:51:49 +04:00
void add_capacity ( int oid , int cpu , int mem , int disk )
{
2010-04-04 03:12:52 +04:00
Host * host = get ( oid , true ) ;
if ( host ! = 0 )
{
host - > add_capacity ( cpu , mem , disk ) ;
update ( host ) ;
host - > unlock ( ) ;
}
2008-06-22 05:51:49 +04:00
} ;
2010-04-04 03:12:52 +04:00
2009-07-09 18:34:34 +04:00
/**
* De - Allocates a given capacity to the host
* @ param oid the id of the host to allocate the capacity
* @ param cpu amount of CPU
* @ param mem amount of main memory
* @ param disk amount of disk
2010-04-04 03:12:52 +04:00
*/
2008-06-22 05:51:49 +04:00
void del_capacity ( int oid , int cpu , int mem , int disk )
{
2010-04-04 03:12:52 +04:00
Host * host = get ( oid , true ) ;
if ( host ! = 0 )
{
host - > del_capacity ( cpu , mem , disk ) ;
update ( host ) ;
host - > unlock ( ) ;
}
2008-06-22 05:51:49 +04:00
} ;
2009-07-09 18:34:34 +04:00
2011-06-10 18:58:28 +04:00
int drop ( PoolObjectSQL * objsql , string & error_msg )
{
Host * host = static_cast < Host * > ( objsql ) ;
if ( host - > get_share_running_vms ( ) > 0 )
{
error_msg = " Can not remove a host with running VMs " ;
return - 1 ;
}
return PoolSQL : : drop ( objsql , error_msg ) ;
} ;
2009-07-09 18:34:34 +04:00
/**
* Dumps the HOST 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 )
2010-07-08 19:26:25 +04:00
{
2011-03-09 15:23:01 +03:00
return PoolSQL : : dump ( oss , " HOST_POOL " , Host : : table , where ) ;
2010-07-08 19:26:25 +04:00
} ;
/**
2011-03-15 19:06:08 +03:00
* Finds a set objects that satisfies a given condition
* @ param oids a vector with the oids of the objects .
* @ param the name of the DB table .
* @ param where condition in SQL format .
2010-07-08 19:26:25 +04:00
*
2011-03-15 19:06:08 +03:00
* @ return 0 on success
2010-07-08 19:26:25 +04:00
*/
2011-03-15 19:06:08 +03:00
int search ( vector < int > & oids , const string & where )
2010-07-08 19:26:25 +04:00
{
2011-03-15 19:06:08 +03:00
return PoolSQL : : search ( oids , Host : : table , where ) ;
2010-07-08 19:26:25 +04:00
} ;
2008-06-17 20:27:32 +04:00
private :
2010-07-08 19:26:25 +04:00
2008-06-17 20:27:32 +04:00
/**
* Factory method to produce Host objects
* @ return a pointer to the new Host
*/
PoolObjectSQL * create ( )
{
2012-02-24 21:53:18 +04:00
return new Host ( - 1 , " " , " " , " " , " " , - 1 , " " ) ;
2008-06-17 20:27:32 +04:00
} ;
2010-04-04 03:12:52 +04:00
/**
* Callback function to get the IDs of the hosts to be monitored
* ( Host : : discover )
* @ 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 discover_cb ( void * _map , int num , char * * values , char * * names ) ;
2008-06-17 20:27:32 +04:00
} ;
2010-07-08 19:26:25 +04:00
# endif /*HOST_POOL_H_*/