Updated license
[anna.git] / include / anna / core / mt / ThreadData.hpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
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 Google Inc. 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 #ifndef anna_core_mt_ThreadData_hpp
38 #define anna_core_mt_ThreadData_hpp
39
40 #ifdef _MT
41 #include <map>
42 #include <anna/core/mt/NRMutex.hpp>
43 #include <anna/core/functions.hpp>
44 #include <anna/core/tracing/Logger.hpp>
45 #endif
46
47 namespace anna {
48
49 /**
50    Template que facilita la creacion de datos dependientes del Thread.
51    \see anna::Thread
52
53    \param T Clase asociada a este repositorio, debe tener un constructor vacio.
54 */
55 template <typename T> class ThreadData {
56 public:
57   /**
58      Contructor.
59      \param name Nombre logico de esta template.
60   */
61   ThreadData(const char* name) : a_name(name) {;}
62
63   /**
64      Devuelve los datos asociados al thread desde el que se invoca  a este metodo.
65       Si no existen se crean mediante el contructor vacio.
66      \return Los datos asociados al thread desde el que se invoca  a este metodo.
67   */
68   T& get() throw() {
69 #ifndef _MT
70     return a_data;
71 #else
72     Guard guard(a_mutex, "anna::ThreadData");
73     const int index = (int) functions::getCurrentThread();
74     data_iterator ii = a_datas.find(index);
75     T* result = NULL;
76
77     if(ii == a_datas.end()) {
78       result = new T;
79       a_datas.insert(value_type(index, result));
80     } else
81       result = ii->second;
82
83     LOGDEBUG(
84       std::string msg("anna::ThreadData { Name: ");
85       msg += a_name;
86       msg += " | ";
87       msg += functions::asHexString(anna_ptrnumber_cast(result));
88       msg += " }";
89       Logger::debug(msg, ANNA_FILE_LOCATION);
90     );
91     return *result;
92 #endif
93   }
94
95 private:
96 #ifndef _MT
97   T a_data;
98   const char* a_name;
99 #else
100   typedef typename std::map <int, T*> container;
101   typedef typename container::iterator data_iterator;
102   typedef typename container::value_type value_type;
103   NRMutex a_mutex;
104   container a_datas;
105   const char* a_name;
106 #endif
107 };
108 }
109
110 #endif
111