danicoin/src/WalletLegacy/WalletLegacySerialization.cpp

84 lines
2.9 KiB
C++
Raw Normal View History

2015-05-27 12:08:46 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
2015-07-30 15:22:07 +00:00
#include "WalletLegacySerialization.h"
#include "WalletLegacy/WalletUnconfirmedTransactions.h"
#include "IWalletLegacy.h"
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CryptoNoteSerialization.h"
#include "Serialization/ISerializer.h"
#include "Serialization/SerializationOverloads.h"
namespace CryptoNote {
2015-07-15 12:23:00 +00:00
void serialize(UnconfirmedTransferDetails& utd, CryptoNote::ISerializer& serializer) {
serializer(utd.tx, "transaction");
serializer(utd.amount, "amount");
serializer(utd.outsAmount, "outs_amount");
uint64_t time = static_cast<uint64_t>(utd.sentTime);
serializer(time, "sent_time");
utd.sentTime = static_cast<time_t>(time);
uint64_t txId = static_cast<uint64_t>(utd.transactionId);
serializer(txId, "transaction_id");
utd.transactionId = static_cast<size_t>(txId);
}
2015-07-30 15:22:07 +00:00
void serialize(WalletLegacyTransaction& txi, CryptoNote::ISerializer& serializer) {
uint64_t trId = static_cast<uint64_t>(txi.firstTransferId);
serializer(trId, "first_transfer_id");
txi.firstTransferId = static_cast<size_t>(trId);
uint64_t trCount = static_cast<uint64_t>(txi.transferCount);
serializer(trCount, "transfer_count");
txi.transferCount = static_cast<size_t>(trCount);
serializer(txi.totalAmount, "total_amount");
serializer(txi.fee, "fee");
serializer(txi.hash, "hash");
serializer(txi.isCoinbase, "is_coinbase");
2015-07-30 15:22:07 +00:00
if (serializer.type() == ISerializer::INPUT) {
uint64_t height = 0;
serializer(height, "block_height");
if (height == std::numeric_limits<uint64_t>::max()) {
txi.blockHeight = WALLET_LEGACY_UNCONFIRMED_TRANSACTION_HEIGHT;
} else {
txi.blockHeight = static_cast<uint32_t>(height);
}
} else {
serializer(txi.blockHeight, "block_height");
}
serializer(txi.timestamp, "timestamp");
serializer(txi.unlockTime, "unlock_time");
serializer(txi.extra, "extra");
2015-07-30 15:22:07 +00:00
//this field has been added later in the structure.
//in order to not break backward binary compatibility
// we just set it to zero
txi.sentTime = 0;
}
2015-07-30 15:22:07 +00:00
void serialize(WalletLegacyTransfer& tr, CryptoNote::ISerializer& serializer) {
serializer(tr.address, "address");
serializer(tr.amount, "amount");
}
} //namespace CryptoNote