Gavin Andresen's JSON-RPC HTTP authentication,
[novacoin.git] / db.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4
5 class CTransaction;
6 class CTxIndex;
7 class CDiskBlockIndex;
8 class CDiskTxPos;
9 class COutPoint;
10 class CUser;
11 class CReview;
12 class CAddress;
13 class CWalletTx;
14
15 extern map<string, string> mapAddressBook;
16 extern CCriticalSection cs_mapAddressBook;
17 extern vector<unsigned char> vchDefaultKey;
18 extern bool fClient;
19 extern int nBestHeight;
20
21
22 extern unsigned int nWalletDBUpdated;
23 extern DbEnv dbenv;
24
25
26 extern void DBFlush(bool fShutdown);
27
28
29
30
31 class CDB
32 {
33 protected:
34     Db* pdb;
35     string strFile;
36     vector<DbTxn*> vTxn;
37     bool fReadOnly;
38
39     explicit CDB(const char* pszFile, const char* pszMode="r+");
40     ~CDB() { Close(); }
41 public:
42     void Close();
43 private:
44     CDB(const CDB&);
45     void operator=(const CDB&);
46
47 protected:
48     template<typename K, typename T>
49     bool Read(const K& key, T& value)
50     {
51         if (!pdb)
52             return false;
53
54         // Key
55         CDataStream ssKey(SER_DISK);
56         ssKey.reserve(1000);
57         ssKey << key;
58         Dbt datKey(&ssKey[0], ssKey.size());
59
60         // Read
61         Dbt datValue;
62         datValue.set_flags(DB_DBT_MALLOC);
63         int ret = pdb->get(GetTxn(), &datKey, &datValue, 0);
64         memset(datKey.get_data(), 0, datKey.get_size());
65         if (datValue.get_data() == NULL)
66             return false;
67
68         // Unserialize value
69         CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK);
70         ssValue >> value;
71
72         // Clear and free memory
73         memset(datValue.get_data(), 0, datValue.get_size());
74         free(datValue.get_data());
75         return (ret == 0);
76     }
77
78     template<typename K, typename T>
79     bool Write(const K& key, const T& value, bool fOverwrite=true)
80     {
81         if (!pdb)
82             return false;
83         if (fReadOnly)
84             assert(("Write called on database in read-only mode", false));
85
86         // Key
87         CDataStream ssKey(SER_DISK);
88         ssKey.reserve(1000);
89         ssKey << key;
90         Dbt datKey(&ssKey[0], ssKey.size());
91
92         // Value
93         CDataStream ssValue(SER_DISK);
94         ssValue.reserve(10000);
95         ssValue << value;
96         Dbt datValue(&ssValue[0], ssValue.size());
97
98         // Write
99         int ret = pdb->put(GetTxn(), &datKey, &datValue, (fOverwrite ? 0 : DB_NOOVERWRITE));
100
101         // Clear memory in case it was a private key
102         memset(datKey.get_data(), 0, datKey.get_size());
103         memset(datValue.get_data(), 0, datValue.get_size());
104         return (ret == 0);
105     }
106
107     template<typename K>
108     bool Erase(const K& key)
109     {
110         if (!pdb)
111             return false;
112         if (fReadOnly)
113             assert(("Erase called on database in read-only mode", false));
114
115         // Key
116         CDataStream ssKey(SER_DISK);
117         ssKey.reserve(1000);
118         ssKey << key;
119         Dbt datKey(&ssKey[0], ssKey.size());
120
121         // Erase
122         int ret = pdb->del(GetTxn(), &datKey, 0);
123
124         // Clear memory
125         memset(datKey.get_data(), 0, datKey.get_size());
126         return (ret == 0 || ret == DB_NOTFOUND);
127     }
128
129     template<typename K>
130     bool Exists(const K& key)
131     {
132         if (!pdb)
133             return false;
134
135         // Key
136         CDataStream ssKey(SER_DISK);
137         ssKey.reserve(1000);
138         ssKey << key;
139         Dbt datKey(&ssKey[0], ssKey.size());
140
141         // Exists
142         int ret = pdb->exists(GetTxn(), &datKey, 0);
143
144         // Clear memory
145         memset(datKey.get_data(), 0, datKey.get_size());
146         return (ret == 0);
147     }
148
149     Dbc* GetCursor()
150     {
151         if (!pdb)
152             return NULL;
153         Dbc* pcursor = NULL;
154         int ret = pdb->cursor(NULL, &pcursor, 0);
155         if (ret != 0)
156             return NULL;
157         return pcursor;
158     }
159
160     int ReadAtCursor(Dbc* pcursor, CDataStream& ssKey, CDataStream& ssValue, unsigned int fFlags=DB_NEXT)
161     {
162         // Read at cursor
163         Dbt datKey;
164         if (fFlags == DB_SET || fFlags == DB_SET_RANGE || fFlags == DB_GET_BOTH || fFlags == DB_GET_BOTH_RANGE)
165         {
166             datKey.set_data(&ssKey[0]);
167             datKey.set_size(ssKey.size());
168         }
169         Dbt datValue;
170         if (fFlags == DB_GET_BOTH || fFlags == DB_GET_BOTH_RANGE)
171         {
172             datValue.set_data(&ssValue[0]);
173             datValue.set_size(ssValue.size());
174         }
175         datKey.set_flags(DB_DBT_MALLOC);
176         datValue.set_flags(DB_DBT_MALLOC);
177         int ret = pcursor->get(&datKey, &datValue, fFlags);
178         if (ret != 0)
179             return ret;
180         else if (datKey.get_data() == NULL || datValue.get_data() == NULL)
181             return 99999;
182
183         // Convert to streams
184         ssKey.SetType(SER_DISK);
185         ssKey.clear();
186         ssKey.write((char*)datKey.get_data(), datKey.get_size());
187         ssValue.SetType(SER_DISK);
188         ssValue.clear();
189         ssValue.write((char*)datValue.get_data(), datValue.get_size());
190
191         // Clear and free memory
192         memset(datKey.get_data(), 0, datKey.get_size());
193         memset(datValue.get_data(), 0, datValue.get_size());
194         free(datKey.get_data());
195         free(datValue.get_data());
196         return 0;
197     }
198
199     DbTxn* GetTxn()
200     {
201         if (!vTxn.empty())
202             return vTxn.back();
203         else
204             return NULL;
205     }
206
207 public:
208     bool TxnBegin()
209     {
210         if (!pdb)
211             return false;
212         DbTxn* ptxn = NULL;
213         int ret = dbenv.txn_begin(GetTxn(), &ptxn, DB_TXN_NOSYNC);
214         if (!ptxn || ret != 0)
215             return false;
216         vTxn.push_back(ptxn);
217         return true;
218     }
219
220     bool TxnCommit()
221     {
222         if (!pdb)
223             return false;
224         if (vTxn.empty())
225             return false;
226         int ret = vTxn.back()->commit(0);
227         vTxn.pop_back();
228         return (ret == 0);
229     }
230
231     bool TxnAbort()
232     {
233         if (!pdb)
234             return false;
235         if (vTxn.empty())
236             return false;
237         int ret = vTxn.back()->abort();
238         vTxn.pop_back();
239         return (ret == 0);
240     }
241
242     bool ReadVersion(int& nVersion)
243     {
244         nVersion = 0;
245         return Read(string("version"), nVersion);
246     }
247
248     bool WriteVersion(int nVersion)
249     {
250         return Write(string("version"), nVersion);
251     }
252 };
253
254
255
256
257
258
259
260
261 class CTxDB : public CDB
262 {
263 public:
264     CTxDB(const char* pszMode="r+") : CDB(!fClient ? "blkindex.dat" : NULL, pszMode) { }
265 private:
266     CTxDB(const CTxDB&);
267     void operator=(const CTxDB&);
268 public:
269     bool ReadTxIndex(uint256 hash, CTxIndex& txindex);
270     bool UpdateTxIndex(uint256 hash, const CTxIndex& txindex);
271     bool AddTxIndex(const CTransaction& tx, const CDiskTxPos& pos, int nHeight);
272     bool EraseTxIndex(const CTransaction& tx);
273     bool ContainsTx(uint256 hash);
274     bool ReadOwnerTxes(uint160 hash160, int nHeight, vector<CTransaction>& vtx);
275     bool ReadDiskTx(uint256 hash, CTransaction& tx, CTxIndex& txindex);
276     bool ReadDiskTx(uint256 hash, CTransaction& tx);
277     bool ReadDiskTx(COutPoint outpoint, CTransaction& tx, CTxIndex& txindex);
278     bool ReadDiskTx(COutPoint outpoint, CTransaction& tx);
279     bool WriteBlockIndex(const CDiskBlockIndex& blockindex);
280     bool EraseBlockIndex(uint256 hash);
281     bool ReadHashBestChain(uint256& hashBestChain);
282     bool WriteHashBestChain(uint256 hashBestChain);
283     bool LoadBlockIndex();
284 };
285
286
287
288
289
290 class CAddrDB : public CDB
291 {
292 public:
293     CAddrDB(const char* pszMode="r+") : CDB("addr.dat", pszMode) { }
294 private:
295     CAddrDB(const CAddrDB&);
296     void operator=(const CAddrDB&);
297 public:
298     bool WriteAddress(const CAddress& addr);
299     bool LoadAddresses();
300 };
301
302 bool LoadAddresses();
303
304
305
306
307
308
309 class CWalletDB : public CDB
310 {
311 public:
312     CWalletDB(const char* pszMode="r+") : CDB("wallet.dat", pszMode) { }
313 private:
314     CWalletDB(const CWalletDB&);
315     void operator=(const CWalletDB&);
316 public:
317     bool ReadName(const string& strAddress, string& strName)
318     {
319         strName = "";
320         return Read(make_pair(string("name"), strAddress), strName);
321     }
322
323     bool WriteName(const string& strAddress, const string& strName)
324     {
325         CRITICAL_BLOCK(cs_mapAddressBook)
326             mapAddressBook[strAddress] = strName;
327         nWalletDBUpdated++;
328         return Write(make_pair(string("name"), strAddress), strName);
329     }
330
331     bool EraseName(const string& strAddress)
332     {
333         // This should only be used for sending addresses, never for receiving addresses,
334         // receiving addresses must always have an address book entry if they're not change return.
335         CRITICAL_BLOCK(cs_mapAddressBook)
336             mapAddressBook.erase(strAddress);
337         nWalletDBUpdated++;
338         return Erase(make_pair(string("name"), strAddress));
339     }
340
341     bool ReadTx(uint256 hash, CWalletTx& wtx)
342     {
343         return Read(make_pair(string("tx"), hash), wtx);
344     }
345
346     bool WriteTx(uint256 hash, const CWalletTx& wtx)
347     {
348         nWalletDBUpdated++;
349         return Write(make_pair(string("tx"), hash), wtx);
350     }
351
352     bool EraseTx(uint256 hash)
353     {
354         nWalletDBUpdated++;
355         return Erase(make_pair(string("tx"), hash));
356     }
357
358     bool ReadKey(const vector<unsigned char>& vchPubKey, CPrivKey& vchPrivKey)
359     {
360         vchPrivKey.clear();
361         return Read(make_pair(string("key"), vchPubKey), vchPrivKey);
362     }
363
364     bool WriteKey(const vector<unsigned char>& vchPubKey, const CPrivKey& vchPrivKey)
365     {
366         nWalletDBUpdated++;
367         return Write(make_pair(string("key"), vchPubKey), vchPrivKey, false);
368     }
369
370     bool ReadDefaultKey(vector<unsigned char>& vchPubKey)
371     {
372         vchPubKey.clear();
373         return Read(string("defaultkey"), vchPubKey);
374     }
375
376     bool WriteDefaultKey(const vector<unsigned char>& vchPubKey)
377     {
378         vchDefaultKey = vchPubKey;
379         nWalletDBUpdated++;
380         return Write(string("defaultkey"), vchPubKey);
381     }
382
383     template<typename T>
384     bool ReadSetting(const string& strKey, T& value)
385     {
386         return Read(make_pair(string("setting"), strKey), value);
387     }
388
389     template<typename T>
390     bool WriteSetting(const string& strKey, const T& value)
391     {
392         nWalletDBUpdated++;
393         return Write(make_pair(string("setting"), strKey), value);
394     }
395
396     bool LoadWallet();
397 };
398
399 bool LoadWallet(bool& fFirstRunRet);
400
401 inline bool SetAddressBookName(const string& strAddress, const string& strName)
402 {
403     return CWalletDB().WriteName(strAddress, strName);
404 }