Skip to content
Snippets Groups Projects
Commit 65f33c0a authored by Jan Trávníček's avatar Jan Trávníček
Browse files

proper register unregister scheme in file type registraion

parent b4aa3e86
No related branches found
No related tags found
1 merge request!111Merge jt
......@@ -6,9 +6,15 @@
namespace registration {
 
class InputFileRegister {
std::string m_FileType;
public:
InputFileRegister ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & type, const ext::vector < std::string > & templateParams ) ) {
abstraction::InputFileRegistry::registerInputFileHandler ( fileType, callback );
InputFileRegister ( std::string fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & type, const ext::vector < std::string > & templateParams ) ) : m_FileType ( std::move ( fileType ) ) {
abstraction::InputFileRegistry::registerInputFileHandler ( m_FileType, callback );
}
~InputFileRegister ( ) {
abstraction::InputFileRegistry::unregisterInputFileHandler ( m_FileType );
}
};
 
......
......@@ -6,9 +6,15 @@
namespace registration {
 
class OutputFileRegister {
std::string m_FileType;
public:
OutputFileRegister ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & typehint ) ) {
abstraction::OutputFileRegistry::registerOutputFileHandler ( fileType, callback );
OutputFileRegister ( std::string fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & typehint ) ) : m_FileType ( std::move ( fileType ) ) {
abstraction::OutputFileRegistry::registerOutputFileHandler ( m_FileType, callback );
}
~OutputFileRegister ( ) {
abstraction::OutputFileRegistry::unregisterOutputFileHandler ( m_FileType );
}
};
 
......
......@@ -10,6 +10,22 @@
 
namespace abstraction {
 
ext::map < std::string, std::unique_ptr < InputFileRegistry::Entry > > & InputFileRegistry::getEntries ( ) {
static ext::map < std::string, std::unique_ptr < Entry > > inputFileHandlers;
return inputFileHandlers;
}
void InputFileRegistry::registerInputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & type, const ext::vector < std::string > & templateParams ) ) {
auto iter = getEntries ( ).insert ( std::make_pair ( fileType, std::unique_ptr < Entry > ( new EntryImpl ( callback ) ) ) );
if ( ! iter.second )
throw std::invalid_argument ( "Entry " + iter.first->first + " already registered." );
}
void InputFileRegistry::unregisterInputFileHandler ( const std::string & fileType ) {
if ( getEntries ( ).erase ( fileType ) == 0u )
throw std::invalid_argument ( "Entry " + fileType + " not registered." );
}
std::shared_ptr < abstraction::OperationAbstraction > InputFileRegistry::getAbstraction ( const std::string & fileType, const std::string & type, const ext::vector < std::string > & templateParams ) {
auto res = getEntries ( ).find ( fileType );
if ( res == getEntries ( ).end ( ) )
......
......@@ -35,15 +35,12 @@ class InputFileRegistry {
std::shared_ptr < abstraction::OperationAbstraction > getAbstraction ( const std::string & type, const ext::vector < std::string > & templateParams ) const override;
};
 
static ext::map < std::string, std::unique_ptr < Entry > > & getEntries ( ) {
static ext::map < std::string, std::unique_ptr < Entry > > inputFileHandlers;
return inputFileHandlers;
}
static ext::map < std::string, std::unique_ptr < Entry > > & getEntries ( );
 
public:
static void registerInputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & type, const ext::vector < std::string > & templateParams ) ) {
getEntries ( ).insert ( std::make_pair ( fileType, std::unique_ptr < Entry > ( new EntryImpl ( callback ) ) ) );
}
static void registerInputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & type, const ext::vector < std::string > & templateParams ) );
static void unregisterInputFileHandler ( const std::string & fileType );
 
static std::shared_ptr < abstraction::OperationAbstraction > getAbstraction ( const std::string & fileType, const std::string & type, const ext::vector < std::string > & templateParams );
};
......
......@@ -10,6 +10,22 @@
 
namespace abstraction {
 
ext::map < std::string, std::unique_ptr < OutputFileRegistry::Entry > > & OutputFileRegistry::getEntries ( ) {
static ext::map < std::string, std::unique_ptr < Entry > > inputFileHandlers;
return inputFileHandlers;
}
void OutputFileRegistry::registerOutputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & typehint ) ) {
auto iter = getEntries ( ).insert ( std::make_pair ( fileType, std::unique_ptr < Entry > ( new EntryImpl ( callback ) ) ) );
if ( ! iter.second )
throw std::invalid_argument ( "Entry " + iter.first->first + " already registered." );
}
void OutputFileRegistry::unregisterOutputFileHandler ( const std::string & fileType ) {
if ( getEntries ( ).erase ( fileType ) == 0u )
throw std::invalid_argument ( "Entry " + fileType + " not registered." );
}
std::shared_ptr < abstraction::OperationAbstraction > OutputFileRegistry::getAbstraction ( const std::string & fileType, const std::string & typehint ) {
auto res = getEntries ( ).find ( fileType );
if ( res == getEntries ( ).end ( ) )
......
......@@ -35,15 +35,12 @@ class OutputFileRegistry {
std::shared_ptr < abstraction::OperationAbstraction > getAbstraction ( const std::string & typehint ) const override;
};
 
static ext::map < std::string, std::unique_ptr < Entry > > & getEntries ( ) {
static ext::map < std::string, std::unique_ptr < Entry > > inputFileHandlers;
return inputFileHandlers;
}
static ext::map < std::string, std::unique_ptr < Entry > > & getEntries ( );
 
public:
static void registerOutputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & typehint ) ) {
getEntries ( ).insert ( std::make_pair ( fileType, std::unique_ptr < Entry > ( new EntryImpl ( callback ) ) ) );
}
static void registerOutputFileHandler ( const std::string & fileType, std::shared_ptr < abstraction::OperationAbstraction > ( * callback ) ( const std::string & typehint ) );
static void unregisterOutputFileHandler ( const std::string & fileType );
 
static std::shared_ptr < abstraction::OperationAbstraction > getAbstraction ( const std::string & fileType, const std::string & typehint );
};
......
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