mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-24 21:34:01 +03:00
170 lines
5.8 KiB
C
170 lines
5.8 KiB
C
|
/* -------------------------------------------------------------------------- */
|
||
|
/* Copyright 2002-2008, Distributed Systems Architecture Group, Universidad */
|
||
|
/* Complutense de Madrid (dsa-research.org) */
|
||
|
/* */
|
||
|
/* 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 LIFE_CYCLE_MANAGER_H_
|
||
|
#define LIFE_CYCLE_MANAGER_H_
|
||
|
|
||
|
#include "ActionManager.h"
|
||
|
#include "VirtualMachinePool.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
extern "C" void * lcm_action_loop(void *arg);
|
||
|
|
||
|
/**
|
||
|
* The Virtual Machine Life-cycle Manager module. This class is responsible for
|
||
|
* managing the life-cycle of a Virtual Machine.
|
||
|
*/
|
||
|
class LifeCycleManager : public ActionListener
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
LifeCycleManager(VirtualMachinePool * pool)
|
||
|
{
|
||
|
vmpool = pool;
|
||
|
|
||
|
am.addListener(this);
|
||
|
};
|
||
|
|
||
|
~LifeCycleManager(){};
|
||
|
|
||
|
enum Actions
|
||
|
{
|
||
|
SAVE_SUCCESS, /**< Send by the VMM when a save action succeeds */
|
||
|
SAVE_FAILURE, /**< Send by the VMM when a save action fails */
|
||
|
DEPLOY_SUCCESS, /**< Send by the VMM when a deploy/restore/migrate action succeeds */
|
||
|
DEPLOY_FAILURE, /**< Send by the VMM when a deploy/restore/migrate action fails */
|
||
|
SHUTDOWN_SUCCESS, /**< Send by the VMM when a shutdown action succeeds*/
|
||
|
SHUTDOWN_FAILURE, /**< Send by the VMM when a shutdown action fails */
|
||
|
CANCEL_SUCCESS, /**< Send by the VMM when a cancel action succeeds */
|
||
|
CANCEL_FAILURE, /**< Send by the VMM when a cancel action fails */
|
||
|
PROLOG_SUCCESS, /**< Send by the TM when the prolog phase succeeds */
|
||
|
PROLOG_FAILURE, /**< Send by the TM when the prolog phase fails */
|
||
|
EPILOG_SUCCESS, /**< Send by the TM when the epilog phase succeeds */
|
||
|
EPILOG_FAILURE, /**< Send by the TM when the epilog phase fails */
|
||
|
DEPLOY, /**< Send by the DM to deploy a VM on a host */
|
||
|
SUSPEND, /**< Send by the DM to suspend an running VM */
|
||
|
RESTORE, /**< Send by the DM to restore a suspended VM */
|
||
|
STOP, /**< Send by the DM to stop an running VM */
|
||
|
CANCEL, /**< Send by the DM to cancel an running VM */
|
||
|
MIGRATE, /**< Send by the DM to migrate a VM to other host */
|
||
|
LIVE_MIGRATE, /**< Send by the DM to live-migrate a VM */
|
||
|
SHUTDOWN, /**< Send by the DM to shutdown an running VM */
|
||
|
FINALIZE
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Triggers specific actions to the Life-cycle Manager. This function
|
||
|
* wraps the ActionManager trigger function.
|
||
|
* @param action the LCM action
|
||
|
* @param vid VM unique id. This is the argument of the passed to the
|
||
|
* invoked action.
|
||
|
*/
|
||
|
void trigger(
|
||
|
Actions action,
|
||
|
int vid);
|
||
|
|
||
|
/**
|
||
|
* This functions starts a new thread for the Life-cycle Manager. This
|
||
|
* thread will wait in an action loop till it receives ACTION_FINALIZE.
|
||
|
* @return 0 on success.
|
||
|
*/
|
||
|
int start();
|
||
|
|
||
|
/**
|
||
|
* Gets the thread identification.
|
||
|
* @return pthread_t for the manager thread (that in the action loop).
|
||
|
*/
|
||
|
pthread_t get_thread_id() const
|
||
|
{
|
||
|
return lcm_thread;
|
||
|
};
|
||
|
|
||
|
private:
|
||
|
/**
|
||
|
* Thread id for the Virtual Machine Manager
|
||
|
*/
|
||
|
pthread_t lcm_thread;
|
||
|
|
||
|
/**
|
||
|
* Pointer to the Virtual Machine Pool, to access VMs
|
||
|
*/
|
||
|
VirtualMachinePool * vmpool;
|
||
|
|
||
|
/**
|
||
|
* Action engine for the Manager
|
||
|
*/
|
||
|
ActionManager am;
|
||
|
|
||
|
/**
|
||
|
* Function to execute the Manager action loop method within a new pthread
|
||
|
* (requires C linkage)
|
||
|
*/
|
||
|
friend void * lcm_action_loop(void *arg);
|
||
|
|
||
|
/**
|
||
|
* The action function executed when an action is triggered.
|
||
|
* @param action the name of the action
|
||
|
* @param arg arguments for the action function
|
||
|
*/
|
||
|
void do_action(
|
||
|
const string & action,
|
||
|
void * arg);
|
||
|
|
||
|
void save_success_action(int vid);
|
||
|
|
||
|
void save_failure_action(int vid);
|
||
|
|
||
|
void deploy_success_action(int vid);
|
||
|
|
||
|
void deploy_failure_action(int vid);
|
||
|
|
||
|
void shutdown_success_failure_action(int vid);
|
||
|
|
||
|
void cancel_success_failure_action(int vid);
|
||
|
|
||
|
void prolog_success_action(int vid);
|
||
|
|
||
|
void prolog_failure_action(int vid);
|
||
|
|
||
|
void epilog_success_action(int vid);
|
||
|
|
||
|
void epilog_failure_action(int vid);
|
||
|
|
||
|
void deploy_action(int vid);
|
||
|
|
||
|
void suspend_action(int vid);
|
||
|
|
||
|
void restore_action(int vid);
|
||
|
|
||
|
void stop_action(int vid);
|
||
|
|
||
|
void cancel_action(int vid);
|
||
|
|
||
|
void checkpoint_action(int vid);
|
||
|
|
||
|
void migrate_action(int vid);
|
||
|
|
||
|
void live_migrate_action(int vid);
|
||
|
|
||
|
void shutdown_action(int vid);
|
||
|
|
||
|
void timer_action();
|
||
|
};
|
||
|
|
||
|
#endif /*LIFE_CYCLE_MANAGER_H_*/
|