1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-23 17:33:56 +03:00
one/include/HostPool.h
Pavel Czerný 8e7ff2ed36
F #6103: Last set of CppCheck issues (#2481)
(cherry picked from commit 4a9662a551)
(cherry picked from commit d7b7303f8f)
2023-02-07 08:56:52 +01:00

279 lines
8.6 KiB
C++

/* -------------------------------------------------------------------------- */
/* Copyright 2002-2023, OpenNebula Project, OpenNebula Systems */
/* */
/* 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 "HostMonitoringTemplate.h"
#include "OneDB.h"
#include <sstream>
#include <vector>
/**
* The Host Pool class.
*/
class HostPool : public PoolSQL
{
public:
HostPool(SqlDB * db, const std::vector<const SingleAttribute *>& secrets);
~HostPool() = default;
/**
* Function to allocate a new Host object
* @param oid the id assigned to the Host
* @return the oid assigned to the object or -1 in case of failure
*/
int allocate (
int * oid,
const std::string& hostname,
const std::string& im_mad_name,
const std::string& vmm_mad_name,
int cluster_id,
const std::string& cluster_name,
std::string& error_str);
/**
* Updates a Host in the data base. It also updates the previous state
* after executing the hooks.
* @param objsql a pointer to the Host
*
* @return 0 on success.
*/
int update(PoolObjectSQL * objsql) override;
/**
* Gets an object from the pool (if needed the object is loaded from the
* database). The object is locked, other threads can't access the same
* object. The lock is released by destructor.
* @param oid the Host unique identifier
* @return a pointer to the Host, nullptr in case of failure
*/
std::unique_ptr<Host> get(int oid)
{
return PoolSQL::get<Host>(oid);
}
/**
* Gets a read only object from the pool (if needed the object is loaded from the
* database). No object lock, other threads may work with the same object.
* @param oid the Host unique identifier
* @return a pointer to the Host, nullptr in case of failure
*/
std::unique_ptr<Host> get_ro(int oid)
{
return PoolSQL::get_ro<Host>(oid);
}
/**
* Gets an object from the pool (if needed the object is loaded from the
* database). The object is locked, other threads can't access the same
* object. The lock is released by destructor.
* @param hostname
* @return a pointer to the Host, nullptr if the Host could not be loaded
*/
std::unique_ptr<Host> get(std::string name)
{
// The owner is set to -1, because it is not used in the key() method
return PoolSQL::get<Host>(name, -1);
}
/**
* Gets a read only object from the pool (if needed the object is loaded from the
* database). No object lock, other threads may work with the same object.
* @param hostname
* @return a pointer to the Host, 0 if the Host could not be loaded
*/
std::unique_ptr<Host> get_ro(std::string name)
{
// The owner is set to -1, because it is not used in the key() method
return PoolSQL::get_ro<Host>(name, -1);
}
/**
* 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
*/
std::string key(const std::string& name, int uid)
{
// Name is enough key because Hosts can't repeat names.
return name;
};
/**
* Bootstraps the database table(s) associated to the Host pool
* @return 0 on success
*/
static int bootstrap(SqlDB *_db)
{
int rc;
std::ostringstream oss_host(one_db::host_db_bootstrap);
std::ostringstream oss_monitor(one_db::host_monitor_db_bootstrap);
rc = _db->exec_local_wr(oss_host);
rc += _db->exec_local_wr(oss_monitor);
return rc;
};
/**
* Allocates a given capacity to the host
* @param oid the id of the host to allocate the capacity
* @param vm_id id of the vm to add to the host
* @param cpu amount of CPU, in percentage
* @param mem amount of main memory, in KB
* @param disk amount of disk
* @param pci devices requested by the VM
*
* @return 0 on success -1 in case of failure
*/
int add_capacity(int oid, HostShareCapacity &sr)
{
int rc = 0;
if ( auto host = get(oid) )
{
host->add_capacity(sr);
update(host.get());
}
else
{
rc = -1;
}
return rc;
}
/**
* De-Allocates a given capacity to the host
* @param oid the id of the host to allocate the capacity
* @param vm_id id of the vm to add to the host
* @param cpu amount of CPU
* @param mem amount of main memory
* @param disk amount of disk
* @param pci devices requested by the VM
*/
void del_capacity(int oid, HostShareCapacity &sr)
{
if ( auto host = get(oid) )
{
host->del_capacity(sr);
update(host.get());
}
}
int drop(PoolObjectSQL * objsql, std::string& error_msg) override
{
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);
};
/**
* 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
* @param sid first element used for pagination
* @param eid last element used for pagination, -1 to disable
* @param desc descending order of pool elements
*
* @return 0 on success
*/
int dump(std::string& oss, const std::string& where, int sid, int eid,
bool desc) override
{
return PoolSQL::dump(oss, "HOST_POOL", "body", one_db::host_table,
where, sid, eid, desc);
};
/**
* 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.
*
* @return 0 on success
*/
int search(std::vector<int>& oids, const std::string& where)
{
return PoolSQL::search(oids, one_db::host_table, where);
};
/**
* Dumps the host monitoring information entries 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
* @param seconds Retrieve monitor records in the last seconds
*
* @return 0 on success
*/
int dump_monitoring(std::string& oss, const std::string& where, const int seconds);
/**
* Dumps the HOST monitoring information for a single HOST
*
* @param oss the output stream to dump the pool contents
* @param hostid id of the target HOST
*
* @return 0 on success
*/
int dump_monitoring(std::string& oss, int hostid)
{
std::ostringstream filter;
filter << "oid = " << hostid;
return dump_monitoring(oss, filter.str(), -1);
}
/**
* Returns last monitoring info for a host
* @param hid host id
*/
HostMonitoringTemplate get_monitoring(int hid);
private:
/**
* Factory method to produce Host objects
* @return a pointer to the new Host
*/
PoolObjectSQL * create() override
{
return new Host(-1,"","","",-1,"");
};
};
#endif /*HOST_POOL_H_*/