2012-05-28 01:15:05 +04:00
/* -------------------------------------------------------------------------- */
2014-01-09 14:51:20 +04:00
/* Copyright 2002-2014, OpenNebula Project (OpenNebula.org), C12G Labs */
2012-05-28 01:15:05 +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 QUOTA_H_
# define QUOTA_H_
# include "Template.h"
2012-11-19 19:38:39 +04:00
// Forward declaration to avoid include cycle
class Quotas ;
2012-05-28 01:15:05 +04:00
/**
* Base class for resource quotas , it provides basic storage and management of
2012-11-30 03:16:52 +04:00
* the quotas . Each resource MUST inherit from it to implement check and
2012-05-28 01:15:05 +04:00
* update methods . Quotas are stored in a template form , each class store the
* limits and usage in a resource specific format .
*/
class Quota : public Template
{
public :
2012-11-30 03:16:52 +04:00
2012-05-28 01:15:05 +04:00
/**
* Set the quotas . If the quota previously exists its limit is updated .
* @ param quota_str the quota template in ASCII or XML formats
* @ param error describe the error in case of error
2012-11-26 15:48:10 +04:00
*
2012-05-28 01:15:05 +04:00
* @ return 0 on success - 1 otherwise
*/
2012-11-29 20:26:21 +04:00
int set ( vector < Attribute * > * quotas , string & error ) ;
2012-05-28 01:15:05 +04:00
2012-05-29 02:36:13 +04:00
/**
2012-11-30 03:16:52 +04:00
* Check if the resource allocation will exceed the quota limits . If not
2012-05-29 02:36:13 +04:00
* the usage counters are updated
* @ param tmpl template for the resource
2012-11-19 19:38:39 +04:00
* @ param default_quotas Quotas that contain the default limits
2012-11-30 03:16:52 +04:00
* @ param error string
2012-05-29 02:36:13 +04:00
* @ return true if the operation can be performed
*/
2012-11-19 19:38:39 +04:00
virtual bool check ( Template * tmpl , Quotas & default_quotas , string & error ) = 0 ;
2012-05-29 02:36:13 +04:00
2013-07-23 00:08:01 +04:00
/**
* Check if a resource update in usage counters will exceed the
* quota limits . If not the usage counters are updated for that resource
* @ param tmpl with increments in MEMORY and CPU
* @ param default_quotas Quotas that contain the default limits
* @ param error string
* @ return true if the operation can be performed
*/
virtual bool update ( Template * tmpl , Quotas & default_quotas , string & error )
{
error = " Update operation for quotas not supported. " ;
return false ;
} ;
2012-05-29 02:36:13 +04:00
/**
* Decrement usage counters when deallocating image
* @ param tmpl template for the resource
*/
2012-06-04 02:45:56 +04:00
virtual void del ( Template * tmpl ) = 0 ;
2012-06-07 02:04:08 +04:00
/**
* Returns the name that identifies the quota in a template
*/
const char * get_quota_name ( )
{
return template_name ;
}
2012-11-19 18:19:09 +04:00
/**
* Gets a quota identified by its ID .
* @ param id of the quota
* @ param va The quota , if it is found
* @ return 0 on success , - 1 if not found
*/
virtual int get_quota ( const string & id , VectorAttribute * * va )
{
map < string , Attribute * > : : iterator it ;
return get_quota ( id , va , it ) ;
}
2012-06-07 02:04:08 +04:00
2012-05-28 01:15:05 +04:00
protected :
2012-06-05 15:34:28 +04:00
Quota ( const char * quota_name ,
const char * _template_name ,
const char * * _metrics ,
2012-11-30 03:16:52 +04:00
int _num_metrics ,
bool _is_default )
2012-06-05 15:34:28 +04:00
: Template ( false , ' = ' , quota_name ) ,
template_name ( _template_name ) ,
metrics ( _metrics ) ,
2012-11-29 20:26:21 +04:00
num_metrics ( _num_metrics ) ,
2012-11-30 03:16:52 +04:00
is_default ( _is_default ) { } ;
2012-05-28 01:15:05 +04:00
virtual ~ Quota ( ) { } ;
2012-06-05 03:58:37 +04:00
/**
2012-11-30 03:16:52 +04:00
* Generic Quota Names
2012-06-05 03:58:37 +04:00
*
* template_name = [
* ID = " ID to identify the resource " ,
* metrics [ 0 ] = " Limit for the first metric "
* metrics [ 0 ] _USED = " Usage for metric "
* ]
*
* ID & counter fields are optional
*/
/**
* Name of the quota used in the templates
*/
2012-06-05 15:34:28 +04:00
const char * template_name ;
2012-06-05 03:58:37 +04:00
/**
* The name of the quota metrics
*/
2012-06-05 15:34:28 +04:00
const char * * metrics ;
2012-06-05 03:58:37 +04:00
/**
2012-06-05 15:34:28 +04:00
* Length
2012-06-05 03:58:37 +04:00
*/
int num_metrics ;
2012-11-30 03:16:52 +04:00
/**
* Whether or not this is a default quota . Default quotas do not have usage ,
* and can ' t have a limit of - 1
*/
bool is_default ;
/**
* Check a given quota for an usage request and update counters if the
2012-06-05 03:58:37 +04:00
* request does not exceed quota limits
* @ param qid id that identifies the quota , to be used by get_quota
* @ param usage_req usage for each metric
2012-11-19 19:38:39 +04:00
* @ param default_quotas Quotas that contain the default limits
* @ param error string describing the error
2012-06-05 03:58:37 +04:00
* @ return true if the request does not exceed current limits
*/
2012-11-30 03:16:52 +04:00
bool check_quota ( const string & qid ,
2012-07-16 19:15:22 +04:00
map < string , float > & usage_req ,
2012-11-19 19:38:39 +04:00
Quotas & default_quotas ,
2012-06-05 03:58:37 +04:00
string & error ) ;
/**
* Reduce usage from a given quota based on the current consumption
* @ param qid id that identifies the quota , to be used by get_quota
* @ param usage_req usage for each metric
2012-05-28 01:15:05 +04:00
*/
2012-11-30 03:16:52 +04:00
void del_quota ( const string & qid ,
2012-07-16 20:28:58 +04:00
map < string , float > & usage_req ) ;
2012-05-28 01:15:05 +04:00
2012-06-05 15:34:28 +04:00
/**
2012-11-19 18:19:09 +04:00
* Gets the default quota identified by its ID .
*
2012-06-05 15:34:28 +04:00
* @ param id of the quota
2012-11-19 19:38:39 +04:00
* @ param default_quotas Quotas that contain the default limits
2012-06-19 19:41:42 +04:00
* @ param va The quota , if it is found
2012-11-19 18:19:09 +04:00
*
2012-06-19 19:41:42 +04:00
* @ return 0 on success , - 1 if not found
2012-06-05 15:34:28 +04:00
*/
2012-11-19 19:38:39 +04:00
virtual int get_default_quota ( const string & id ,
Quotas & default_quotas ,
VectorAttribute * * va ) = 0 ;
2012-06-19 19:41:42 +04:00
/**
* Gets a quota identified by its ID .
*
* @ param id of the quota
* @ param va The quota , if it is found
* @ param it The quota iterator , if it is found
*
* @ return 0 on success , - 1 if not found
*/
virtual int get_quota (
const string & id ,
VectorAttribute * * va ,
map < string , Attribute * > : : iterator & it ) ;
2012-06-21 20:12:50 +04:00
/**
* Checks if a quota has 0 limit and usage , and deletes it
*
* @ param qid id of the quota
*/
void cleanup_quota ( const string & qid ) ;
2012-12-10 20:19:02 +04:00
/**
* Creates a string from the given float , using fixed notation . If the
* number has any decimals , they will be truncated to 2.
*
* @ param num
* @ return
*/
string float_to_str ( const float & num ) ;
2012-06-05 15:34:28 +04:00
private :
2012-05-28 01:15:05 +04:00
/**
* Creates an empty quota based on the given attribute . The attribute va
* contains the limits for the quota .
* @ param va limits for the new quota if 0 limits will be 0
2012-11-26 15:48:10 +04:00
*
2012-11-29 15:49:29 +04:00
* @ return a new attribute representing the quota , 0 on error
2012-05-28 01:15:05 +04:00
*/
2012-11-29 20:26:21 +04:00
VectorAttribute * new_quota ( VectorAttribute * va ) ;
2012-06-02 04:58:46 +04:00
2012-05-28 01:15:05 +04:00
/**
2012-06-04 02:45:56 +04:00
* Adds a new quota , it also updates an internal index for fast accessing
* the quotas
* @ param quota is the new quota , allocated in the HEAP
2012-05-28 01:15:05 +04:00
*/
2012-06-05 15:34:28 +04:00
void add ( VectorAttribute * nq )
{
attributes . insert ( make_pair ( nq - > name ( ) , nq ) ) ;
}
2012-05-28 01:15:05 +04:00
/**
* Adds a given value to the current quota ( vector )
* @ param attr the quota ;
* @ param va_name name of the quota in the vector attribute
* @ param num value to add to the current quota ;
*/
2012-07-16 19:15:22 +04:00
void add_to_quota ( VectorAttribute * attr , const string & va_name , float num ) ;
2012-06-05 03:58:37 +04:00
2012-11-30 03:16:52 +04:00
/**
2012-06-05 03:58:37 +04:00
* Sets new limit values for the quota
* @ param quota to be updated
* @ param va attribute with the new limits
2012-11-26 15:48:10 +04:00
*
2012-06-05 03:58:37 +04:00
* @ return 0 on success or - 1 if wrong limits
*/
2012-11-26 15:48:10 +04:00
int update_limits ( VectorAttribute * quota ,
2012-11-29 20:26:21 +04:00
const VectorAttribute * va ) ;
2012-06-05 03:58:37 +04:00
/**
2012-06-05 15:34:28 +04:00
* Extract the limits for the defined quota metrics from a given attribute
2012-06-05 03:58:37 +04:00
* @ param va the attribute with the limits
2012-06-05 15:34:28 +04:00
* @ param limits stores the known limits
* @ return 0 on success
2012-06-05 03:58:37 +04:00
*/
int get_limits ( const VectorAttribute * va , map < string , string > & limits ) ;
2012-05-28 01:15:05 +04:00
} ;
# endif /*QUOTA_H_*/