mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-23 17:33:56 +03:00
199 lines
5.5 KiB
C++
199 lines
5.5 KiB
C++
/* -------------------------------------------------------------------------- */
|
|
/* Copyright 2002-2014, OpenNebula Project (OpenNebula.org), C12G Labs */
|
|
/* */
|
|
/* 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 MAD_MANAGER_H_
|
|
#define MAD_MANAGER_H_
|
|
|
|
#include <pthread.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
#include "Mad.h"
|
|
#include "Attribute.h"
|
|
|
|
using namespace std;
|
|
|
|
class SyncRequest;
|
|
|
|
extern "C" void * mad_manager_listener(void * _mm);
|
|
|
|
/**
|
|
* Provides general functionality for driver management. The MadManager serves
|
|
* Nebula managers as base clase.
|
|
*/
|
|
class MadManager
|
|
{
|
|
public:
|
|
/**
|
|
* Function to initialize the MAD management system. This function
|
|
* MUST be called once before using the MadManager class. This function
|
|
* blocks the SIG_PIPE (broken pipe) signal that may occur when a driver
|
|
* crashes
|
|
*/
|
|
static void mad_manager_system_init();
|
|
|
|
/**
|
|
* Loads Virtual Machine Manager Mads defined in configuration file
|
|
* @param uid of the user executing the driver. When uid is 0 the nebula
|
|
* identity will be used. Otherwise the Mad will be loaded through the
|
|
* sudo application.
|
|
*/
|
|
virtual int load_mads(int uid) = 0;
|
|
|
|
/**
|
|
* Notify the result of an auth request
|
|
*/
|
|
void notify_request(int id, bool result, const string& message);
|
|
|
|
protected:
|
|
|
|
MadManager(vector<const Attribute *>& _mads);
|
|
|
|
virtual ~MadManager();
|
|
|
|
/**
|
|
* Vector containing Mad configuration for this Manager, as described in
|
|
* the nebula location
|
|
*/
|
|
vector<const Attribute *> mad_conf;
|
|
|
|
/**
|
|
* This function initialize the communication pipes to register new MADs
|
|
* in the manager, and starts a listener to wait for driver messages.
|
|
*/
|
|
virtual int start();
|
|
|
|
|
|
/**
|
|
* This function closes the communication pipes, stops the listener thread,
|
|
* and finalize the associated drivers.
|
|
*/
|
|
virtual void stop();
|
|
|
|
/**
|
|
* Get a mad
|
|
*/
|
|
virtual const Mad * get(int uid, const string& name, const string& value);
|
|
|
|
/**
|
|
* Register a new mad in the manager. The Mad is previously started, and
|
|
* then the listener thread is notified through the pipe_w stream. In case
|
|
* of failure the calling function MUST free the Mad.
|
|
* @param mad pointer to the mad to be added to the manager.
|
|
* @return 0 on success.
|
|
*/
|
|
int add(Mad *mad);
|
|
|
|
/**
|
|
* This function can be periodically executed to check time_outs on
|
|
* request. It will fail requests with an expired timeout and will notify
|
|
* the clients.
|
|
*/
|
|
void check_time_outs_action();
|
|
|
|
/**
|
|
* Add a new request to the Request map
|
|
* @param ar pointer to the request
|
|
* @return the id for the request
|
|
*/
|
|
void add_request(SyncRequest *ar);
|
|
|
|
/**
|
|
* Gets request from the Request map
|
|
* @param id for the request
|
|
* @return pointer to the Request
|
|
*/
|
|
SyncRequest * get_request(int id);
|
|
|
|
private:
|
|
/**
|
|
* Function to lock the Manager
|
|
*/
|
|
void lock()
|
|
{
|
|
pthread_mutex_lock(&mutex);
|
|
};
|
|
|
|
/**
|
|
* Function to unlock the Manager
|
|
*/
|
|
void unlock()
|
|
{
|
|
pthread_mutex_unlock(&mutex);
|
|
};
|
|
|
|
/**
|
|
* Function to execute the listener method within a new pthread (requires
|
|
* C linkage)
|
|
*/
|
|
friend void * mad_manager_listener(void * _mm);
|
|
|
|
/**
|
|
* Synchronization mutex (listener & manager threads)
|
|
*/
|
|
pthread_mutex_t mutex;
|
|
|
|
/**
|
|
* Thread id for the listener process
|
|
*/
|
|
pthread_t listener_thread;
|
|
|
|
/**
|
|
* Communication pipe (read end) to link the Manager and the listener
|
|
* thread
|
|
*/
|
|
int pipe_r;
|
|
|
|
/**
|
|
* Communication pipe (write end) to link the Manager and the listener
|
|
* thread
|
|
*/
|
|
int pipe_w;
|
|
|
|
/**
|
|
* This vector contains the file descriptors of the driver pipes (to read
|
|
* Mads responses)
|
|
*/
|
|
vector<int> fds;
|
|
|
|
/**
|
|
* The sets of Mads managed by the MadManager
|
|
*/
|
|
vector<Mad *> mads;
|
|
|
|
/**
|
|
* Read buffer for the listener. This variable is in the class so it
|
|
* can be free upon listener thread cancellation.
|
|
*/
|
|
ostringstream buffer;
|
|
|
|
/**
|
|
* List of pending requests
|
|
*/
|
|
map<int, SyncRequest *> sync_requests;
|
|
|
|
/**
|
|
* Listener thread implementation.
|
|
*/
|
|
void listener();
|
|
};
|
|
|
|
#endif /*MAD_MANAGER_H_*/
|