ServiceInterface.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "config.h"
00032
00033 #include "ServiceInterface.hpp"
00034
00035
00036 #include <Exception.hpp>
00037
00038 #include <DataFactory.hpp>
00039
00040 #include <XmlCharData.hpp>
00041 #include <XmlElement.hpp>
00042 #include <XmlElementVector.hpp>
00043
00044 #include <sstream>
00045 #include <iostream>
00046
00047 using namespace mermaid::support::service;
00048 using mermaid::support::data::DataFactory;
00049 using mermaid::support::errorhandling::Exception;
00050 using boost::shared_ptr;
00051
00052 using mermaid::support::xml::XmlCharData;
00053 using mermaid::support::xml::XmlElement;
00054 using mermaid::support::xml::XmlElementVector;
00055
00056
00057
00058 ServiceInterface::ServiceInterface (shared_ptr<ServiceInterfaceDescription> interfaceDescription)
00059 {
00060 validHandler_ = false;
00061 interfaceDescription_ = interfaceDescription;
00062 };
00063
00064 shared_ptr<ServiceInterfaceDescription> ServiceInterface::getServiceInterfaceDescription()
00065 {
00066 return interfaceDescription_;
00067 };
00068
00069 void ServiceInterface::setHandlerMethod (shared_ptr<ServiceInterfaceHandlerMethodBase> handlerMethod)
00070 {
00071 handlerMethod_ = handlerMethod;
00072 validHandler_ = true;
00073 };
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085 shared_ptr<ServiceReply> ServiceInterface::processServiceRequest (shared_ptr<ServiceRequest> request)
00086 {
00087 if (validHandler_ == false) {
00088 throw Exception ("ServiceInterface::processServiceRequest : no valid handler");
00089 }
00090
00091 shared_ptr<ServiceReply> reply (new ServiceReply (request));
00092 handlerMethod_->callHandler (request, reply);
00093
00094 return reply;
00095 };