Skip to content
This repository has been archived by the owner on Jan 18, 2019. It is now read-only.

Commit

Permalink
AccountDeleteTransactor implemented.
Browse files Browse the repository at this point in the history
  • Loading branch information
marco89nish committed May 9, 2014
1 parent b17a817 commit 399fd83
Show file tree
Hide file tree
Showing 6 changed files with 219 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Builds/VisualStudio2013/RippleD.vcxproj
Expand Up @@ -1308,6 +1308,9 @@
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple_app\transactors\AccountDeleteTransactor.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple_app\transactors\AccountSetTransactor.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
Expand Down
3 changes: 3 additions & 0 deletions Builds/VisualStudio2013/RippleD.vcxproj.filters
Expand Up @@ -1497,6 +1497,9 @@
<ClCompile Include="..\..\src\ripple_app\transactors\InflationTransactor.cpp">
<Filter>[2] Old Ripple\ripple_app\transactors</Filter>
</ClCompile>
<ClCompile Include="..\..\src\ripple_app\transactors\AccountDeleteTransactor.cpp">
<Filter>[2] Old Ripple\ripple_app\transactors</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\ripple_basics\containers\RangeSet.h">
Expand Down
2 changes: 1 addition & 1 deletion src/ripple_app/ripple_app_pt9.cpp
Expand Up @@ -28,7 +28,7 @@
#include "transactors/PaymentTransactor.cpp"
#include "transactors/RegularKeySetTransactor.cpp"
#include "transactors/AccountSetTransactor.cpp"
//#include "transactors/AccountDeleteTransactor.cpp" //TODO
#include "transactors/AccountDeleteTransactor.cpp"
#include "transactors/WalletAddTransactor.cpp"
#include "transactors/TrustSetTransactor.cpp"
#include "transactors/InflationTransactor.cpp"
210 changes: 210 additions & 0 deletions src/ripple_app/transactors/AccountDeleteTransactor.cpp
@@ -0,0 +1,210 @@
//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012, 2013 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================

namespace ripple {

SETUP_LOG(AccountDeleteTransactor)


static void offerAdder(std::list<const uint256>& offersList, SLE::ref offer)
{
if (offer->getType() == ltOFFER)
{
offersList.push_front(offer->getIndex());
}
}


TER AccountDeleteTransactor::doApply ()
{

WriteLog (lsINFO, AccountDeleteTransactor) << "AccountDelete>";


if (!mSigMaster)
{
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Invalid: Not authorized to delete account.";

return temBAD_AUTH_MASTER;
}

if (!mTxn.isFieldPresent(sfDestination))
{
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Malformed transaction: Destination is not set.";

return temDST_NEEDED;
}

const RippleAddress aDestination = mTxn.getFieldAccount(sfDestination);
const uint160 uDestinationID = aDestination.getAccountID();

if (uDestinationID == mTxnAccountID)
{
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Malformed transaction: Destination is source account.";

return temDST_IS_SRC;
}


if (!mEngine->getLedger()->hasAccount(aDestination))
{
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Malformed transaction: Destination account doesn't exist.";

// TODO: allow sending to unexisting account? Should we crate new one?
return tecNO_DST;
}

SLE::pointer sleDst = mEngine->entryCache(ltACCOUNT_ROOT, Ledger::getAccountRootIndex(aDestination));

if ((sleDst->getFlags() & lsfRequireDestTag) && !mTxn.isFieldPresent(sfDestinationTag))
{
WriteLog(lsINFO, AccountDeleteTransactor) << "Payment: Malformed transaction: DestinationTag required.";

return tefDST_TAG_NEEDED;
}


/// Manage account IOUs
auto pAccItem = AccountItem::pointer(new RippleState());
AccountItems stellarLines(mTxnAccountID, mEngine->getLedger(), pAccItem);

// Don't delete account if if has outstanding IOUs
BOOST_FOREACH(AccountItem::ref item, stellarLines.getItems())
{
RippleState* line = (RippleState*)item.get();

const STAmount& saBalance = line->getBalance();

if (saBalance.isNegative()){
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Invalid: Not authorized to delete account.";

return temBAD_AMOUNT;
}

}

auto lesNodes = mEngine->getNodes();

// Transfer IOUs
BOOST_FOREACH(AccountItem::ref item, stellarLines.getItems())
{
RippleState* line = (RippleState*)item.get();
SLE::pointer sleLine = line->getSLE();
const STAmount& saBalance = line->getBalance();

if (saBalance.isPositive())
{
const uint160 iouIssuerId = line->getAccountIDPeer();
const uint160 uCurrencyId = saBalance.getCurrency();
const uint256 uTrustLineIndex = Ledger::getRippleStateIndex(mTxnAccountID, iouIssuerId, uCurrencyId);


SLE::pointer sleDestinationTrustLine = mEngine->entryCache(ltRIPPLE_STATE, uTrustLineIndex);

if (sleDestinationTrustLine)
{ // trust line exists, increase balance
RippleState* destTrustLine = (RippleState*)pAccItem->makeItem(uDestinationID, sleDestinationTrustLine).get();

if (line->getAuthPeer() == true && destTrustLine->getAuthPeer() == false)
{
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Invalid: Destination not authorized to hold IOUs.";

//TODO right return code?
return terNO_AUTH;
}

const STAmount& destBalance = sleDestinationTrustLine->getFieldAmount(sfBalance);

sleDestinationTrustLine->setFieldAmount(sfBalance, destBalance + saBalance);
mEngine->entryModify(sleDestinationTrustLine);

}
else
{ // create new trustline with no trust and set balance

const bool bHigh = uDestinationID > iouIssuerId;
const STAmount trustAmount{ uCurrencyId, uDestinationID, 0 }; // Don't set trust for (unassuming) destination

lesNodes.trustCreate(bHigh,
uDestinationID,
iouIssuerId,
uTrustLineIndex,
sleDst,
false,
false,
saBalance,
trustAmount);

}
}

uint160 uAccountID = sleLine->getFirstOwner().getAccountID();
uint160 uAccountPeerID = sleLine->getSecondOwner().getAccountID();

uint160& uHighAccountID = uAccountID > uAccountPeerID ? uAccountID : uAccountPeerID;
uint160& uLowAccountID = uAccountID < uAccountPeerID ? uAccountID : uAccountPeerID;


TER terResult = lesNodes.trustDelete(sleLine, uLowAccountID, uHighAccountID);

if (terResult != tesSUCCESS){
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Deleting trust line failed: " << transHuman(terResult);
}

}


mEngine->entryModify(sleDst);



// Transfer stellars

STAmount saMoveBalance = mSourceBalance;
mSourceBalance.zero();
mTxnAccount->setFieldAmount(sfBalance, mSourceBalance);
sleDst->setFieldAmount(sfBalance, sleDst->getFieldAmount(sfBalance) + saMoveBalance);

assert(mTxnAccount->getFieldAmount(sfBalance).isZero() == true);


// Delete account offers

std::list<const uint256> offersList;

mEngine->getLedger()->visitAccountItems(mTxnAccountID, BIND_TYPE(&offerAdder, boost::ref(offersList), P_1));

WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Deleting " << offersList.size() << " account offers";

BOOST_FOREACH(const uint256 offerIndex, offersList)
{
auto terResult = lesNodes.offerDelete(offerIndex);

if (terResult != tesSUCCESS){
WriteLog(lsINFO, AccountDeleteTransactor) << "AccountDelete: Deleting offer failed: " << transHuman(terResult);
}
}

offersList.clear();


return tesSUCCESS;
}

}
2 changes: 1 addition & 1 deletion src/ripple_app/transactors/AccountDeleteTransactor.h
Expand Up @@ -27,7 +27,7 @@ class AccountDeleteTransactor : public Transactor
public:
AccountDeleteTransactor(const SerializedTransaction& txn, TransactionEngineParams params, TransactionEngine* engine) : Transactor(txn, params, engine) {}

TER doApply() { return tefINTERNAL; } // TODO
TER doApply();
};

}
Expand Down
2 changes: 1 addition & 1 deletion src/ripple_data/protocol/TxFormats.cpp
Expand Up @@ -33,7 +33,7 @@ TxFormats::TxFormats ()

add("AccountDelete", ttACCOUNT_DELETE)
<< SOElement (sfDestination, SOE_REQUIRED)
// TODO
<< SOElement (sfDestinationTag, SOE_OPTIONAL)
;

add ("TrustSet", ttTRUST_SET)
Expand Down

0 comments on commit 399fd83

Please sign in to comment.