2010-04-27 19:42:37 +04:00
/* ------------------------------------------------------------------------ */
2011-02-25 16:34:44 +03:00
/* Copyright 2002-2011, OpenNebula Project Leads (OpenNebula.org) */
2010-04-27 19:42:37 +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. */
/* -------------------------------------------------------------------------*/
2008-06-17 20:27:32 +04:00
# ifndef HOST_H_
# define HOST_H_
# include "PoolSQL.h"
2010-08-04 17:14:53 +04:00
# include "HostTemplate.h"
2008-06-17 20:27:32 +04:00
# include "HostShare.h"
using namespace std ;
/**
2010-04-04 03:12:52 +04:00
* The Host class .
2008-06-17 20:27:32 +04:00
*/
class Host : public PoolObjectSQL
{
public :
2010-04-04 03:12:52 +04:00
2010-04-27 19:42:37 +04:00
// ----------------------------------------------------------------------
2008-06-17 20:27:32 +04:00
// Host States
2010-04-27 19:42:37 +04:00
// ----------------------------------------------------------------------
2008-06-17 20:27:32 +04:00
enum HostState
{
2010-04-04 03:12:52 +04:00
INIT = 0 , /**< Initial state for enabled hosts. */
2008-06-17 20:27:32 +04:00
MONITORING = 1 , /**< The host is being monitored. */
MONITORED = 2 , /**< The host has been successfully monitored. */
ERROR = 3 , /**< An error ocurrer while monitoring the host. */
DISABLED = 4 /**< The host is disabled won't be monitored. */
} ;
2011-02-24 20:12:26 +03:00
/**
* Function to print the Host object into a string in XML format
* @ param xml the resulting XML string
* @ return a reference to the generated string
*/
2011-02-25 01:30:39 +03:00
string & to_xml ( string & xml ) const ;
2009-07-09 18:34:34 +04:00
2008-06-17 20:27:32 +04:00
/**
2011-02-24 20:12:26 +03:00
* Rebuilds the object from an xml formatted string
* @ param xml_str The xml - formatted string
*
* @ return 0 on success , - 1 otherwise
2008-06-17 20:27:32 +04:00
*/
2011-02-25 01:30:39 +03:00
int from_xml ( const string & xml_str ) ;
2008-06-17 20:27:32 +04:00
/**
* Check if the host is enabled
* @ return true if the host is enabled
*/
bool isEnabled ( ) const
{
return state ! = DISABLED ;
}
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
* Updates the Host ' s last_monitored time stamp .
* @ param success if the monitored action was successfully performed
*/
void touch ( bool success )
{
last_monitored = time ( 0 ) ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
if ( state ! = DISABLED ) //Don't change the state is host is disabled
{
2010-07-11 21:45:10 +04:00
if ( success = = true )
{
state = MONITORED ;
}
else
{
state = ERROR ;
}
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-04-04 03:12:52 +04:00
* Disables the current host , it will not be monitored nor used by the
2008-06-17 20:27:32 +04:00
* scheduler
2010-04-04 03:12:52 +04:00
*/
2008-06-17 20:27:32 +04:00
void disable ( )
{
2010-07-11 21:45:10 +04:00
state = DISABLED ;
2008-06-17 20:27:32 +04:00
} ;
/**
2010-04-04 03:12:52 +04:00
* Enables the current host , it will be monitored and could be used by
2008-06-17 20:27:32 +04:00
* the scheduler
2010-04-04 03:12:52 +04:00
*/
2008-06-17 20:27:32 +04:00
void enable ( )
{
2010-07-11 21:45:10 +04:00
state = INIT ;
2008-06-17 20:27:32 +04:00
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/** Update host counters and update the whole host on the DB
* @ param parse_str string with values to be parsed
* @ return 0 on success
* */
int update_info ( string & parse_str ) ;
/**
2010-04-27 19:42:37 +04:00
* Retrives host state
* @ return HostState code number
2008-06-17 20:27:32 +04:00
*/
HostState get_state ( ) const
{
return state ;
} ;
/**
2010-04-27 19:42:37 +04:00
* Retrives VMM mad name
* @ return string vmm mad name
2008-06-17 20:27:32 +04:00
*/
const string & get_vmm_mad ( ) const
{
return vmm_mad_name ;
} ;
2010-04-04 03:12:52 +04:00
2011-11-10 20:28:32 +04:00
/**
* Retrives VNM mad name
* @ return string vnm mad name
*/
const string & get_vnm_mad ( ) const
{
return vnm_mad_name ;
} ;
2008-06-17 20:27:32 +04:00
/**
2010-04-27 19:42:37 +04:00
* Retrives TM mad name
* @ return string tm mad name
2008-06-17 20:27:32 +04:00
*/
const string & get_tm_mad ( ) const
{
return tm_mad_name ;
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2010-04-27 19:42:37 +04:00
* Retrives IM mad name
* @ return string im mad name
2008-06-17 20:27:32 +04:00
*/
const string & get_im_mad ( ) const
{
return im_mad_name ;
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2010-04-27 19:42:37 +04:00
* Sets host state
* @ param HostState state that applies to this host
2008-06-17 20:27:32 +04:00
*/
void set_state ( HostState state )
{
this - > state = state ;
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2010-04-27 19:42:37 +04:00
* Retrives last time the host was monitored
* @ return time_t last monitored time
2008-06-17 20:27:32 +04:00
*/
time_t get_last_monitored ( ) const
{
return last_monitored ;
} ;
// ------------------------------------------------------------------------
// Share functions
2010-04-04 03:12:52 +04:00
// ------------------------------------------------------------------------
2009-07-14 20:40:33 +04:00
/**
*
*
*/
2010-03-08 02:11:45 +03:00
int get_share_running_vms ( )
{
return host_share . running_vms ;
}
2009-07-14 20:40:33 +04:00
int get_share_disk_usage ( )
{
return host_share . disk_usage ;
}
int get_share_mem_usage ( )
{
return host_share . mem_usage ;
}
int get_share_cpu_usage ( )
{
return host_share . cpu_usage ;
}
int get_share_max_disk ( )
{
return host_share . max_disk ;
}
int get_share_max_mem ( )
{
return host_share . max_mem ;
}
int get_share_max_cpu ( )
{
return host_share . max_cpu ;
}
int get_share_free_disk ( )
{
return host_share . free_disk ;
}
int get_share_free_mem ( )
{
return host_share . free_mem ;
}
int get_share_free_cpu ( )
{
return host_share . free_cpu ;
}
int get_share_used_disk ( )
{
return host_share . used_disk ;
}
int get_share_used_mem ( )
{
return host_share . used_mem ;
}
int get_share_used_cpu ( )
{
return host_share . used_cpu ;
}
2008-06-17 20:27:32 +04:00
/**
2010-04-04 03:12:52 +04:00
* Adds a new VM to the given share by icrementing the cpu , mem and disk
2008-06-17 20:27:32 +04:00
* counters
* @ param cpu needed by the VM ( percentage )
* @ param mem needed by the VM ( in Kb )
* @ param disk needed by the VM
* @ return 0 on success
*/
2008-06-22 05:51:49 +04:00
void add_capacity ( int cpu , int mem , int disk )
2008-06-17 20:27:32 +04:00
{
host_share . add ( cpu , mem , disk ) ;
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2010-04-04 03:12:52 +04:00
* Deletes a new VM from the given share by decrementing the cpu , mem and
2008-06-17 20:27:32 +04:00
* disk counters
* @ param cpu useded by the VM ( percentage )
* @ param mem used by the VM ( in Kb )
* @ param disk used by the VM
* @ return 0 on success
*/
2008-06-22 05:51:49 +04:00
void del_capacity ( int cpu , int mem , int disk )
2010-04-04 03:12:52 +04:00
{
host_share . del ( cpu , mem , disk ) ;
2008-06-17 20:27:32 +04:00
} ;
/**
* Tests whether a new VM can be hosted by the host or not
* @ param cpu needed by the VM ( percentage )
* @ param mem needed by the VM ( in Kb )
* @ param disk needed by the VM
* @ return true if the share can host the VM
*/
2008-06-22 05:51:49 +04:00
bool test_capacity ( int cpu , int mem , int disk )
2008-06-17 20:27:32 +04:00
{
return host_share . test ( cpu , mem , disk ) ;
}
2010-04-04 03:12:52 +04:00
2011-06-02 01:53:09 +04:00
/**
* Factory method for host templates
*/
Template * get_new_template ( )
{
return new HostTemplate ;
}
2008-06-17 20:27:32 +04:00
private :
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
// -------------------------------------------------------------------------
// Friends
// -------------------------------------------------------------------------
2010-04-04 03:12:52 +04:00
friend class HostPool ;
2008-06-17 20:27:32 +04:00
// -------------------------------------------------------------------------
// Host Description
// -------------------------------------------------------------------------
/**
* The state of the Host
*/
HostState state ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
* Name of the IM driver used to monitor this host
2010-04-04 03:12:52 +04:00
*/
2008-06-17 20:27:32 +04:00
string im_mad_name ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
* Name of the VM driver used to execute VMs in this host
2010-04-04 03:12:52 +04:00
*/
2008-06-17 20:27:32 +04:00
string vmm_mad_name ;
2010-04-04 03:12:52 +04:00
2011-11-10 20:28:32 +04:00
/**
* Name of the VN driver used to manage networking in this host
*/
string vnm_mad_name ;
2008-06-17 20:27:32 +04:00
/**
* Name of the TM driver used to transfer file to and from this host
2010-04-04 03:12:52 +04:00
*/
2008-06-17 20:27:32 +04:00
string tm_mad_name ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
2011-03-17 23:04:24 +03:00
* If Host State = MONITORED last time it got fully monitored or 1 Jan 1970
2008-06-17 20:27:32 +04:00
* Host State = MONITORING last time it got a signal to be monitored
2010-04-04 03:12:52 +04:00
*/
2009-07-09 18:34:34 +04:00
time_t last_monitored ;
2008-06-17 20:27:32 +04:00
// -------------------------------------------------------------------------
// Host Attributes
// -------------------------------------------------------------------------
/**
2009-07-09 18:34:34 +04:00
* The Share represents the logical capacity associated with the host
2008-06-17 20:27:32 +04:00
*/
2009-07-09 18:34:34 +04:00
HostShare host_share ;
2008-06-17 20:27:32 +04:00
// *************************************************************************
// Constructor
// *************************************************************************
2011-03-17 23:04:24 +03:00
Host ( int id = - 1 ,
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 = " " ,
2011-05-17 14:45:16 +04:00
const string & tm_mad_name = " " ) ;
2008-06-17 20:27:32 +04:00
virtual ~ Host ( ) ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
// *************************************************************************
2011-02-25 01:30:39 +03:00
// DataBase implementation (Private)
2008-06-17 20:27:32 +04:00
// *************************************************************************
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
static const char * db_names ;
static const char * db_bootstrap ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
static const char * table ;
/**
2011-02-25 01:30:39 +03:00
* Execute an INSERT or REPLACE Sql query .
* @ param db The SQL DB
* @ param replace Execute an INSERT or a REPLACE
* @ return 0 one success
*/
int insert_replace ( SqlDB * db , bool replace ) ;
2008-06-17 20:27:32 +04:00
/**
2011-02-25 01:30:39 +03:00
* Bootstraps the database table ( s ) associated to the Host
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 )
2011-02-25 01:30:39 +03:00
{
ostringstream oss_host ( Host : : db_bootstrap ) ;
2008-06-17 20:27:32 +04:00
2011-10-10 17:14:46 +04:00
return db - > exec ( oss_host ) ;
2011-02-25 01:30:39 +03:00
} ;
2010-04-04 03:12:52 +04:00
2008-06-17 20:27:32 +04:00
/**
* Writes the Host and its associated HostShares in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2011-02-25 01:30:39 +03:00
int insert ( SqlDB * db , string & error_str ) ;
2009-07-09 18:34:34 +04:00
/**
2008-06-17 20:27:32 +04:00
* Writes / updates the Hosts data fields in the database .
* @ param db pointer to the db
2009-07-09 18:34:34 +04:00
* @ return 0 on success
*/
2011-02-25 01:30:39 +03:00
int update ( SqlDB * db ) ;
2008-06-17 20:27:32 +04:00
} ;
# endif /*HOST_H_*/