First commit
[anna.git] / source / dbos / Repository.cpp
1 // ANNA - Anna is Not 'N' 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 #include <stdlib.h>
38
39 #include <anna/core/tracing/Logger.hpp>
40
41 #include <anna/xml/Node.hpp>
42 #include <anna/xml/Attribute.hpp>
43
44 #include <anna/dbos/Repository.hpp>
45 #include <anna/dbos/StorageArea.hpp>
46 #include <anna/dbos/internal/sccs.hpp>
47
48 using namespace std;
49 using namespace anna;
50
51 dbos::Repository::Repository(const char* name) :
52   a_name(name) {
53   sccs::activate();
54 }
55
56 dbos::Repository::Repository(const std::string& name) :
57   a_name(name) {
58   sccs::activate();
59 }
60
61 dbos::StorageArea* dbos::Repository::createStorageArea(const dbos::StorageId index, const char* name, const dbos::Size maxSize, dbos::ObjectAllocator objectAllocator, const int errorCode, const StorageArea::AccessMode::_v accessMode)
62 throw(RuntimeException) {
63   Guard guard(this, "dbos::Repository from createStorageArea");
64   storage_iterator ii = a_storageAreas.find(index) ;
65
66   if(ii != a_storageAreas.end()) {
67     string msg(ii->second->asString());
68     msg += " | Already in use";
69     throw RuntimeException(msg, ANNA_FILE_LOCATION);
70   }
71
72   StorageArea* result = new StorageArea(name, maxSize, objectAllocator, accessMode, errorCode);
73   a_storageAreas.insert(container::value_type(index, result));
74   LOGDEBUG(
75     string msg("dbos::Repository::createStorageArea | Name: ");
76     msg += a_name;
77     msg += " | ";
78     msg += result->asString();
79     Logger::debug(msg, ANNA_FILE_LOCATION);
80   );
81   return result;
82 }
83
84 dbos::StorageArea* dbos::Repository::findStorageArea(const dbos::StorageId index)
85 throw() {
86   Guard guard(this, "dbos::Repository from findStorageArea");
87   storage_iterator ii = a_storageAreas.find(index);
88   return (ii != a_storageAreas.end()) ? storageArea(ii) : NULL;
89 }
90
91 void dbos::Repository::clear()
92 throw(RuntimeException) {
93   Guard guard(this, "dbos::Repository from clear");
94   LOGWARNING(
95     string msg("dbos::Repository::clear | Name: ");
96     msg += a_name;
97     Logger::warning(msg, ANNA_FILE_LOCATION);
98   );
99
100   for(storage_iterator ii = storage_begin(), maxii = storage_end(); ii != maxii; ii ++)
101     storageArea(ii)->clear();
102 }
103
104 xml::Node* dbos::Repository::asXML(xml::Node* parent) const
105 throw() {
106   xml::Node* result = parent->createChild("dbos.Repository");
107   dbos::Size maxSize(0);
108   dbos::Size size(0);
109   const StorageArea* ssaa;
110   result->createAttribute("Name", a_name);
111
112   for(const_storage_iterator ii = storage_begin(), maxii = storage_end(); ii != maxii; ii ++) {
113     ssaa = storageArea(ii);
114     maxSize += ssaa->getMaxSizeOf();
115     size += ssaa->getSizeOf();
116     ssaa->asXML(result);
117   }
118
119   result->createAttribute("SizeOf", StorageArea::asMemorySize(size));
120   result->createAttribute("MaxSizeOf", StorageArea::asMemorySize(maxSize));
121   return result;
122 }
123