e6a521f2acf285e70301b9fc3941a4fa7ee3afe1
[anna.git] / example / timex / ArithmeticHTTPServer / Context.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // http://redmine.teslayout.com/projects/anna-suite
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     *  Neither the name of the copyright holder nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #include <anna/core/tracing/Logger.hpp>
38 #include <anna/core/functions.hpp>
39
40 #include <anna/timex/Engine.hpp>
41
42 #include <anna/core/util/Millisecond.hpp>
43
44 #include "Context.hpp"
45 #include "Transaction.hpp"
46
47 using namespace std;
48 using namespace anna;
49 using namespace test;
50
51 http4comm::Context::Context (timex::Engine& timeController, const Millisecond& timeout) : 
52    timex::Context<S64> ("http4comm", timeController, timeout) 
53 {;}
54
55 void http4comm::Context::create (const S64 id, comm::ClientSocket& clientSocket) 
56    throw (RuntimeException)
57 {   
58    http4comm::Transaction* transaction = static_cast <http4comm::Transaction*> (timex::Context <S64>::open (id, 0));
59
60    transaction->setClientSocket (&clientSocket);
61    
62    LOGINFORMATION (
63       string msg ("http4comm::Context::create | Id: ");
64       msg += functions::asHexString (id);
65       msg += " | ";
66       msg += transaction->asString ();
67       Logger::information (msg, ANNA_FILE_LOCATION);
68    );
69 }
70
71 /**
72  * Si el fuera necesaria la instancia de una transación y no hay ninguna otra marcada como "no-usada" se
73  * crearía una nueva instancia.
74  */
75 timex::Transaction* http4comm::Context::createTransaction (const int /*classType*/) 
76    throw ()
77 {
78    // Si nuestra aplicación tratara más de un tipo de transación tendríamos que obtenerla de
79    // distintos Recycler, uno para cada tipo de transacción.
80    return a_transactions.create ();
81 }
82
83 /**
84  * Cuando la instancia dela transación no se esté usando se marca como no-usada.
85  */
86 void http4comm::Context::releaseTransaction (timex::Transaction* tt) 
87    throw ()
88 {
89    // Si nuestra aplicación tratata más de un tipo tendríamos que obtener el tipo 
90    // de la transación y liberar la transación en el Recycler adecuado.
91    http4comm::Transaction* aux = static_cast <http4comm::Transaction*> (tt);
92    a_transactions.release (aux);
93 }
94
95
96 /**
97  * Interpreta el identificador de la transación como cadena
98  */
99 string http4comm::Context::identifierAsString (const S64& id) const
100    throw ()
101 {
102    return functions::asHexString (id);
103 }
104
105 /*
106  * Interpreta el contexto de la transación para obtener su Id de aplicación.
107  */
108 const S64& http4comm::Context::contextAsIdentifier (const void* cc) const 
109    throw ()
110 {
111    return *((S64*) cc);
112 }