Updated license
[anna.git] / example / dbos / workdir / storage / File.cpp
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 #include <anna/core/functions.hpp>
38 #include <anna/core/tracing/Logger.hpp>
39
40 #include <anna/io/functions.hpp>
41
42 #include <anna/dbms/Database.hpp>
43 #include <anna/dbms/Statement.hpp>
44
45 #include <anna/dbos/Repository.hpp>
46
47 #include "../filesystem/File.hpp"
48 #include "../filesystem/Directory.hpp"
49
50 #include "File.hpp"
51 #include "Directory.hpp"
52
53 using namespace std;
54 using namespace anna;
55 using namespace workdir;
56
57 /*static*/
58 storage::File::Loader* storage::File::st_loader = NULL;
59
60 /*static*/
61 ExclusiveHash <std::string> storage::File::st_hash;
62
63 /*static*/
64 int storage::File::st_maxSize = 0;
65
66 dbos_prepare_object (storage::File);
67
68 void storage::File::setup (dbos::Repository& repository, const int maxSize)
69    throw (RuntimeException)
70 {
71    st_loader = new File::Loader ();
72    st_maxSize = maxSize;
73
74    File::setStorageArea (
75       repository.createStorageArea (                                                  // (1)
76          File::getStorageAreaId (), File::getStorageAreaName (), File::getMaxSize (),
77          File::allocator, 2
78       )
79    );
80 }
81
82 storage::File* storage::File::instantiate (const filesystem::File* file)
83    throw (RuntimeException)
84 {
85    if (st_loader == NULL)
86       throw RuntimeException ("storage::File::setup no ha sido invocado", ANNA_FILE_LOCATION);
87
88    File* result = NULL;
89
90    try {
91       Guard guard (st_loader, "storage::File::Loader");
92       result = dbos::ObjectFacade <File>::instance (st_loader->setKey (file));
93    }
94    catch (dbms::DatabaseException& edb) {
95       throw RuntimeException (edb);
96    }
97
98    return result;
99 }
100
101 void storage::File::initialize (dbos::Loader& loader)
102    throw (RuntimeException, dbms::DatabaseException)
103 {
104    File::Loader& dbLoader = static_cast <File::Loader&> (loader);
105    
106    a_filesystemFile = dbLoader.getFile ();
107    a_parent = Directory::instantiate (filesystem::Directory::down_cast (a_filesystemFile->getParent ()));
108    a_inode = dbLoader.getINode ();
109       
110    LOGINFORMATION (
111       string msg ("storage::File::initialize | ");
112       msg += asString ();
113       Logger::information (msg, ANNA_FILE_LOCATION);
114    );
115 }
116
117 void storage::File::destroy ()
118    throw ()
119 {   
120    LOGINFORMATION (
121       string msg ("storage::File::destroy | ");
122       msg += asString ();
123       Logger::information (msg, ANNA_FILE_LOCATION);
124    );
125    Directory::release (a_parent);   
126 }
127
128 string storage::File::asString () const
129    throw ()
130 {
131    std::string result ("storage::File { Name: ");
132    result += a_filesystemFile->getPath ();
133    result += functions::asHexText (" | I-Node: ", a_inode);
134    return result += " }";
135 }
136
137 /* 
138  * Transfiere la información del medio físico al primer nivel de C++.
139  * Posteriormente será interpretada en storage::File::initialize
140  */
141 bool storage::File::Loader::load (dbms::Connection*, const dbos::StorageArea* ssaa) 
142    throw (RuntimeException)
143 {
144    a_inode = io::functions::getINode (a_filesystemFile->getPath ());
145    return true;
146 }
147
148 dbos::Index storage::File::Loader::getIndex () const 
149    throw ()
150 {
151    return st_hash.calcule (a_filesystemFile->getPath ());   
152 }
153
154 string storage::File::Loader::asString () const
155    throw ()
156 {
157    std::string result ("storage::Loader::File { Name: ");
158    result += a_filesystemFile->getPath ();
159    return result += " }";
160 }
161