aboutsummaryrefslogtreecommitdiff
path: root/market.h
diff options
context:
space:
mode:
authorsirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-08-30 03:46:39 +0000
committersirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-08-30 03:46:39 +0000
commite071a3f6c06f41068ad17134189a4ac3073ef76b (patch)
tree1e8dec58f70505a3dd554918ce9b07384d047415 /market.h
downloadbitcoin-e071a3f6c06f41068ad17134189a4ac3073ef76b.tar.xz
First commit
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@1 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'market.h')
-rw-r--r--market.h182
1 files changed, 182 insertions, 0 deletions
diff --git a/market.h b/market.h
new file mode 100644
index 0000000000..2714787307
--- /dev/null
+++ b/market.h
@@ -0,0 +1,182 @@
+// Copyright (c) 2009 Satoshi Nakamoto
+// Distributed under the MIT/X11 software license, see the accompanying
+// file license.txt or http://www.opensource.org/licenses/mit-license.php.
+
+class CUser;
+class CReview;
+class CProduct;
+
+static const unsigned int nFlowthroughRate = 2;
+
+
+
+
+bool AdvertInsert(const CProduct& product);
+void AdvertErase(const CProduct& product);
+bool AddAtomsAndPropagate(uint256 hashUserStart, const vector<unsigned short>& vAtoms, bool fOrigin);
+
+
+
+
+
+
+
+
+class CUser
+{
+public:
+ vector<unsigned short> vAtomsIn;
+ vector<unsigned short> vAtomsNew;
+ vector<unsigned short> vAtomsOut;
+ vector<uint256> vLinksOut;
+
+ CUser()
+ {
+ }
+
+ IMPLEMENT_SERIALIZE
+ (
+ if (!(nType & SER_GETHASH))
+ READWRITE(nVersion);
+ READWRITE(vAtomsIn);
+ READWRITE(vAtomsNew);
+ READWRITE(vAtomsOut);
+ READWRITE(vLinksOut);
+ )
+
+ void SetNull()
+ {
+ vAtomsIn.clear();
+ vAtomsNew.clear();
+ vAtomsOut.clear();
+ vLinksOut.clear();
+ }
+
+ uint256 GetHash() const { return SerializeHash(*this); }
+
+
+ int GetAtomCount() const
+ {
+ return (vAtomsIn.size() + vAtomsNew.size());
+ }
+
+ void AddAtom(unsigned short nAtom, bool fOrigin);
+};
+
+
+
+
+
+
+
+class CReview
+{
+public:
+ int nVersion;
+ uint256 hashTo;
+ map<string, string> mapValue;
+ vector<unsigned char> vchPubKeyFrom;
+ vector<unsigned char> vchSig;
+
+ // memory only
+ unsigned int nTime;
+ int nAtoms;
+
+
+ CReview()
+ {
+ nVersion = 1;
+ hashTo = 0;
+ nTime = 0;
+ nAtoms = 0;
+ }
+
+ IMPLEMENT_SERIALIZE
+ (
+ READWRITE(this->nVersion);
+ nVersion = this->nVersion;
+ if (!(nType & SER_DISK))
+ READWRITE(hashTo);
+ READWRITE(mapValue);
+ READWRITE(vchPubKeyFrom);
+ if (!(nType & SER_GETHASH))
+ READWRITE(vchSig);
+ )
+
+ uint256 GetHash() const { return SerializeHash(*this); }
+ uint256 GetSigHash() const { return SerializeHash(*this, SER_GETHASH|SER_SKIPSIG); }
+ uint256 GetUserHash() const { return Hash(vchPubKeyFrom.begin(), vchPubKeyFrom.end()); }
+
+
+ bool AcceptReview();
+};
+
+
+
+
+
+
+
+class CProduct
+{
+public:
+ int nVersion;
+ CAddress addr;
+ map<string, string> mapValue;
+ map<string, string> mapDetails;
+ vector<pair<string, string> > vOrderForm;
+ unsigned int nSequence;
+ vector<unsigned char> vchPubKeyFrom;
+ vector<unsigned char> vchSig;
+
+ // disk only
+ int nAtoms;
+
+ // memory only
+ set<unsigned int> setSources;
+
+ CProduct()
+ {
+ nVersion = 1;
+ nAtoms = 0;
+ nSequence = 0;
+ }
+
+ IMPLEMENT_SERIALIZE
+ (
+ READWRITE(this->nVersion);
+ nVersion = this->nVersion;
+ READWRITE(addr);
+ READWRITE(mapValue);
+ if (!(nType & SER_GETHASH))
+ {
+ READWRITE(mapDetails);
+ READWRITE(vOrderForm);
+ READWRITE(nSequence);
+ }
+ READWRITE(vchPubKeyFrom);
+ if (!(nType & SER_GETHASH))
+ READWRITE(vchSig);
+ if (nType & SER_DISK)
+ READWRITE(nAtoms);
+ )
+
+ uint256 GetHash() const { return SerializeHash(*this); }
+ uint256 GetSigHash() const { return SerializeHash(*this, SER_GETHASH|SER_SKIPSIG); }
+ uint256 GetUserHash() const { return Hash(vchPubKeyFrom.begin(), vchPubKeyFrom.end()); }
+
+
+ bool CheckSignature();
+ bool CheckProduct();
+};
+
+
+
+
+
+
+
+
+extern map<uint256, CProduct> mapProducts;
+extern CCriticalSection cs_mapProducts;
+extern map<uint256, CProduct> mapMyProducts;