X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fhttp%2FHandler.hpp;h=0e20a64ae3cdc83bb44ecf37c196fac12d8296e8;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=6bc3b2fe728e70d6bb2b08b06dbb7e417ebf72f1;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/include/anna/http/Handler.hpp b/include/anna/http/Handler.hpp index 6bc3b2f..0e20a64 100644 --- a/include/anna/http/Handler.hpp +++ b/include/anna/http/Handler.hpp @@ -1,37 +1,9 @@ -// ANNA - Anna is Not Nothingness Anymore -// -// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo -// -// https://bitbucket.org/testillano/anna -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: eduardo.ramos.testillano@gmail.com -// cisco.tierra@gmail.com +// ANNA - Anna is Not Nothingness Anymore // +// // +// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // +// // +// See project site at http://redmine.teslayout.com/projects/anna-suite // +// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // #ifndef anna_http_Handler_hpp @@ -74,7 +46,7 @@ public: en caso de ser necesario. \param message Mensaje HTTP recibido. */ - void apply(comm::ClientSocket& clientSocket, const comm::Message& message) throw(RuntimeException); + void apply(comm::ClientSocket& clientSocket, const comm::Message& message) noexcept(false); protected: /** @@ -87,7 +59,7 @@ protected: Devuelve una instancia de http::Response que puede ser usada para responser a una peticion. \return una instancia de http::Response que puede ser usada para responser a una peticion. */ - Response* allocateResponse() throw(); + Response* allocateResponse() ; /** Metodo virtual que debemos sobreescribir para tratar las peticiones HTTP. @@ -95,14 +67,14 @@ protected: en caso de ser necesario. \param request Peticion HTTP a tratar. */ - virtual void evRequest(comm::ClientSocket& clientSocket, const Request& request) throw(RuntimeException) = 0; + virtual void evRequest(comm::ClientSocket& clientSocket, const Request& request) noexcept(false) = 0; /** Metodo virtual que debemos sobreescribir para tratar las respuestas HTTP. \param clientSocket Socket por el que se recibe la respuesta. \param response respuesta HTTP a tratar. */ - virtual void evResponse(comm::ClientSocket& clientSocket, const Response& response) throw(RuntimeException) = 0; + virtual void evResponse(comm::ClientSocket& clientSocket, const Response& response) noexcept(false) = 0; private: Response* a_response;