mirror of
https://github.com/OpenNebula/one.git
synced 2025-02-08 05:57:23 +03:00
DB access and marketplace control from master and slave zones: * Client class is singleton as required by xmlrpc-c * one_auth initialization moved to a comon location * MarketPlaceApp and MarketPlace actions are performed in the same zone as the associated marketplace. * Adds three new api calls updateDB, dropDB and allocateDB to perform low level DB operations. These methods are exposed for Market y MarketApps * Forward operations are abstarct by Pool classes * Apps and markets now includes a ZONE_ID
52 lines
2.0 KiB
C++
52 lines
2.0 KiB
C++
/* -------------------------------------------------------------------------- */
|
|
/* Copyright 2002-2015, 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_PROXY_H_
|
|
#define REQUEST_MANAGER_PROXY_H_
|
|
|
|
#include "Request.h"
|
|
#include "Client.h"
|
|
|
|
using namespace std;
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
class RequestManagerProxy: public Request
|
|
{
|
|
public:
|
|
RequestManagerProxy(string _method): Request("RequestManagerProxy", "?",
|
|
"Forwards the request to another OpenNebula"), method(_method)
|
|
{
|
|
method_name = ("RequestManagerProxy." + method);
|
|
};
|
|
|
|
~RequestManagerProxy(){};
|
|
|
|
void request_execute(xmlrpc_c::paramList const& _paramList,
|
|
RequestAttributes& att);
|
|
|
|
void hide_argument(int arg)
|
|
{
|
|
hidden_params.insert(arg);
|
|
};
|
|
|
|
private:
|
|
string method;
|
|
};
|
|
|
|
#endif
|