2018-11-20 19:24:59 +03:00
/* -------------------------------------------------------------------------- */
2023-01-09 14:23:19 +03:00
/* Copyright 2002-2023, OpenNebula Project, OpenNebula Systems */
2018-11-20 19:24:59 +03: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 VNTEMPLATE_H_
# define VNTEMPLATE_H_
# include "PoolObjectSQL.h"
# include "VirtualNetworkTemplate.h"
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
* The VNTemplate class .
*/
class VNTemplate : public PoolObjectSQL
{
public :
2020-09-10 10:08:29 +03:00
virtual ~ VNTemplate ( ) = default ;
2018-11-20 19:24:59 +03:00
/**
* Function to print the VNTemplate 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 ;
2018-11-20 19:24:59 +03:00
// ------------------------------------------------------------------------
// Template Contents
// ------------------------------------------------------------------------
/**
* Factory method for virtual machine templates
*/
2020-09-15 12:16:00 +03:00
std : : unique_ptr < Template > get_new_template ( ) const override
2018-11-20 19:24:59 +03:00
{
2020-09-15 12:16:00 +03:00
return std : : make_unique < VirtualNetworkTemplate > ( ) ;
2018-11-20 19:24:59 +03:00
}
/**
* Returns a copy of the VirtualNetworkTemplate
* @ return A copy of the VirtualNetworkTemplate
*/
2020-09-15 12:16:00 +03:00
std : : unique_ptr < VirtualNetworkTemplate > clone_template ( ) const
2018-11-20 19:24:59 +03:00
{
2020-09-15 12:16:00 +03:00
return std : : make_unique < VirtualNetworkTemplate > ( * obj_template ) ;
}
2018-11-20 19:24:59 +03:00
private :
// -------------------------------------------------------------------------
// Friends
// -------------------------------------------------------------------------
friend class VNTemplatePool ;
// -------------------------------------------------------------------------
// VNTemplate Attributes
// -------------------------------------------------------------------------
/**
* Registration time
*/
time_t regtime ;
// *************************************************************************
// 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 ) ;
2018-11-20 19:24:59 +03:00
/**
* Bootstraps the database table ( s ) associated to the VNTemplate
* @ return 0 on success
*/
2020-06-29 13:14:00 +03:00
static int bootstrap ( SqlDB * db ) ;
2018-11-20 19:24:59 +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 ;
2018-11-20 19:24:59 +03:00
protected :
// *************************************************************************
// Constructor
// *************************************************************************
VNTemplate ( int id ,
int uid ,
int gid ,
2020-07-02 23:42:10 +03:00
const std : : string & uname ,
const std : : string & gname ,
2018-11-20 19:24:59 +03:00
int umask ,
2020-09-15 12:16:00 +03:00
std : : unique_ptr < VirtualNetworkTemplate > _template_contents ) ;
2018-11-20 19:24:59 +03:00
// *************************************************************************
// DataBase implementation
// *************************************************************************
/**
* Writes the VNTemplate in the database .
* @ param db pointer to the db
* @ param error_str Returns the error reason , if any
* @ return 0 on success
*/
2020-07-02 23:42:10 +03:00
int insert ( SqlDB * db , std : : string & error_str ) override ;
2018-11-20 19:24:59 +03:00
/**
* Writes / updates the VNTemplate 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
2018-11-20 19:24:59 +03:00
{
2020-07-02 23:42:10 +03:00
std : : string err ;
2018-11-20 19:24:59 +03:00
return insert_replace ( db , true , err ) ;
} ;
} ;
# endif /*VNTEMPLATE_H_*/