You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
3.7 KiB
183 lines
3.7 KiB
15 years ago
|
// 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;
|