Add CWallet::ExtractAddress method
[novacoin.git] / src / wallet.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_WALLET_H
6 #define BITCOIN_WALLET_H
7
8 #include <string>
9 #include <vector>
10
11 #include <stdlib.h>
12
13 #include "main.h"
14 #include "key.h"
15 #include "keystore.h"
16 #include "script.h"
17 #include "ui_interface.h"
18 #include "util.h"
19 #include "walletdb.h"
20
21 extern unsigned int nStakeMaxAge;
22 extern bool fWalletUnlockMintOnly;
23 extern bool fConfChange;
24 class CAccountingEntry;
25 class CWalletTx;
26 class CReserveKey;
27 class COutput;
28 class CCoinControl;
29
30 // Set of selected transactions
31 typedef std::set<std::pair<const CWalletTx*,unsigned int> > CoinsSet;
32
33 /** (client) version numbers for particular wallet features */
34 enum WalletFeature
35 {
36     FEATURE_BASE = 10500, // the earliest version new wallets supports (only useful for getinfo's clientversion output)
37
38     FEATURE_WALLETCRYPT = 40000, // wallet encryption
39     FEATURE_COMPRPUBKEY = 60000, // compressed public keys
40     FEATURE_MALLKEY = 60017,
41     FEATURE_LATEST = 60017
42 };
43
44 /** A key pool entry */
45 class CKeyPool
46 {
47 public:
48     int64_t nTime;
49     CPubKey vchPubKey;
50
51     CKeyPool()
52     {
53         nTime = GetTime();
54     }
55
56     CKeyPool(const CPubKey& vchPubKeyIn)
57     {
58         nTime = GetTime();
59         vchPubKey = vchPubKeyIn;
60     }
61
62     IMPLEMENT_SERIALIZE
63     (
64         if (!(nType & SER_GETHASH))
65             READWRITE(nVersion);
66         READWRITE(nTime);
67         READWRITE(vchPubKey);
68     )
69 };
70
71 /** A CWallet is an extension of a keystore, which also maintains a set of transactions and balances,
72  * and provides the ability to create new transactions.
73  */
74 class CWallet : public CCryptoKeyStore
75 {
76 private:
77     bool SelectCoins(int64_t nTargetValue, unsigned int nSpendTime, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet, const CCoinControl *coinControl=NULL) const;
78
79     CWalletDB *pwalletdbEncryption, *pwalletdbDecryption;
80
81     // the current wallet version: clients below this version are not able to load the wallet
82     int nWalletVersion;
83
84     // the maximum wallet format version: memory-only variable that specifies to what version this wallet may be upgraded
85     int nWalletMaxVersion;
86
87     // stake mining statistics
88     uint64_t nKernelsTried;
89     uint64_t nCoinDaysTried;
90
91 public:
92     mutable CCriticalSection cs_wallet;
93
94     bool fFileBacked;
95     std::string strWalletFile;
96
97     std::set<int64_t> setKeyPool;
98     std::map<CKeyID, CKeyMetadata> mapKeyMetadata;
99     std::map<CMalleableKeyView, CKeyMetadata> mapMalleableKeyMetadata;
100
101     typedef std::map<unsigned int, CMasterKey> MasterKeyMap;
102     MasterKeyMap mapMasterKeys;
103     unsigned int nMasterKeyMaxID;
104
105     CWallet()
106     {
107         SetNull();
108     }
109     CWallet(std::string strWalletFileIn)
110     {
111         SetNull();
112         
113         strWalletFile = strWalletFileIn;
114         fFileBacked = true;
115     }
116     void SetNull()
117     {
118         nWalletVersion = FEATURE_BASE;
119         nWalletMaxVersion = FEATURE_BASE;
120         fFileBacked = false;
121         nMasterKeyMaxID = 0;
122         pwalletdbEncryption = NULL;
123         pwalletdbDecryption = NULL;
124         nOrderPosNext = 0;
125         nKernelsTried = 0;
126         nCoinDaysTried = 0;
127         nTimeFirstKey = 0;
128     }
129
130     std::map<uint256, CWalletTx> mapWallet;
131     std::vector<uint256> vMintingWalletUpdated;
132     int64_t nOrderPosNext;
133     std::map<uint256, int> mapRequestCount;
134
135     std::map<CTxDestination, std::string> mapAddressBook;
136
137     CPubKey vchDefaultKey;
138     int64_t nTimeFirstKey;
139
140     // check whether we are allowed to upgrade (or already support) to the named feature
141     bool CanSupportFeature(enum WalletFeature wf) { return nWalletMaxVersion >= wf; }
142
143     void AvailableCoinsMinConf(std::vector<COutput>& vCoins, int nConf, int64_t nMinValue, int64_t nMaxValue) const;
144     void AvailableCoins(std::vector<COutput>& vCoins, bool fOnlyConfirmed=true, const CCoinControl *coinControl=NULL) const;
145     bool SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, std::vector<COutput> vCoins, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet) const;
146
147     // Simple select (without randomization)
148     bool SelectCoinsSimple(int64_t nTargetValue, int64_t nMinValue, int64_t nMaxValue, unsigned int nSpendTime, int nMinConf, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet) const;
149
150     // keystore implementation
151     // Generate a new key
152     CPubKey GenerateNewKey();
153     CMalleableKeyView GenerateNewMalleableKey();
154     // Adds a key to the store, and saves it to disk.
155     bool AddKey(const CKey& key);
156     bool AddMalleableKey(const CMalleableKey& mKey);
157     // Adds a key to the store, without saving it to disk (used by LoadWallet)
158     bool LoadKey(const CKey& key) { return CCryptoKeyStore::AddKey(key); }
159     // Load metadata (used by LoadWallet)
160     bool LoadKeyMetadata(const CPubKey &pubkey, const CKeyMetadata &metadata);
161     bool LoadMalleableKeyMetadata(const CMalleableKeyView &keyView, const CKeyMetadata &metadata);
162
163     // Load malleable key without saving it to disk (used by LoadWallet)
164     bool LoadMalleableKey(const CMalleableKey &mKey) { return CCryptoKeyStore::AddMalleableKey(mKey); }
165
166     bool LoadMinVersion(int nVersion) { nWalletVersion = nVersion; nWalletMaxVersion = std::max(nWalletMaxVersion, nVersion); return true; }
167
168     // Adds an encrypted key to the store, and saves it to disk.
169     bool AddCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret);
170     // Adds an encrypted key to the store, without saving it to disk (used by LoadWallet)
171     bool LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) { SetMinVersion(FEATURE_WALLETCRYPT); return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); }
172     bool AddCScript(const CScript& redeemScript);
173     bool LoadCScript(const CScript& redeemScript);
174
175     // Adds a watch-only address to the store, and saves it to disk.
176     bool AddWatchOnly(const CScript &dest);
177     bool RemoveWatchOnly(const CScript &dest);
178     // Adds a watch-only address to the store, without saving it to disk (used by LoadWallet)
179     bool LoadWatchOnly(const CScript &dest);
180
181     bool Unlock(const SecureString& strWalletPassphrase);
182     bool ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase);
183     bool EncryptWallet(const SecureString& strWalletPassphrase);
184     bool DecryptWallet(const SecureString& strWalletPassphrase);
185
186     void GetKeyBirthTimes(std::map<CKeyID, int64_t> &mapKeyBirth) const;
187
188
189     /** Increment the next transaction order id
190         @return next transaction order id
191      */
192     int64_t IncOrderPosNext(CWalletDB *pwalletdb = NULL);
193
194     typedef std::pair<CWalletTx*, CAccountingEntry*> TxPair;
195     typedef std::multimap<int64_t, TxPair > TxItems;
196
197     /** Get the wallet's activity log
198         @return multimap of ordered transactions and accounting entries
199         @warning Returned pointers are *only* valid within the scope of passed acentries
200      */
201     TxItems OrderedTxItems(std::list<CAccountingEntry>& acentries, std::string strAccount = "");
202
203     void MarkDirty();
204     bool AddToWallet(const CWalletTx& wtxIn);
205     bool AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate = false, bool fFindBlock = false);
206     bool EraseFromWallet(uint256 hash);
207     void ClearOrphans();
208     void WalletUpdateSpent(const CTransaction& prevout, bool fBlock = false);
209     int ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate = false);
210     int ScanForWalletTransaction(const uint256& hashTx);
211     void ReacceptWalletTransactions();
212     void ResendWalletTransactions();
213     int64_t GetBalance() const;
214     int64_t GetWatchOnlyBalance() const;
215     int64_t GetUnconfirmedBalance() const;
216     int64_t GetUnconfirmedWatchOnlyBalance() const;
217     int64_t GetImmatureBalance() const;
218     int64_t GetImmatureWatchOnlyBalance() const;
219     int64_t GetStake() const;
220     int64_t GetNewMint() const;
221     int64_t GetWatchOnlyStake() const;
222     int64_t GetWatchOnlyNewMint() const;
223     bool CreateTransaction(const std::vector<std::pair<CScript, int64_t> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL);
224     bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL);
225     bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey);
226
227     void GetStakeWeightFromValue(const int64_t& nTime, const int64_t& nValue, uint64_t& nWeight);
228     bool CreateCoinStake(uint256 &hashTx, uint32_t nOut, uint32_t nTime, uint32_t nBits, CTransaction &txNew, CKey& key);
229     bool MergeCoins(const int64_t& nAmount, const int64_t& nMinValue, const int64_t& nMaxValue, std::list<uint256>& listMerged);
230
231     std::string SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false);
232
233     bool NewKeyPool(unsigned int nSize = 0);
234     bool TopUpKeyPool(unsigned int nSize = 0);
235     int64_t AddReserveKey(const CKeyPool& keypool);
236     void ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool);
237     void KeepKey(int64_t nIndex);
238     void ReturnKey(int64_t nIndex);
239     bool GetKeyFromPool(CPubKey &key, bool fAllowReuse=true);
240     int64_t GetOldestKeyPoolTime();
241     void GetAllReserveKeys(std::set<CKeyID>& setAddress) const;
242
243     std::set< std::set<CTxDestination> > GetAddressGroupings();
244     std::map<CTxDestination, int64_t> GetAddressBalances();
245
246     isminetype IsMine(const CTxIn& txin) const;
247     int64_t GetDebit(const CTxIn& txin, const isminefilter& filter) const;
248     isminetype IsMine(const CTxOut& txout) const
249     {
250         return ::IsMine(*this, txout.scriptPubKey);
251     }
252     int64_t GetCredit(const CTxOut& txout, const isminefilter& filter) const
253     {
254         if (!MoneyRange(txout.nValue))
255             throw std::runtime_error("CWallet::GetCredit() : value out of range");
256         return (IsMine(txout) & filter ? txout.nValue : 0);
257     }
258     bool IsChange(const CTxOut& txout) const;
259     int64_t GetChange(const CTxOut& txout) const
260     {
261         if (!MoneyRange(txout.nValue))
262             throw std::runtime_error("CWallet::GetChange() : value out of range");
263         return (IsChange(txout) ? txout.nValue : 0);
264     }
265     bool IsMine(const CTransaction& tx) const
266     {
267         BOOST_FOREACH(const CTxOut& txout, tx.vout)
268             if (IsMine(txout) && txout.nValue >= nMinimumInputValue)
269                 return true;
270         return false;
271     }
272     bool IsFromMe(const CTransaction& tx) const
273     {
274         return (GetDebit(tx, MINE_ALL) > 0);
275     }
276     int64_t GetDebit(const CTransaction& tx, const isminefilter& filter) const
277     {
278         int64_t nDebit = 0;
279         BOOST_FOREACH(const CTxIn& txin, tx.vin)
280         {
281             nDebit += GetDebit(txin, filter);
282             if (!MoneyRange(nDebit))
283                 throw std::runtime_error("CWallet::GetDebit() : value out of range");
284         }
285         return nDebit;
286     }
287     int64_t GetCredit(const CTransaction& tx, const isminefilter& filter) const
288     {
289         int64_t nCredit = 0;
290         BOOST_FOREACH(const CTxOut& txout, tx.vout)
291         {
292             nCredit += GetCredit(txout, filter);
293             if (!MoneyRange(nCredit))
294                 throw std::runtime_error("CWallet::GetCredit() : value out of range");
295         }
296         return nCredit;
297     }
298     int64_t GetChange(const CTransaction& tx) const
299     {
300         int64_t nChange = 0;
301         BOOST_FOREACH(const CTxOut& txout, tx.vout)
302         {
303             nChange += GetChange(txout);
304             if (!MoneyRange(nChange))
305                 throw std::runtime_error("CWallet::GetChange() : value out of range");
306         }
307         return nChange;
308     }
309     void SetBestChain(const CBlockLocator& loc);
310
311     DBErrors LoadWallet(bool& fFirstRunRet);
312
313     DBErrors ZapWalletTx();
314
315     bool SetAddressBookName(const CTxDestination& address, const std::string& strName);
316
317     bool DelAddressBookName(const CTxDestination& address);
318
319     void UpdatedTransaction(const uint256 &hashTx);
320
321     void PrintWallet(const CBlock& block);
322
323     void Inventory(const uint256 &hash)
324     {
325         {
326             LOCK(cs_wallet);
327             std::map<uint256, int>::iterator mi = mapRequestCount.find(hash);
328             if (mi != mapRequestCount.end())
329                 (*mi).second++;
330         }
331     }
332
333     unsigned int GetKeyPoolSize()
334     {
335         return (unsigned int)(setKeyPool.size());
336     }
337
338     bool GetTransaction(const uint256 &hashTx, CWalletTx& wtx);
339
340     bool ExtractAddress(const CScript& scriptPubKey, std::string& addressRet);
341
342     bool SetDefaultKey(const CPubKey &vchPubKey);
343
344     // signify that a particular wallet feature is now used. this may change nWalletVersion and nWalletMaxVersion if those are lower
345     bool SetMinVersion(enum WalletFeature, CWalletDB* pwalletdbIn = NULL, bool fExplicit = false);
346
347     // change which version we're allowed to upgrade to (note that this does not immediately imply upgrading to that format)
348     bool SetMaxVersion(int nVersion);
349
350     // get the current wallet format (the oldest client version guaranteed to understand this wallet)
351     int GetVersion() { return nWalletVersion; }
352
353     void FixSpentCoins(int& nMismatchSpent, int64_t& nBalanceInQuestion, bool fCheckOnly = false);
354     void DisableTransaction(const CTransaction &tx);
355
356     /** Address book entry changed.
357      * @note called with lock cs_wallet held.
358      */
359     boost::signals2::signal<void (CWallet *wallet, const CTxDestination &address, const std::string &label, bool isMine, ChangeType status)> NotifyAddressBookChanged;
360
361     /** Wallet transaction added, removed or updated.
362      * @note called with lock cs_wallet held.
363      */
364     boost::signals2::signal<void (CWallet *wallet, const uint256 &hashTx, ChangeType status)> NotifyTransactionChanged;
365
366     /** Watch-only address added */
367     boost::signals2::signal<void (bool fHaveWatchOnly)> NotifyWatchonlyChanged;
368 };
369
370 /** A key allocated from the key pool. */
371 class CReserveKey
372 {
373 protected:
374     CWallet* pwallet;
375     int64_t nIndex;
376     CPubKey vchPubKey;
377 public:
378     CReserveKey(CWallet* pwalletIn)
379     {
380         nIndex = -1;
381         pwallet = pwalletIn;
382     }
383
384     ~CReserveKey()
385     {
386         if (!fShutdown)
387             ReturnKey();
388     }
389
390     void ReturnKey();
391     CPubKey GetReservedKey();
392     void KeepKey();
393 };
394
395
396 typedef std::map<std::string, std::string> mapValue_t;
397
398
399 static void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue)
400 {
401     if (!mapValue.count("n"))
402     {
403         nOrderPos = -1; // TODO: calculate elsewhere
404         return;
405     }
406     nOrderPos = atoi64(mapValue["n"].c_str());
407 }
408
409
410 static void WriteOrderPos(const int64_t& nOrderPos, mapValue_t& mapValue)
411 {
412     if (nOrderPos == -1)
413         return;
414     mapValue["n"] = i64tostr(nOrderPos);
415 }
416
417
418 /** A transaction with a bunch of additional info that only the owner cares about.
419  * It includes any unrecorded transactions needed to link it back to the block chain.
420  */
421 class CWalletTx : public CMerkleTx
422 {
423 private:
424     const CWallet* pwallet;
425
426 public:
427     std::vector<CMerkleTx> vtxPrev;
428     mapValue_t mapValue;
429     std::vector<std::pair<std::string, std::string> > vOrderForm;
430     unsigned int fTimeReceivedIsTxTime;
431     unsigned int nTimeReceived;  // time received by this node
432     unsigned int nTimeSmart;
433     char fFromMe;
434     std::string strFromAccount;
435     std::vector<char> vfSpent; // which outputs are already spent
436     int64_t nOrderPos;  // position in ordered transaction list
437
438     // memory only
439     mutable bool fDebitCached;
440     mutable bool fWatchDebitCached;
441     mutable bool fCreditCached;
442     mutable bool fWatchCreditCached;
443     mutable bool fAvailableCreditCached;
444     mutable bool fImmatureCreditCached;
445     mutable bool fImmatureWatchCreditCached;
446     mutable bool fAvailableWatchCreditCached;
447     mutable bool fChangeCached;
448     mutable int64_t nDebitCached;
449     mutable int64_t nWatchDebitCached;
450     mutable int64_t nCreditCached;
451     mutable int64_t nWatchCreditCached;
452     mutable int64_t nAvailableCreditCached;
453     mutable int64_t nImmatureCreditCached;
454     mutable int64_t nImmatureWatchCreditCached;
455     mutable int64_t nAvailableWatchCreditCached;
456     mutable int64_t nChangeCached;
457
458     CWalletTx()
459     {
460         Init(NULL);
461     }
462
463     CWalletTx(const CWallet* pwalletIn)
464     {
465         Init(pwalletIn);
466     }
467
468     CWalletTx(const CWallet* pwalletIn, const CMerkleTx& txIn) : CMerkleTx(txIn)
469     {
470         Init(pwalletIn);
471     }
472
473     CWalletTx(const CWallet* pwalletIn, const CTransaction& txIn) : CMerkleTx(txIn)
474     {
475         Init(pwalletIn);
476     }
477
478     void Init(const CWallet* pwalletIn)
479     {
480         pwallet = pwalletIn;
481         vtxPrev.clear();
482         mapValue.clear();
483         vOrderForm.clear();
484         fTimeReceivedIsTxTime = false;
485         nTimeReceived = 0;
486         nTimeSmart = 0;
487         fFromMe = false;
488         strFromAccount.clear();
489         vfSpent.clear();
490         fDebitCached = false;
491         fWatchDebitCached = false;
492         fCreditCached = false;
493         fWatchCreditCached = false;
494         fAvailableCreditCached = false;
495         fAvailableWatchCreditCached = false;
496         fImmatureCreditCached = false;
497         fImmatureWatchCreditCached = false;
498         fChangeCached = false;
499         nDebitCached = 0;
500         nWatchDebitCached = 0;
501         nCreditCached = 0;
502         nWatchCreditCached = 0;
503         nAvailableCreditCached = 0;
504         nAvailableWatchCreditCached = 0;
505         nImmatureCreditCached = 0;
506         nImmatureWatchCreditCached = 0;
507         nChangeCached = 0;
508         nOrderPos = -1;
509     }
510
511     IMPLEMENT_SERIALIZE
512     (
513         CWalletTx* pthis = const_cast<CWalletTx*>(this);
514         if (fRead)
515             pthis->Init(NULL);
516         char fSpent = false;
517
518         if (!fRead)
519         {
520             pthis->mapValue["fromaccount"] = pthis->strFromAccount;
521
522             std::string str;
523             BOOST_FOREACH(char f, vfSpent)
524             {
525                 str += (f ? '1' : '0');
526                 if (f)
527                     fSpent = true;
528             }
529             pthis->mapValue["spent"] = str;
530
531             WriteOrderPos(pthis->nOrderPos, pthis->mapValue);
532
533             if (nTimeSmart)
534                 pthis->mapValue["timesmart"] = strprintf("%u", nTimeSmart);
535         }
536
537         nSerSize += SerReadWrite(s, *(CMerkleTx*)this, nType, nVersion,ser_action);
538         READWRITE(vtxPrev);
539         READWRITE(mapValue);
540         READWRITE(vOrderForm);
541         READWRITE(fTimeReceivedIsTxTime);
542         READWRITE(nTimeReceived);
543         READWRITE(fFromMe);
544         READWRITE(fSpent);
545
546         if (fRead)
547         {
548             pthis->strFromAccount = pthis->mapValue["fromaccount"];
549
550             if (mapValue.count("spent"))
551                 BOOST_FOREACH(char c, pthis->mapValue["spent"])
552                     pthis->vfSpent.push_back(c != '0');
553             else
554                 pthis->vfSpent.assign(vout.size(), fSpent);
555
556             ReadOrderPos(pthis->nOrderPos, pthis->mapValue);
557
558             pthis->nTimeSmart = mapValue.count("timesmart") ? (unsigned int)atoi64(pthis->mapValue["timesmart"]) : 0;
559         }
560
561         pthis->mapValue.erase("fromaccount");
562         pthis->mapValue.erase("version");
563         pthis->mapValue.erase("spent");
564         pthis->mapValue.erase("n");
565         pthis->mapValue.erase("timesmart");
566     )
567
568     // marks certain txout's as spent
569     // returns true if any update took place
570     bool UpdateSpent(const std::vector<char>& vfNewSpent)
571     {
572         bool fReturn = false;
573         for (unsigned int i = 0; i < vfNewSpent.size(); i++)
574         {
575             if (i == vfSpent.size())
576                 break;
577
578             if (vfNewSpent[i] && !vfSpent[i])
579             {
580                 vfSpent[i] = true;
581                 fReturn = true;
582                 fAvailableCreditCached = fAvailableWatchCreditCached = false;
583             }
584         }
585         return fReturn;
586     }
587
588     // make sure balances are recalculated
589     void MarkDirty()
590     {
591         fCreditCached = false;
592         fAvailableCreditCached = fAvailableWatchCreditCached = false;
593         fDebitCached = fWatchDebitCached = false;
594         fChangeCached = false;
595     }
596
597     void BindWallet(CWallet *pwalletIn)
598     {
599         pwallet = pwalletIn;
600         MarkDirty();
601     }
602
603     void MarkSpent(unsigned int nOut)
604     {
605         if (nOut >= vout.size())
606             throw std::runtime_error("CWalletTx::MarkSpent() : nOut out of range");
607         vfSpent.resize(vout.size());
608         if (!vfSpent[nOut])
609         {
610             vfSpent[nOut] = true;
611             fAvailableCreditCached = fAvailableWatchCreditCached = false;
612         }
613     }
614
615     void MarkUnspent(unsigned int nOut)
616     {
617         if (nOut >= vout.size())
618             throw std::runtime_error("CWalletTx::MarkUnspent() : nOut out of range");
619         vfSpent.resize(vout.size());
620         if (vfSpent[nOut])
621         {
622             vfSpent[nOut] = false;
623             fAvailableCreditCached = fAvailableWatchCreditCached = false;
624         }
625     }
626
627     bool IsSpent(unsigned int nOut) const
628     {
629         if (nOut >= vout.size())
630             throw std::runtime_error("CWalletTx::IsSpent() : nOut out of range");
631         if (nOut >= vfSpent.size())
632             return false;
633         return (!!vfSpent[nOut]);
634     }
635
636     int64_t GetDebit(const isminefilter& filter) const
637     {
638         if (vin.empty())
639             return 0;
640
641         int64_t nDebit = 0;
642         if (filter & MINE_SPENDABLE)
643         {
644             if (fDebitCached)
645                 nDebit += nDebitCached;
646             else
647             {
648                 nDebitCached = pwallet->GetDebit(*this, MINE_SPENDABLE);
649                 fDebitCached = true;
650                 nDebit += nDebitCached;
651             }
652         }
653         if (filter & MINE_WATCH_ONLY)
654         {
655             if (fWatchDebitCached)
656                 nDebit += nWatchDebitCached;
657             else
658             {
659                 nWatchDebitCached = pwallet->GetDebit(*this, MINE_WATCH_ONLY);
660                 fWatchDebitCached = true;
661                 nDebit += nWatchDebitCached;
662             }
663         }
664
665         return nDebit;
666     }
667
668     int64_t GetCredit(const isminefilter& filter) const
669     {
670         // Must wait until coinbase is safely deep enough in the chain before valuing it
671         if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0)
672             return 0;
673
674         int64_t credit = 0;
675         if (filter & MINE_SPENDABLE)
676         {
677             // GetBalance can assume transactions in mapWallet won't change
678             if (fCreditCached)
679                 credit += nCreditCached;
680             else
681             {
682                 nCreditCached = pwallet->GetCredit(*this, MINE_SPENDABLE);
683                 fCreditCached = true;
684                 credit += nCreditCached;
685             }
686         }
687         if (filter & MINE_WATCH_ONLY)
688         {
689             if (fWatchCreditCached)
690                 credit += nWatchCreditCached;
691             else
692             {
693                 nWatchCreditCached = pwallet->GetCredit(*this, MINE_WATCH_ONLY);
694                 fWatchCreditCached = true;
695                 credit += nWatchCreditCached;
696             }
697         }
698         return credit;
699     }
700
701     int64_t GetImmatureCredit(bool fUseCache=true) const
702     {
703         if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain())
704         {
705             if (fUseCache && fImmatureCreditCached)
706                 return nImmatureCreditCached;
707             nImmatureCreditCached = pwallet->GetCredit(*this, MINE_SPENDABLE);
708             fImmatureCreditCached = true;
709             return nImmatureCreditCached;
710         }
711
712         return 0;
713     }
714
715     int64_t GetImmatureWatchOnlyCredit(bool fUseCache=true) const
716     {
717         if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain())
718         {
719             if (fUseCache && fImmatureWatchCreditCached)
720                 return nImmatureWatchCreditCached;
721             nImmatureWatchCreditCached = pwallet->GetCredit(*this, MINE_WATCH_ONLY);
722             fImmatureWatchCreditCached = true;
723             return nImmatureWatchCreditCached;
724         }
725
726         return 0;
727     }
728
729
730     int64_t GetAvailableCredit(bool fUseCache=true) const
731     {
732         // Must wait until coinbase is safely deep enough in the chain before valuing it
733         if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0)
734             return 0;
735
736         if (fUseCache) {
737             if (fAvailableCreditCached)
738                 return nAvailableCreditCached;
739         }
740
741         int64_t nCredit = 0;
742         for (unsigned int i = 0; i < vout.size(); i++)
743         {
744             if (!IsSpent(i))
745             {
746                 const CTxOut &txout = vout[i];
747                 nCredit += pwallet->GetCredit(txout, MINE_SPENDABLE);
748                 if (!MoneyRange(nCredit))
749                     throw std::runtime_error("CWalletTx::GetAvailableCredit() : value out of range");
750             }
751         }
752
753         nAvailableCreditCached = nCredit;
754         fAvailableCreditCached = true;
755
756         return nCredit;
757     }
758
759     int64_t GetAvailableWatchCredit(bool fUseCache=true) const
760     {
761         // Must wait until coinbase is safely deep enough in the chain before valuing it
762         if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0)
763             return 0;
764
765         if (fUseCache) {
766             if (fAvailableWatchCreditCached)
767                 return nAvailableWatchCreditCached;
768         }
769
770         int64_t nCredit = 0;
771         for (unsigned int i = 0; i < vout.size(); i++)
772         {
773             if (!IsSpent(i))
774             {
775                 const CTxOut &txout = vout[i];
776                 nCredit += pwallet->GetCredit(txout, MINE_WATCH_ONLY);
777                 if (!MoneyRange(nCredit))
778                     throw std::runtime_error("CWalletTx::GetAvailableCredit() : value out of range");
779             }
780         }
781
782         nAvailableWatchCreditCached = nCredit;
783         fAvailableWatchCreditCached = true;
784
785         return nCredit;
786     }
787
788     int64_t GetChange() const
789     {
790         if (fChangeCached)
791             return nChangeCached;
792         nChangeCached = pwallet->GetChange(*this);
793         fChangeCached = true;
794         return nChangeCached;
795     }
796
797     void GetAmounts(int64_t& nGeneratedImmature, int64_t& nGeneratedMature, std::list<std::pair<CTxDestination, int64_t> >& listReceived,
798                     std::list<std::pair<CTxDestination, int64_t> >& listSent, int64_t& nFee, std::string& strSentAccount, const isminefilter& filter) const;
799
800     void GetAccountAmounts(const std::string& strAccount, int64_t& nGenerated, int64_t& nReceived,
801                            int64_t& nSent, int64_t& nFee, const isminefilter& filter) const;
802
803     bool IsFromMe(const isminefilter& filter) const
804     {
805         return (GetDebit(filter) > 0);
806     }
807
808     bool IsTrusted() const
809     {
810         // Quick answer in most cases
811         if (!IsFinal())
812             return false;
813         if (GetDepthInMainChain() >= 1)
814             return true;
815         if (fConfChange || !IsFromMe(MINE_ALL)) // using wtx's cached debit
816             return false;
817
818         // If no confirmations but it's from us, we can still
819         // consider it confirmed if all dependencies are confirmed
820         std::map<uint256, const CMerkleTx*> mapPrev;
821         std::vector<const CMerkleTx*> vWorkQueue;
822         vWorkQueue.reserve(vtxPrev.size()+1);
823         vWorkQueue.push_back(this);
824         for (unsigned int i = 0; i < vWorkQueue.size(); i++)
825         {
826             const CMerkleTx* ptx = vWorkQueue[i];
827
828             if (!ptx->IsFinal())
829                 return false;
830             if (ptx->GetDepthInMainChain() >= 1)
831                 continue;
832             if (!pwallet->IsFromMe(*ptx))
833                 return false;
834
835             if (mapPrev.empty())
836             {
837                 BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
838                     mapPrev[tx.GetHash()] = &tx;
839             }
840
841             BOOST_FOREACH(const CTxIn& txin, ptx->vin)
842             {
843                 if (!mapPrev.count(txin.prevout.hash))
844                     return false;
845                 vWorkQueue.push_back(mapPrev[txin.prevout.hash]);
846             }
847         }
848
849         return true;
850     }
851
852     bool WriteToDisk();
853
854     int64_t GetTxTime() const;
855     int GetRequestCount() const;
856
857     void AddSupportingTransactions(CTxDB& txdb);
858
859     bool AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs=true);
860     bool AcceptWalletTransaction();
861
862     void RelayWalletTransaction(CTxDB& txdb);
863     void RelayWalletTransaction();
864 };
865
866
867
868
869 class COutput
870 {
871 public:
872     const CWalletTx *tx;
873     int i;
874     int nDepth;
875     bool fSpendable;
876
877     COutput(const CWalletTx *txIn, int iIn, int nDepthIn, bool fSpendableIn)
878     {
879         tx = txIn; i = iIn; nDepth = nDepthIn; fSpendable = fSpendableIn;
880     }
881
882     std::string ToString() const
883     {
884         return strprintf("COutput(%s, %d, %d, %d) [%s]", tx->GetHash().ToString().substr(0,10).c_str(), i, fSpendable, nDepth, FormatMoney(tx->vout[i].nValue).c_str());
885     }
886
887     void print() const
888     {
889         printf("%s\n", ToString().c_str());
890     }
891 };
892
893
894
895
896 /** Private key that includes an expiration date in case it never gets used. */
897 class CWalletKey
898 {
899 public:
900     CPrivKey vchPrivKey;
901     int64_t nTimeCreated;
902     int64_t nTimeExpires;
903     std::string strComment;
904     //// todo: add something to note what created it (user, getnewaddress, change)
905     ////   maybe should have a map<string, string> property map
906
907     CWalletKey(int64_t nExpires=0)
908     {
909         nTimeCreated = (nExpires ? GetTime() : 0);
910         nTimeExpires = nExpires;
911     }
912
913     IMPLEMENT_SERIALIZE
914     (
915         if (!(nType & SER_GETHASH))
916             READWRITE(nVersion);
917         READWRITE(vchPrivKey);
918         READWRITE(nTimeCreated);
919         READWRITE(nTimeExpires);
920         READWRITE(strComment);
921     )
922 };
923
924
925
926
927
928
929 /** Account information.
930  * Stored in wallet with key "acc"+string account name.
931  */
932 class CAccount
933 {
934 public:
935     CPubKey vchPubKey;
936
937     CAccount()
938     {
939         SetNull();
940     }
941
942     void SetNull()
943     {
944         vchPubKey = CPubKey();
945     }
946
947     IMPLEMENT_SERIALIZE
948     (
949         if (!(nType & SER_GETHASH))
950             READWRITE(nVersion);
951         READWRITE(vchPubKey);
952     )
953 };
954
955
956
957 /** Internal transfers.
958  * Database key is acentry<account><counter>.
959  */
960 class CAccountingEntry
961 {
962 public:
963     std::string strAccount;
964     int64_t nCreditDebit;
965     int64_t nTime;
966     std::string strOtherAccount;
967     std::string strComment;
968     mapValue_t mapValue;
969     int64_t nOrderPos;  // position in ordered transaction list
970     uint64_t nEntryNo;
971
972     CAccountingEntry()
973     {
974         SetNull();
975     }
976
977     void SetNull()
978     {
979         nCreditDebit = 0;
980         nTime = 0;
981         strAccount.clear();
982         strOtherAccount.clear();
983         strComment.clear();
984         nOrderPos = -1;
985     }
986
987     IMPLEMENT_SERIALIZE
988     (
989         CAccountingEntry& me = *const_cast<CAccountingEntry*>(this);
990         if (!(nType & SER_GETHASH))
991             READWRITE(nVersion);
992         // Note: strAccount is serialized as part of the key, not here.
993         READWRITE(nCreditDebit);
994         READWRITE(nTime);
995         READWRITE(strOtherAccount);
996
997         if (!fRead)
998         {
999             WriteOrderPos(nOrderPos, me.mapValue);
1000
1001             if (!(mapValue.empty() && _ssExtra.empty()))
1002             {
1003                 CDataStream ss(nType, nVersion);
1004                 ss.insert(ss.begin(), '\0');
1005                 ss << mapValue;
1006                 ss.insert(ss.end(), _ssExtra.begin(), _ssExtra.end());
1007                 me.strComment.append(ss.str());
1008             }
1009         }
1010
1011         READWRITE(strComment);
1012
1013         size_t nSepPos = strComment.find("\0", 0, 1);
1014         if (fRead)
1015         {
1016             me.mapValue.clear();
1017             if (std::string::npos != nSepPos)
1018             {
1019                 CDataStream ss(std::vector<char>(strComment.begin() + nSepPos + 1, strComment.end()), nType, nVersion);
1020                 ss >> me.mapValue;
1021                 me._ssExtra = std::vector<char>(ss.begin(), ss.end());
1022             }
1023             ReadOrderPos(me.nOrderPos, me.mapValue);
1024         }
1025         if (std::string::npos != nSepPos)
1026             me.strComment.erase(nSepPos);
1027
1028         me.mapValue.erase("n");
1029     )
1030
1031 private:
1032     std::vector<char> _ssExtra;
1033 };
1034
1035 bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);
1036
1037 #endif