/** * @file * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de) * @copyright Simplified BSD * * @cond * This program is free software: you can redistribute it and/or modify * it under the terms of the FreeBSD license as published by the FreeBSD * project. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the FreeBSD license along with this * program. If not, see . * @endcond */ #include "uscxml/config.h" #include "uscxml/plugins/Factory.h" #include "uscxml/messages/Data.h" #include "uscxml/Interpreter.h" #include // see http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system // we will always include these in a build #include "uscxml/plugins/datamodel/null/NULLDataModel.h" #include "uscxml/plugins/invoker/scxml/USCXMLInvoker.h" #include "uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.h" #include "uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.h" # ifdef V8_FOUND # include "uscxml/plugins/datamodel/ecmascript/v8/V8DataModel.h" # endif # ifdef JSC_FOUND # include "uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.h" # endif # ifdef LUA_FOUND # include "uscxml/plugins/datamodel/lua/LuaDataModel.h" # endif namespace uscxml { Factory::Factory(Factory* parentFactory) : _parentFactory(parentFactory) { } Factory::Factory(const std::string& pluginPath, Factory* parentFactory) : _parentFactory(parentFactory), _pluginPath(pluginPath) { registerPlugins(); } Factory::Factory(const std::string& pluginPath) : _parentFactory(NULL), _pluginPath(pluginPath) { registerPlugins(); } void Factory::setDefaultPluginPath(const std::string& path) { _defaultPluginPath = path; } std::string Factory::getDefaultPluginPath() { return _defaultPluginPath; } void Factory::registerPlugins() { { USCXMLInvoker* invoker = new USCXMLInvoker(); registerInvoker(invoker); } { SCXMLIOProcessor* ioProcessor = new SCXMLIOProcessor(); registerIOProcessor(ioProcessor); } { BasicHTTPIOProcessor* ioProcessor = new BasicHTTPIOProcessor(); registerIOProcessor(ioProcessor); } { NULLDataModel* dataModel = new NULLDataModel(); registerDataModel(dataModel); } #ifdef V8_FOUND { V8DataModel* dataModel = new V8DataModel(); registerDataModel(dataModel); } #endif #ifdef JSC_FOUND { JSCDataModel* dataModel = new JSCDataModel(); registerDataModel(dataModel); } #endif #ifdef LUA_FOUND { LuaDataModel* dataModel = new LuaDataModel(); registerDataModel(dataModel); } #endif } Factory::~Factory() { #ifdef BUILD_AS_PLUGINS pluma.unloadAll(); #endif } #define LIST_COMPONENTS(type, name) \ std::map::iterator iter = name.begin(); \ while(iter != name.end()) { \ std::list names = iter->second->getNames(); \ std::list::iterator nameIter = names.begin(); \ if (nameIter != names.end()) { \ std::cout << "\t" << *nameIter; \ nameIter++; \ std::string seperator = ""; \ if (nameIter != names.end()) { \ std::cout << "\t("; \ while(nameIter != names.end()) { \ std::cout << seperator << *nameIter; \ seperator = ", "; \ nameIter++; \ } \ std::cout << ")"; \ } \ std::cout << std::endl; \ } \ iter++; \ } void Factory::listComponents() { { std::cout << "Available Datamodels:" << std::endl; LIST_COMPONENTS(DataModelImpl, _dataModels); std::cout << std::endl; } { std::cout << "Available Invokers:" << std::endl; LIST_COMPONENTS(InvokerImpl, _invokers); std::cout << std::endl; } { std::cout << "Available I/O Processors:" << std::endl; LIST_COMPONENTS(IOProcessorImpl, _ioProcessors); std::cout << std::endl; } { std::cout << "Available Elements:" << std::endl; std::map, ExecutableContentImpl*>::iterator iter = _executableContent.begin(); while(iter != _executableContent.end()) { std::cout << "\t" << iter->second->getNamespace() << " / " << iter->second->getLocalName() << std::endl; iter++; } std::cout << std::endl; } } void Factory::registerIOProcessor(IOProcessorImpl* ioProcessor) { std::list names = ioProcessor->getNames(); std::list::iterator nameIter = names.begin(); if (nameIter != names.end()) { std::string canonicalName = *nameIter; _ioProcessors[canonicalName] = ioProcessor; while(nameIter != names.end()) { _ioProcessorAliases[*nameIter] = canonicalName; nameIter++; } } } void Factory::registerDataModel(DataModelImpl* dataModel) { std::list names = dataModel->getNames(); std::list::iterator nameIter = names.begin(); if (nameIter != names.end()) { std::string canonicalName = *nameIter; _dataModels[canonicalName] = dataModel; while(nameIter != names.end()) { _dataModelAliases[*nameIter] = canonicalName; nameIter++; } } } void Factory::registerInvoker(InvokerImpl* invoker) { std::list names = invoker->getNames(); std::list::iterator nameIter = names.begin(); if (nameIter != names.end()) { std::string canonicalName = *nameIter; _invokers[canonicalName] = invoker; while(nameIter != names.end()) { _invokerAliases[*nameIter] = canonicalName; nameIter++; } } } void Factory::registerExecutableContent(ExecutableContentImpl* executableContent) { std::string localName = executableContent->getLocalName(); std::string nameSpace = executableContent->getNamespace(); _executableContent[std::make_pair(localName, nameSpace)] = executableContent; } std::map Factory::getIOProcessors() { std::map ioProcs; if (_parentFactory) { ioProcs = _parentFactory->getIOProcessors(); } std::map::iterator ioProcIter = _ioProcessors.begin(); while(ioProcIter != _ioProcessors.end()) { ioProcs.insert(std::make_pair(ioProcIter->first, ioProcIter->second)); ioProcIter++; } return ioProcs; } bool Factory::hasInvoker(const std::string& type) { if (_invokerAliases.find(type) != _invokerAliases.end()) { return true; } else if(_parentFactory) { return _parentFactory->hasInvoker(type); } return false; } std::shared_ptr Factory::createInvoker(const std::string& type, InterpreterImpl* interpreter) { // do we have this type ourself? if (_invokerAliases.find(type) != _invokerAliases.end()) { std::string canonicalName = _invokerAliases[type]; if (_invokers.find(canonicalName) != _invokers.end()) { std::shared_ptr invoker = _invokers[canonicalName]->create(interpreter); return invoker; } } // lookup in parent factory if (_parentFactory) { return _parentFactory->createInvoker(type, interpreter); } else { ERROR_EXECUTION_THROW("No Invoker named '" + type + "' known"); } return std::shared_ptr(); } bool Factory::hasDataModel(const std::string& type) { if (_dataModelAliases.find(type) != _dataModelAliases.end()) { return true; } else if(_parentFactory) { return _parentFactory->hasDataModel(type); } return false; } std::shared_ptr Factory::createDataModel(const std::string& type, DataModelCallbacks* callbacks) { // do we have this type ourself? if (_dataModelAliases.find(type) != _dataModelAliases.end()) { std::string canonicalName = _dataModelAliases[type]; if (_dataModels.find(canonicalName) != _dataModels.end()) { std::shared_ptr dataModel = _dataModels[canonicalName]->create(callbacks); dataModel->setCallbacks(callbacks); return dataModel; } } // lookup in parent factory if (_parentFactory) { return _parentFactory->createDataModel(type, callbacks); } else { ERROR_EXECUTION_THROW("No Datamodel name '" + type + "' known"); } return std::shared_ptr(); } bool Factory::hasIOProcessor(const std::string& type) { if (_ioProcessorAliases.find(type) != _ioProcessorAliases.end()) { return true; } else if(_parentFactory) { return _parentFactory->hasIOProcessor(type); } return false; } std::shared_ptr Factory::createIOProcessor(const std::string& type, InterpreterImpl* interpreter) { // do we have this type ourself? if (_ioProcessorAliases.find(type) != _ioProcessorAliases.end()) { std::string canonicalName = _ioProcessorAliases[type]; if (_ioProcessors.find(canonicalName) != _ioProcessors.end()) { std::shared_ptr ioProc = _ioProcessors[canonicalName]->create(interpreter); // ioProc->setInterpreter(interpreter); return ioProc; } } // lookup in parent factory if (_parentFactory) { return _parentFactory->createIOProcessor(type, interpreter); } else { ERROR_EXECUTION_THROW("No IOProcessor named '" + type + "' known"); } return std::shared_ptr(); } bool Factory::hasExecutableContent(const std::string& localName, const std::string& nameSpace) { std::string actualNameSpace = (nameSpace.length() == 0 ? "http://www.w3.org/2005/07/scxml" : nameSpace); if (_executableContent.find(std::make_pair(localName, actualNameSpace)) != _executableContent.end()) { return true; } else if(_parentFactory) { return _parentFactory->hasExecutableContent(localName, nameSpace); } return false; } std::shared_ptr Factory::createExecutableContent(const std::string& localName, const std::string& nameSpace, InterpreterImpl* interpreter) { // do we have this type in this factory? std::string actualNameSpace = (nameSpace.length() == 0 ? "http://www.w3.org/2005/07/scxml" : nameSpace); if (_executableContent.find(std::make_pair(localName, actualNameSpace)) != _executableContent.end()) { std::shared_ptr execContent = _executableContent[std::make_pair(localName, actualNameSpace)]->create(interpreter); execContent->setInterpreter(interpreter); return execContent; } // lookup in parent factory if (_parentFactory) { return _parentFactory->createExecutableContent(localName, nameSpace, interpreter); } else { ERROR_EXECUTION_THROW("No Executable content name '" + localName + "' in namespace '" + actualNameSpace + "' known"); } return std::shared_ptr(); } void DataModelImpl::addExtension(DataModelExtension* ext) { ERROR_EXECUTION_THROW("DataModel does not support extensions"); } size_t DataModelImpl::replaceExpressions(std::string& content) { std::stringstream ss; size_t replacements = 0; size_t indent = 0; size_t pos = 0; size_t start = std::string::npos; size_t end = 0; while (true) { // find any of ${} pos = content.find_first_of("${}", pos); if (pos == std::string::npos) { ss << content.substr(end, content.length() - end); break; } if (content[pos] == '$') { if (content.size() > pos && content[pos+1] == '{') { pos++; start = pos + 1; // copy everything in between ss << content.substr(end, (start - 2) - end); } } else if (content[pos] == '{' && start != std::string::npos) { indent++; } else if (content[pos] == '}' && start != std::string::npos) { if (!indent) { end = pos; // we found a token to substitute std::string expr = content.substr(start, end - start); end++; try { Data data = getAsData(expr); // if (data.type == Data::VERBATIM) { // ss << "\"" << data.atom << "\""; // } else { // ss << data.atom; // } if (data.atom.length() > 0) { ss << data.atom; } else { ss << Data::toJSON(data); } replacements++; } catch (Event e) { // insert unsubstituted start -= 2; ss << content.substr(start, end - start); } start = std::string::npos; } else { indent--; } } pos++; } if (replacements) content = ss.str(); return replacements; } Factory* Factory::getInstance() { if (_instance == NULL) { _instance = new Factory(Factory::_defaultPluginPath); } return _instance; } //void EventHandlerImpl::returnErrorExecution(const std::string& cause) { // ERROR_EXECUTION(exc, cause); // returnEvent(exc); //} // //void EventHandlerImpl::returnErrorCommunication(const std::string& cause) { // ERROR_COMMUNICATION(exc, cause); // returnEvent(exc); //} void IOProcessorImpl::eventToSCXML(Event& event, const std::string& type, const std::string& origin, bool internal) { if (event.eventType == 0) event.eventType = (internal ? Event::INTERNAL : Event::EXTERNAL); if (event.origin.length() == 0 && origin.length() > 0) event.origin = origin; if (event.origintype.length() == 0) event.origintype = type; if (internal) { _interpreter->enqueueInternal(event); } else { _interpreter->enqueueExternal(event); } } void InvokerImpl::eventToSCXML(Event& event, const std::string& type, const std::string& invokeId, bool internal) { if (event.invokeid.length() == 0) event.invokeid = invokeId; if (event.eventType == 0) event.eventType = (internal ? Event::INTERNAL : Event::EXTERNAL); if (event.origin.length() == 0 && invokeId.length() > 0) event.origin = "#_" + invokeId; if (event.origintype.length() == 0) event.origintype = type; if (internal) { _interpreter->enqueueInternal(event); } else { _interpreter->enqueueExternal(event); } } Factory* Factory::_instance = NULL; std::string Factory::_defaultPluginPath; }