mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-24 21:34:01 +03:00
6143dd95ce
Co-authored-by: Christian González <cgonzalez@opennebula.systems>
420 lines
13 KiB
C++
420 lines
13 KiB
C++
/* -------------------------------------------------------------------------- */
|
|
/* Copyright 2002-2019, 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 REQUEST_MANAGER_LOCK_H_
|
|
#define REQUEST_MANAGER_LOCK_H_
|
|
|
|
#include "Request.h"
|
|
#include "Nebula.h"
|
|
|
|
using namespace std;
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class RequestManagerLock: public Request
|
|
{
|
|
protected:
|
|
RequestManagerLock(const string& method_name,
|
|
const string& help)
|
|
:Request(method_name, "A:sis", help)
|
|
{
|
|
auth_op = AuthRequest::MANAGE_NO_LCK;
|
|
};
|
|
|
|
~RequestManagerLock(){};
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att) override;
|
|
|
|
int lock_db(PoolObjectSQL * object, const int owner, const int req_id, const int level)
|
|
{
|
|
return object->lock_db(owner, req_id, level);
|
|
};
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class RequestManagerUnlock: public Request
|
|
{
|
|
protected:
|
|
RequestManagerUnlock(const string& method_name,
|
|
const string& help)
|
|
:Request(method_name, "A:sii", help)
|
|
{
|
|
auth_op = AuthRequest::MANAGE_NO_LCK;
|
|
};
|
|
|
|
~RequestManagerUnlock(){};
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att) override;
|
|
|
|
int unlock_db(PoolObjectSQL * object, const int owner, const int req_id)
|
|
{
|
|
return object->unlock_db(owner, req_id);
|
|
};
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class DocumentLock : public RequestManagerLock
|
|
{
|
|
public:
|
|
DocumentLock():
|
|
RequestManagerLock("one.document.lock",
|
|
"Tries to acquire the object's lock")
|
|
{
|
|
Nebula& nd = Nebula::instance();
|
|
pool = nd.get_docpool();
|
|
auth_object = PoolObjectSQL::DOCUMENT;
|
|
};
|
|
|
|
~DocumentLock(){};
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class DocumentUnlock : public RequestManagerUnlock
|
|
{
|
|
public:
|
|
DocumentUnlock():
|
|
RequestManagerUnlock("one.document.unlock",
|
|
"Unlocks the object")
|
|
{
|
|
Nebula& nd = Nebula::instance();
|
|
pool = nd.get_docpool();
|
|
auth_object = PoolObjectSQL::DOCUMENT;
|
|
};
|
|
|
|
~DocumentUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VirtualMachineLock():
|
|
RequestManagerLock("one.vm.lock",
|
|
"Lock a VM"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VM;
|
|
pool = nd.get_vmpool();
|
|
};
|
|
|
|
~VirtualMachineLock(){};
|
|
};
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualMachineUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VirtualMachineUnlock():
|
|
RequestManagerUnlock("one.vm.unlock",
|
|
"Unlock a VM"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VM;
|
|
pool = nd.get_vmpool();
|
|
};
|
|
|
|
~VirtualMachineUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VMTemplateLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VMTemplateLock():
|
|
RequestManagerLock("one.template.lock",
|
|
"Lock a Template"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::TEMPLATE;
|
|
pool = nd.get_tpool();
|
|
};
|
|
|
|
~VMTemplateLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VMTemplateUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VMTemplateUnlock():
|
|
RequestManagerUnlock("one.template.unlock",
|
|
"Unlock a Template"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::TEMPLATE;
|
|
pool = nd.get_tpool();
|
|
};
|
|
|
|
~VMTemplateUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VNTemplateLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VNTemplateLock():
|
|
RequestManagerLock("one.vntemplate.lock",
|
|
"Lock a VN Template"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VNTEMPLATE;
|
|
pool = nd.get_vntpool();
|
|
};
|
|
|
|
~VNTemplateLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VNTemplateUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VNTemplateUnlock():
|
|
RequestManagerUnlock("one.vntemplate.unlock",
|
|
"Unlock a VN Template"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VNTEMPLATE;
|
|
pool = nd.get_vntpool();
|
|
};
|
|
|
|
~VNTemplateUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualNetworkLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VirtualNetworkLock():
|
|
RequestManagerLock("one.vn.lock",
|
|
"Lock a VNet"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::NET;
|
|
pool = nd.get_vnpool();
|
|
};
|
|
|
|
~VirtualNetworkLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualNetworkUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VirtualNetworkUnlock():
|
|
RequestManagerUnlock("one.vn.unlock",
|
|
"Unlock a VNet"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::NET;
|
|
pool = nd.get_vnpool();
|
|
};
|
|
|
|
~VirtualNetworkUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class ImageLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
ImageLock():
|
|
RequestManagerLock("one.image.lock",
|
|
"Lock a Image"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::IMAGE;
|
|
pool = nd.get_ipool();
|
|
};
|
|
|
|
~ImageLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class ImageUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
ImageUnlock():
|
|
RequestManagerUnlock("one.image.unlock",
|
|
"Unlock a Image"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::IMAGE;
|
|
pool = nd.get_ipool();
|
|
};
|
|
|
|
~ImageUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class MarketPlaceAppLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
MarketPlaceAppLock():
|
|
RequestManagerLock("one.marketapp.lock",
|
|
"Lock a MarketPlaceApp"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::MARKETPLACEAPP;
|
|
pool = nd.get_apppool();
|
|
};
|
|
|
|
~MarketPlaceAppLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class MarketPlaceAppUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
MarketPlaceAppUnlock():
|
|
RequestManagerUnlock("one.marketapp.unlock",
|
|
"Unlock a MarketPlaceApp"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::MARKETPLACEAPP;
|
|
pool = nd.get_apppool();
|
|
};
|
|
|
|
~MarketPlaceAppUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualRouterLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VirtualRouterLock():
|
|
RequestManagerLock("one.vrouter.lock",
|
|
"Lock a VirtualRouter"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VROUTER;
|
|
pool = nd.get_vrouterpool();
|
|
};
|
|
|
|
~VirtualRouterLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VirtualRouterUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VirtualRouterUnlock():
|
|
RequestManagerUnlock("one.vrouter.unlock",
|
|
"Unlock a VirtualRouter"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VROUTER;
|
|
pool = nd.get_vrouterpool();
|
|
};
|
|
|
|
~VirtualRouterUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VMGroupLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
VMGroupLock():
|
|
RequestManagerLock("one.vmgroup.lock",
|
|
"Lock a VMGroup"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VMGROUP;
|
|
pool = nd.get_vmgrouppool();
|
|
};
|
|
|
|
~VMGroupLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class VMGroupUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
VMGroupUnlock():
|
|
RequestManagerUnlock("one.vmgroup.unlock",
|
|
"Unlock a VMGroup"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::VMGROUP;
|
|
pool = nd.get_vmgrouppool();
|
|
};
|
|
|
|
~VMGroupUnlock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class HookLock: public RequestManagerLock
|
|
{
|
|
public:
|
|
HookLock():
|
|
RequestManagerLock("one.hook.lock",
|
|
"Lock a Hook"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::HOOK;
|
|
pool = nd.get_hkpool();
|
|
};
|
|
|
|
~HookLock(){};
|
|
};
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
class HookUnlock: public RequestManagerUnlock
|
|
{
|
|
public:
|
|
HookUnlock():
|
|
RequestManagerUnlock("one.hook.unlock",
|
|
"Unlock a Hook"){
|
|
Nebula& nd = Nebula::instance();
|
|
auth_object = PoolObjectSQL::HOOK;
|
|
pool = nd.get_hkpool();
|
|
};
|
|
|
|
~HookUnlock(){};
|
|
};
|
|
|
|
#endif
|