2012-02-24 18:53:53 +04:00
/* ------------------------------------------------------------------------ */
2020-04-30 16:00:02 +03:00
/* Copyright 2002-2020, OpenNebula Project, OpenNebula Systems */
2012-02-24 18:53:53 +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 CLUSTER_H_
# define CLUSTER_H_
2019-12-10 13:45:15 +03:00
# include "PoolObjectSQL.h"
2012-06-28 19:51:21 +04:00
# include "ClusterTemplate.h"
2016-04-05 13:47:21 +03:00
# include "BitMap.h"
2020-07-02 23:42:10 +03:00
# include "ObjectCollection.h"
2012-02-24 18:53:53 +04:00
/**
* The Cluster class .
*/
2012-02-27 17:55:43 +04:00
class Cluster : public PoolObjectSQL
2012-02-24 18:53:53 +04:00
{
public :
2020-09-10 10:08:29 +03:00
virtual ~ Cluster ( ) = default ;
2012-02-27 19:08:34 +04:00
// *************************************************************************
// Object Collections (Public)
// *************************************************************************
2013-09-16 14:00:34 +04:00
/**
* Returns a system DS for the cluster when none is set at the API level
* @ return the ID of the System
*/
2020-07-02 23:42:10 +03:00
static int get_default_system_ds ( const std : : set < int > & ds_collection ) ;
2013-09-16 14:00:34 +04:00
2013-09-02 14:53:54 +04:00
/**
* Returns a copy of the host IDs set
*/
2020-07-05 23:01:32 +03:00
const std : : set < int > & get_host_ids ( ) const
2013-09-02 14:53:54 +04:00
{
2020-07-05 23:01:32 +03:00
return hosts . get_collection ( ) ;
2013-09-02 14:53:54 +04:00
}
/**
* Returns a copy of the datastore IDs set
*/
2020-07-05 23:01:32 +03:00
const std : : set < int > & get_datastore_ids ( ) const
2013-09-02 14:53:54 +04:00
{
2020-07-05 23:01:32 +03:00
return datastores . get_collection ( ) ;
2013-09-02 14:53:54 +04:00
}
/**
* Returns a copy of the vnet IDs set
*/
2020-07-05 23:01:32 +03:00
const std : : set < int > & get_vnet_ids ( ) const
2013-09-02 14:53:54 +04:00
{
2020-07-05 23:01:32 +03:00
return vnets . get_collection ( ) ;
2013-09-02 14:53:54 +04:00
}
2014-03-04 14:42:44 +04:00
/**
* Get the default reserved capacity for hosts in the cluster . It can be
* overridden if defined in the host template .
2016-11-05 23:14:38 +03:00
* @ param cpu reserved cpu ( percentage , or absolute )
2014-03-04 14:42:44 +04:00
* @ param mem reserved mem ( in KB )
*/
2020-07-02 23:42:10 +03:00
void get_reserved_capacity ( std : : string & cpu , std : : string & mem ) const
2014-03-04 14:42:44 +04:00
{
get_template_attribute ( " RESERVED_CPU " , cpu ) ;
get_template_attribute ( " RESERVED_MEM " , mem ) ;
}
2016-04-05 13:47:21 +03:00
// *************************************************************************
2019-02-14 17:13:19 +03:00
// DataBase implementation (Public)
2016-04-05 13:47:21 +03:00
// *************************************************************************
2019-02-14 17:13:19 +03:00
/**
* Function to print the Cluster object into a string in XML format
* @ param xml the resulting XML string
* @ return a reference to the generated string
*/
2020-07-02 23:42:10 +03:00
std : : string & to_xml ( std : : string & xml ) const override ;
2016-04-05 13:47:21 +03:00
2019-02-14 17:13:19 +03:00
/**
* Rebuilds the object from an xml formatted string
* @ param xml_str The xml - formatted string
*
* @ return 0 on success , - 1 otherwise
*/
2020-07-02 23:42:10 +03:00
int from_xml ( const std : : string & xml_str ) override ;
2019-09-03 17:31:51 +03:00
2019-02-14 17:13:19 +03:00
private :
// -------------------------------------------------------------------------
// Friends
// -------------------------------------------------------------------------
friend class ClusterPool ;
2020-09-10 10:08:29 +03:00
friend class PoolSQL ;
2019-02-14 17:13:19 +03:00
// *************************************************************************
// VNC Port management function
// *************************************************************************
2016-04-05 13:47:21 +03:00
/**
* Returns a free VNC port , it will try first to allocate base_port + vmid .
* If this port is not free the first lower port from the VNC_PORT / START
* port is returned .
* @ param vmid of the VM
* @ param port reserved
* @ return 0 on success
*/
2020-07-05 23:01:32 +03:00
int get_vnc_port ( int vmid , unsigned int & port ) const
2016-04-05 13:47:21 +03:00
{
unsigned int base_port = vnc_bitmap . get_start_bit ( ) ;
unsigned int hint_port = base_port + ( vmid % ( 65535 - base_port ) ) ;
return vnc_bitmap . get ( hint_port , port ) ;
}
void release_vnc_port ( int port )
{
vnc_bitmap . reset ( port ) ;
}
int set_vnc_port ( int port )
{
return vnc_bitmap . set ( port ) ;
}
2012-02-24 18:53:53 +04:00
// *************************************************************************
// Constructor
// *************************************************************************
2020-09-15 12:16:00 +03:00
Cluster ( int id , const std : : string & name ,
std : : unique_ptr < ClusterTemplate > cl_template ,
2016-04-05 13:47:21 +03:00
const VectorAttribute & vnc_conf ) ;
2012-02-24 18:53:53 +04:00
2012-02-27 17:55:43 +04:00
// *************************************************************************
2012-12-17 19:23:16 +04:00
// Attributes (Private)
2012-02-27 17:55:43 +04:00
// *************************************************************************
ObjectCollection hosts ;
2012-02-27 19:08:34 +04:00
ObjectCollection datastores ;
2012-02-27 17:55:43 +04:00
ObjectCollection vnets ;
2016-04-05 13:47:21 +03:00
BitMap < 65536 > vnc_bitmap ;
2012-02-24 18:53:53 +04:00
// *************************************************************************
// DataBase implementation (Private)
// *************************************************************************
/**
* Execute an INSERT or REPLACE Sql query .
* @ param db The SQL DB
* @ param replace Execute an INSERT or a REPLACE
* @ param error_str Returns the error reason , if any
* @ return 0 one success
*/
2020-07-02 23:42:10 +03:00
int insert_replace ( SqlDB * db , bool replace , std : : string & error_str ) ;
2012-02-24 18:53:53 +04:00
/**
* Bootstraps the database table ( s ) associated to the Cluster
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
static int bootstrap ( SqlDB * db ) ;
2012-02-24 18:53:53 +04:00
/**
* Writes the Cluster in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2020-07-02 23:42:10 +03:00
int insert ( SqlDB * db , std : : string & error_str ) override
2012-02-24 18:53:53 +04:00
{
2016-04-05 13:47:21 +03:00
int rc ;
rc = insert_replace ( db , false , error_str ) ;
if ( rc ! = 0 )
{
return rc ;
}
return vnc_bitmap . insert ( oid , db ) ;
2012-02-24 18:53:53 +04:00
}
/**
* Writes / updates the Cluster ' s data fields in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2019-09-03 17:31:51 +03:00
int update ( SqlDB * db ) override
2012-02-24 18:53:53 +04:00
{
2020-07-02 23:42:10 +03:00
std : : string error_str ;
2016-04-05 13:47:21 +03:00
2019-02-14 17:13:19 +03:00
return insert_replace ( db , true , error_str ) ;
2016-04-05 13:47:21 +03:00
}
2019-02-14 16:57:16 +03:00
/**
* Writes / updates the vnc_bitmap data in the database .
* @ param db pointer to the db
* @ return 0 on success
*/
int update_vnc_bitmap ( SqlDB * db )
{
return vnc_bitmap . update ( db ) ;
}
2016-04-05 13:47:21 +03:00
/**
* Reads the PoolObjectSQL ( identified by its OID ) from the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2019-09-03 17:31:51 +03:00
int select ( SqlDB * db ) override
2016-04-05 13:47:21 +03:00
{
int rc = PoolObjectSQL : : select ( db ) ;
if ( rc ! = 0 )
{
return rc ;
}
return vnc_bitmap . select ( oid , db ) ;
2012-02-24 18:53:53 +04:00
}
2012-02-27 19:08:34 +04:00
2016-04-05 13:47:21 +03:00
/**
* Reads the PoolObjectSQL ( identified by its OID ) from the database .
* @ param db pointer to the db
* @ return 0 on success
*/
2020-07-02 23:42:10 +03:00
int select ( SqlDB * db , const std : : string & _name , int _uid ) override
2016-04-05 13:47:21 +03:00
{
int rc = PoolObjectSQL : : select ( db , _name , _uid ) ;
if ( rc ! = 0 )
{
return rc ;
}
return vnc_bitmap . select ( oid , db ) ;
}
2012-02-27 19:08:34 +04:00
/**
* Checks if all the collections are empty , and therefore this cluster
* can be dropped .
*
* @ param error_msg Error message , if any .
* @ return 0 if cluster can be dropped , - 1 otherwise
*/
2020-07-02 23:42:10 +03:00
int check_drop ( std : : string & error_msg ) ;
2012-06-28 19:51:21 +04:00
/**
* Factory method for cluster templates
*/
2020-09-15 12:16:00 +03:00
std : : unique_ptr < Template > get_new_template ( ) const override
2012-06-28 19:51:21 +04:00
{
2020-09-15 12:16:00 +03:00
return std : : make_unique < ClusterTemplate > ( ) ;
2012-06-28 19:51:21 +04:00
}
2019-02-13 19:44:02 +03:00
/**
* Add a resource to the corresponding set .
* @ return 0 on success
*/
2020-07-02 23:42:10 +03:00
int add_resource ( PoolObjectSQL : : ObjectType type , int resource_id ,
std : : string & error_msg )
2019-02-13 19:44:02 +03:00
{
2020-07-02 23:42:10 +03:00
std : : ostringstream oss ;
2019-02-13 19:44:02 +03:00
int rc ;
switch ( type )
{
case PoolObjectSQL : : DATASTORE :
rc = datastores . add ( resource_id ) ;
break ;
case PoolObjectSQL : : NET :
rc = vnets . add ( resource_id ) ;
break ;
case PoolObjectSQL : : HOST :
rc = hosts . add ( resource_id ) ;
break ;
default :
oss < < " Invalid resource type: " < < PoolObjectSQL : : type_to_str ( type ) ;
error_msg = oss . str ( ) ;
return - 1 ;
}
if ( rc ! = 0 )
{
oss < < PoolObjectSQL : : type_to_str ( type ) < < " ID is already in the cluster set. " ;
error_msg = oss . str ( ) ;
}
return rc ;
}
/**
* Remove a resource from the corresponding set .
* @ return 0 on success
*/
2020-07-02 23:42:10 +03:00
int del_resource ( PoolObjectSQL : : ObjectType type , int resource_id ,
std : : string & error_msg )
2019-02-13 19:44:02 +03:00
{
int rc ;
switch ( type )
{
case PoolObjectSQL : : DATASTORE :
rc = datastores . del ( resource_id ) ;
break ;
case PoolObjectSQL : : NET :
rc = vnets . del ( resource_id ) ;
break ;
case PoolObjectSQL : : HOST :
rc = hosts . del ( resource_id ) ;
break ;
default :
2019-02-13 20:09:27 +03:00
error_msg = " Invalid resource type: " + PoolObjectSQL : : type_to_str ( type ) ;
2019-02-13 19:44:02 +03:00
return - 1 ;
}
if ( rc ! = 0 )
{
2019-02-13 20:09:27 +03:00
error_msg = PoolObjectSQL : : type_to_str ( type ) + " is not in the cluster set. " ;
2019-02-13 19:44:02 +03:00
}
return rc ;
}
2012-02-24 18:53:53 +04:00
} ;
# endif /*CLUSTER_H_*/