2011-05-10 20:45:15 +04:00
/* -------------------------------------------------------------------------- */
2019-01-16 13:27:59 +03:00
/* Copyright 2002-2019, OpenNebula Project, OpenNebula Systems */
2011-05-10 20:45:15 +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 GROUP_POOL_H_
# define GROUP_POOL_H_
# include "Group.h"
# include "SqlDB.h"
using namespace std ;
class GroupPool : public PoolSQL
{
public :
2019-09-09 15:43:51 +03:00
GroupPool ( SqlDB * db , bool is_federation_slave ,
vector < const SingleAttribute * > & restricted_attrs ) ;
2011-05-10 20:45:15 +04:00
2019-09-09 14:13:52 +03:00
~ GroupPool ( ) = default ;
2011-05-10 20:45:15 +04:00
2011-05-21 04:06:29 +04:00
/* ---------------------------------------------------------------------- */
2012-02-09 20:56:47 +04:00
/* Constants for DB management */
2011-05-21 04:06:29 +04:00
/* ---------------------------------------------------------------------- */
2011-05-10 20:45:15 +04:00
/**
2011-05-21 04:06:29 +04:00
* Default name for the oneadmin group
2011-05-10 20:45:15 +04:00
*/
Feature #407: Add 'GID' attribute to some pool objects; change *pool.info XML-RPC flag meaning; update onedb migrator; fix tests.
* VM, VMTEMPLATE, VNET & IMAGE objects have a GID attribute, and a table column. The group id is inherited from the user creating the object, except for VMs created from Templates, that inherit the Template's group.
* The new flag meaning has been modified in src/rm sources and CLI commands for one.(vm,template,vnet,image)pool.info . It changes from
-2 all, -1 mine & public, >=0 UID
to
-3 mine, -2 all, -1 mine & group
* USER has a group, but not secondary ones. The user_pool table doesn't have a GID column, we'll deal with it later when the group-users relations are implemented.
* onedb migrator 1.rb: deleted USERNAME, and GID added.
2011-05-16 19:00:27 +04:00
static const string ONEADMIN_NAME ;
2011-05-10 20:45:15 +04:00
2011-05-21 04:06:29 +04:00
/**
* Identifier for the oneadmin group
*/
Feature #407: Add 'GID' attribute to some pool objects; change *pool.info XML-RPC flag meaning; update onedb migrator; fix tests.
* VM, VMTEMPLATE, VNET & IMAGE objects have a GID attribute, and a table column. The group id is inherited from the user creating the object, except for VMs created from Templates, that inherit the Template's group.
* The new flag meaning has been modified in src/rm sources and CLI commands for one.(vm,template,vnet,image)pool.info . It changes from
-2 all, -1 mine & public, >=0 UID
to
-3 mine, -2 all, -1 mine & group
* USER has a group, but not secondary ones. The user_pool table doesn't have a GID column, we'll deal with it later when the group-users relations are implemented.
* onedb migrator 1.rb: deleted USERNAME, and GID added.
2011-05-16 19:00:27 +04:00
static const int ONEADMIN_ID ;
2011-05-21 04:06:29 +04:00
/**
* Default name for the users group
*/
static const string USERS_NAME ;
/**
* Identifier for the user group
*/
Feature #407: Add 'GID' attribute to some pool objects; change *pool.info XML-RPC flag meaning; update onedb migrator; fix tests.
* VM, VMTEMPLATE, VNET & IMAGE objects have a GID attribute, and a table column. The group id is inherited from the user creating the object, except for VMs created from Templates, that inherit the Template's group.
* The new flag meaning has been modified in src/rm sources and CLI commands for one.(vm,template,vnet,image)pool.info . It changes from
-2 all, -1 mine & public, >=0 UID
to
-3 mine, -2 all, -1 mine & group
* USER has a group, but not secondary ones. The user_pool table doesn't have a GID column, we'll deal with it later when the group-users relations are implemented.
* onedb migrator 1.rb: deleted USERNAME, and GID added.
2011-05-16 19:00:27 +04:00
static const int USERS_ID ;
2011-05-21 04:06:29 +04:00
2011-05-10 20:45:15 +04:00
/* ---------------------------------------------------------------------- */
/* Methods for DB management */
/* ---------------------------------------------------------------------- */
/**
* Allocates a new group , writting it in the pool database . No memory is
* allocated for the object .
* @ param name Group name
* @ param oid the id assigned to the Group
* @ param error_str Returns the error reason , if any
*
* @ return the oid assigned to the object , - 1 in case of failure
*/
2011-06-09 19:08:02 +04:00
int allocate ( string name ,
2011-05-10 20:45:15 +04:00
int * oid ,
string & error_str ) ;
/**
* Function to get a group from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid group unique id
* @ param lock locks the group mutex
* @ return a pointer to the group , 0 if the group could not be loaded
*/
2018-03-18 01:31:52 +03:00
Group * get ( int oid )
2011-05-10 20:45:15 +04:00
{
2018-03-18 01:31:52 +03:00
return static_cast < Group * > ( PoolSQL : : get ( oid ) ) ;
2012-01-25 15:26:46 +04:00
} ;
2018-10-09 12:05:08 +03:00
/**
* Function to get a read only group from the pool , if the object is not in memory
* it is loaded from the DB
* @ param oid group unique id
* @ param lock locks the group mutex
* @ return a pointer to the group , 0 if the group could not be loaded
*/
Group * get_ro ( int oid )
{
return static_cast < Group * > ( PoolSQL : : get_ro ( oid ) ) ;
} ;
2016-08-31 19:24:15 +03:00
/**
* Returns the name of a group
* @ param id of the group
* @ return name of the group
*/
2018-10-09 12:05:08 +03:00
const string get_name ( int gid )
2016-08-31 19:24:15 +03:00
{
static string error_str = " " ;
2018-10-09 12:05:08 +03:00
Group * group = get_ro ( gid ) ;
2016-08-31 19:24:15 +03:00
if ( group = = 0 )
{
return error_str ;
}
2018-10-09 12:05:08 +03:00
const string gname = group - > get_name ( ) ;
2016-08-31 19:24:15 +03:00
group - > unlock ( ) ;
return gname ;
}
2014-01-22 21:54:48 +04:00
/**
* Update a particular Group . This method does not update the group ' s quotas
2011-05-10 20:45:15 +04:00
* @ param user pointer to Group
* @ return 0 on success
*/
2015-12-10 17:39:23 +03:00
int update ( PoolObjectSQL * objsql ) ;
2014-01-22 21:54:48 +04:00
/**
* Update a particular Group ' s Quotas
* @ param group pointer to Group
* @ return 0 on success
*/
int update_quotas ( Group * group ) ;
2011-05-10 20:45:15 +04:00
2011-06-07 18:32:18 +04:00
/**
* Drops the Group from the data base . The object mutex SHOULD be
* locked .
* @ param objsql a pointer to a Group object
* @ param error_msg Error reason , if any
* @ return 0 on success ,
* - 1 DB error ,
* - 2 object is a system group ( ID < 100 )
* - 3 Group ' s User IDs set is not empty
*/
int drop ( PoolObjectSQL * objsql , string & error_msg ) ;
2011-05-10 20:45:15 +04:00
/**
* Bootstraps the database table ( s ) associated to the Group pool
2011-10-10 17:14:46 +04:00
* @ return 0 on success
2011-05-10 20:45:15 +04:00
*/
2011-10-10 17:14:46 +04:00
static int bootstrap ( SqlDB * _db )
2011-05-10 20:45:15 +04:00
{
2011-10-10 17:14:46 +04:00
return Group : : bootstrap ( _db ) ;
2011-05-10 20:45:15 +04:00
} ;
/**
* Dumps the Group 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
2014-01-13 19:30:43 +04:00
* @ param limit parameters used for pagination
2018-07-24 12:41:41 +03:00
* @ param desc descending order of pool elements
2011-05-10 20:45:15 +04:00
*
* @ return 0 on success
*/
2018-10-09 12:05:08 +03:00
int dump ( string & oss , const string & where , const string & limit ,
2018-07-24 12:41:41 +03:00
bool desc ) ;
2013-02-28 17:53:34 +04:00
2011-05-10 20:45:15 +04:00
private :
/**
* Factory method to produce objects
* @ return a pointer to the new object
*/
PoolObjectSQL * create ( )
{
2011-06-09 19:08:02 +04:00
return new Group ( - 1 , " " ) ;
2011-05-10 20:45:15 +04:00
} ;
} ;
# endif /*GROUP_POOL_H_*/