Skip to content
Snippets Groups Projects
Commit a29ba4d8 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

ADD: new composite application base class

parent 1f4179e7
No related branches found
No related tags found
No related merge requests found
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbWrapperCompositeApplication_h
#define otbWrapperCompositeApplication_h
#include "otbWrapperApplication.h"
#include "itkStdStreamLogOutput.h"
namespace otb
{
namespace Wrapper
{
/** \class CompositeApplication
* \brief This class is a base class for composite applications
*
* This class allows to create & store internal applications with the same logic
* as parameters. You choose the application type to create, you choose an
* identifier (alphanumeric string), and you can give a short description.
* Later, you will refer to this application using the identifier. In the
* functions of this class, you can refer to parameters from internal
* applications by using their identifier as prefix. For instance, "app1.in"
* will refer to parameter "in" from internal application named "app1"
* (if such application exists, if not it will refer to a parameter of this
* composite application).
*
* \ingroup OTBApplicationEngine
*/
class OTBApplicationEngine_EXPORT CompositeApplication: public Application
{
public:
/** Standard class typedefs. */
typedef CompositeApplication Self;
typedef Application Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** RTTI support */
itkTypeMacro(CompositeApplication, Application);
/** Filters typedef */
typedef itk::MemberCommand< Self > AddProcessCommandType;
typedef struct
{
Application::Pointer App;
std::string Desc;
} InternalApplication;
typedef std::map<std::string, InternalApplication> InternalAppContainer;
protected:
/** Constructor */
CompositeApplication();
/** Destructor */
~CompositeApplication() ITK_OVERRIDE;
/**
* Callback function to retrieve the process watchers on internal filters
*/
void LinkWatchers(itk::Object * itkNotUsed(caller), const itk::EventObject & event);
/**
* Method to instanciate and register a new internal application
* \param appType Type of the application to instanciate
* \param key Identifier associated to the created application
* \param desc Description of the internal application
*/
bool AddApplication(std::string appType, std::string key, std::string desc);
/**
* Connect two existing parameters together. The first parameter will point to
* the second parameter.
*/
bool Connect(std::string fromKey, std::string toKey);
/**
* Share a parameter between the composite application and an internal application
* The local parameter is created as a proxy to the internal parameter.
* \param localKey New parameter key in the composite application
* \param internalKey Key to the internal parameter to expose
* \param name Name for the local parameter, if empty the target's name is used
* \param desc Description for the local parameter, if empty the target's description is used
*/
bool ShareParameter(std::string localKey,
std::string internalKey,
std::string name = std::string(),
std::string desc = std::string());
/**
* Decode a key to extract potential prefix for internal applications
* If a valid prefix (corresponding to an internal app) is found:
* - prefix is removed from the input key which is altered.
* - the function returns a pointer to the internal application
* If no valid prefix is found, the input key is not modified, and the
* function returns 'this'.
*/
Application* DecodeKey(std::string &key);
/**
* Utility function to call Execute() on an internal app and get its output logs
*/
void ExecuteInternal(std::string key);
/**
* Utility function to call UpdateParameters() on an internal app
*/
void UpdateParametersInternal(std::string key);
private:
CompositeApplication(const CompositeApplication &); //purposely not implemented
void operator =(const CompositeApplication&); //purposely not implemented
InternalAppContainer m_AppContainer;
itk::StdStreamLogOutput::Pointer m_LogOutput;
std::ostringstream m_Oss;
AddProcessCommandType::Pointer m_AddProcessCommand;
};
}
}
#endif
......@@ -27,6 +27,7 @@ set(OTBApplicationEngine_SRC
otbWrapperChoiceParameter.cxx
otbWrapperApplicationRegistry.cxx
otbWrapperApplicationFactoryBase.cxx
otbWrapperCompositeApplication.cxx
)
add_library(OTBApplicationEngine ${OTBApplicationEngine_SRC})
......
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "otbWrapperCompositeApplication.h"
#include "otbWrapperProxyParameter.h"
#include "otbWrapperApplicationRegistry.h"
#include "otbWrapperAddProcessToWatchEvent.h"
namespace otb
{
namespace Wrapper
{
CompositeApplication::CompositeApplication()
{
m_LogOutput = itk::StdStreamLogOutput::New();
m_LogOutput->SetStream(m_Oss);
m_AddProcessCommand = AddProcessCommandType::New();
m_AddProcessCommand->SetCallbackFunction(this, &CompositeApplication::LinkWatchers);
}
CompositeApplication::~CompositeApplication()
{
}
void
CompositeApplication
::LinkWatchers(itk::Object * itkNotUsed(caller), const itk::EventObject & event)
{
if (typeid(AddProcessToWatchEvent) == typeid( event ))
{
this->InvokeEvent(event);
}
}
bool
CompositeApplication
::AddApplication(std::string appType, std::string key, std::string desc)
{
if (m_AppContainer.count(key))
{
otbAppLogWARNING("The requested identifier for internal application is already used ("<<key<<")");
return false;
}
InternalApplication container;
container.App = ApplicationRegistry::CreateApplication(appType);
container.Desc = desc;
// Setup logger
container.App->GetLogger()->AddLogOutput(m_LogOutput);
container.App->GetLogger()->SetTimeStampFormat(itk::LoggerBase::HUMANREADABLE);
container.App->AddObserver(AddProcessToWatchEvent(), m_AddProcessCommand.GetPointer());
m_AppContainer[key] = container;
return true;
}
bool
CompositeApplication
::Connect(std::string fromKey, std::string toKey)
{
std::string key1(fromKey);
std::string key2(toKey);
Application *app1 = DecodeKey(key1);
Application *app2 = DecodeKey(key2);
Parameter* rawParam1 = app1->GetParameterByKey(key1, false);
if (dynamic_cast<ProxyParameter*>(rawParam1))
{
otbAppLogWARNING("Parameter is already connected ! Override current connection");
}
ProxyParameter::Pointer proxyParam = ProxyParameter::New();
ProxyParameter::ProxyTargetType target;
target.first = app2->GetParameterList();
target.second = key2;
proxyParam->SetTarget(target);
proxyParam->SetName(rawParam1->GetName());
proxyParam->SetDescription(rawParam1->GetDescription());
return app1->GetParameterList()->SetParameter(proxyParam.GetPointer(),key1);
}
bool
CompositeApplication
::ShareParameter(std::string localKey,
std::string internalKey,
std::string name,
std::string desc)
{
std::string internalKeyCheck(internalKey);
Application *app = DecodeKey(internalKeyCheck);
Parameter* rawTarget = app->GetParameterByKey(internalKeyCheck, false);
ProxyParameter::Pointer proxyParam = ProxyParameter::New();
ProxyParameter::ProxyTargetType target;
target.first = app->GetParameterList();
target.second = internalKeyCheck;
proxyParam->SetTarget(target);
proxyParam->SetName( name.empty() ? rawTarget->GetName() : name);
proxyParam->SetDescription(desc.empty() ? rawTarget->GetDescription() : desc);
return this->GetParameterList()->SetParameter(proxyParam.GetPointer(),localKey);
}
Application*
CompositeApplication
::DecodeKey(std::string &key)
{
Application *ret = this;
size_t pos = key.find('.');
if (pos != std::string::npos && m_AppContainer.count(key.substr(0,pos)))
{
ret = m_AppContainer[key.substr(0,pos)].App;
key = key.substr(pos+1);
}
return ret;
}
void
CompositeApplication
::ExecuteInternal(std::string key)
{
otbAppLogINFO(<< m_AppContainer[key].Desc <<"...");
m_AppContainer[key].App->Execute();
otbAppLogINFO(<< "\n" << m_Oss.str());
m_Oss.str(std::string(""));
}
void
CompositeApplication
::UpdateParametersInternal(std::string key)
{
m_AppContainer[key].App->UpdateParameters();
}
} // end namespace Wrapper
} // end namespace otb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment