6a5e10492c
This decouples the build and packaging of guest-server, guest-agent from mtce, by splitting guest component into stx-nfv repo. This leaves existing C++ code, scripts, and resource files untouched, so there is no functional change. Code refactoring is beyond the scope of this update. Makefiles were modified to include devel headers directories /usr/include/mtce-common and /usr/include/mtce-daemon. This ensures there is no contamination with other system headers. The cgts-mtce-common package is renamed and split into: - repo stx-metal: mtce-common, mtce-common-dev - repo stx-metal: mtce - repo stx-nfv: mtce-guest - repo stx-ha: updates package dependencies to mtce-pmon for service-mgmt, sm, and sm-api mtce-common: - contains common and daemon shared source utility code mtce-common-dev: - based on mtce-common, contains devel package required to build mtce-guest and mtce - contains common library archives and headers mtce: - contains components: alarm, fsmon, fsync, heartbeat, hostw, hwmon, maintenance, mtclog, pmon, public, rmon mtce-guest: - contains guest component guest-server, guest-agent Story: 2002829 Task: 22748 Change-Id: I9c7a9b846fd69fd566b31aa3f12a043c08f19f1f Signed-off-by: Jim Gauld <james.gauld@windriver.com>
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
#ifndef __INCLUDE_MTCVIMAPI_H__
|
|
#define __INCLUDE_MTCVIMAPI_H__
|
|
/*
|
|
* Copyright (c) 2013, 2015 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "mtcHttpUtil.h"
|
|
|
|
/**
|
|
* @file
|
|
* Wind River CGTS Platform Maintenance VIM Support
|
|
*
|
|
* Virtual Infrastructure Manager (VIM) API Header
|
|
*
|
|
* This module offers init and cleanup utils along with
|
|
* a single request based utility to inform VIM of Host Failures and when
|
|
* mtce transitions a host into the Enabled or Disabled State due to Sysinv
|
|
* Lock and Unlock requests that complete.
|
|
*
|
|
* int mtcVimApi_state_change ( node_ptr, operation, retries )
|
|
*
|
|
* Operations:
|
|
*
|
|
* VIM Commands - Descriptions
|
|
* ------------- ------------------------------
|
|
* HOST_DISABLE - Inform VIM that this host is now Mtce-Disabled
|
|
* HOST_ENABLE - Inform VIM that this host is now Mtce-Enabled
|
|
* HOST_FAIL - Inform VIM that this host has failed and
|
|
* undergoing auto recovery
|
|
*
|
|
*/
|
|
|
|
#define MTC_VIM_LABEL "/nfvi-plugins/v1/hosts/"
|
|
|
|
/** Initializes the module */
|
|
int mtcVimApi_init ( string ip, int port );
|
|
|
|
/** Frees the module's dynamically allocated resources */
|
|
void mtcVimApi_fini ( void );
|
|
|
|
int mtcVimApi_handler ( libEvent & event );
|
|
|
|
#endif /* __INCLUDE_MTCVIMAPI_H__ */
|