Blame view

src/ParamOutputImpl/Plot/AMDAPlugin.cc 3.18 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* -*- Base: 10 ; Mode: C++ -*- */
/*------------------------------------------------------------------------
				     **	
  				FOST project
				     **
--------------------------------------------------------------------------
--------------------------------------------------------------------------
   				FILE LOG
		$Revision: 1.3 $    $Date: 2012-06-15 13:04:42 $
--------------------------------------------------------------------------
CREATION
	V.SAC

SUMMARY

DESCRIPTION

	The main function performs the following actions :
	<ul>
	<li>
	</ul>

------------------------------------------------------------------------*/

//=============================================================================
// 
// History of code
//
// creation 
//
// modification 
//=============================================================================

/**

*/
//=============================================================================
// Include section
//=============================================================================

// Standard libraries include files
//-----------------------------------------------------------------------------
#include <iostream>

// Include oriented definitions 
//-----------------------------------------------------------------------------
#include <boost/functional/value_factory.hpp>

// Module Kernel include files
//-----------------------------------------------------------------------------

// Parameters module include
#include "ServicesServer.hh"
#include "PluginManager.hh"

// XMLRequest module include
#include "XMLRequestParser.hh"

#include "PlotNode.hh"

using namespace AMDA::Parameters;
using namespace AMDA::XMLRequest;

// Other modules include files
//-----------------------------------------------------------------------------

//=============================================================================
// Methods of Class AMDAPlugin
//=============================================================================



/**
   Retrieve the Plugin version we're going to expect
*/
extern "C" const char* getPluginVersion() 
{
	return "(Version)";
}

/**
   Tells us to register our functionality to an engine kernel
*/
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
84
extern "C" void registerPlugin(AMDA::Plugins::PluginManager & pm)
fbe3c2bb   Benjamin Renard   First commit
85
86
87
88
89
{
	AMDA::XMLRequest::XMLRequestParser* lXMLRequestParser = ServicesServer::getInstance()->getService<AMDA::XMLRequest::XMLRequestParser*>();
	if (lXMLRequestParser) {
		lXMLRequestParser->addNodeParser("request/outputs/plot",AMDA::XMLConfigurator::NodeCfgSPtr(new plot::PlotNode));
	}
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
90
         ServicesServer::getInstance()->linkParamOutputsWithPlugin("plot", pm.getCurrentPluginPath());
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
91
        
fbe3c2bb   Benjamin Renard   First commit
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
}

/**
   Tells us to unregister our functionality to an engine kernel
*/
/*
extern "C" void unregisterPlugin()
{
	//ParamOutputFactory fact = boost::factory<ParamOutputASCIIFile*>();
	//ServicesServer::getInstance()->addParamOutputFactory(std::string("ASCII_FILE"),boost::bind(boost::value_factory<ParamOutputASCIIFile>(),_1));
	AMDA::XMLRequest::XMLRequestParser* lXMLRequestParser = ServicesServer::getInstance()->getService<AMDA::XMLRequest::XMLRequestParser*>();
	if (lXMLRequestParser) {
		lXMLRequestParser->addNodeParser("request/outputs/plot",AMDA::XMLConfigurator::NodeCfgSPtr());
	}
}
*/