mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-13 23:25:48 +00:00
179 lines
5.4 KiB
C++
179 lines
5.4 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <ripple/protocol/InnerObjectFormats.h>
|
|
|
|
namespace ripple {
|
|
|
|
InnerObjectFormats::InnerObjectFormats()
|
|
{
|
|
add(sfEmitDetails.jsonName.c_str(),
|
|
sfEmitDetails.getCode(),
|
|
{{sfEmitGeneration, soeREQUIRED},
|
|
{sfEmitBurden, soeREQUIRED},
|
|
{sfEmitParentTxnID, soeREQUIRED},
|
|
{sfEmitNonce, soeREQUIRED},
|
|
{sfEmitCallback, soeOPTIONAL},
|
|
{sfEmitHookHash, soeREQUIRED}});
|
|
|
|
add(sfSignerEntry.jsonName.c_str(),
|
|
sfSignerEntry.getCode(),
|
|
{
|
|
{sfAccount, soeREQUIRED},
|
|
{sfSignerWeight, soeREQUIRED},
|
|
{sfWalletLocator, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfSigner.jsonName.c_str(),
|
|
sfSigner.getCode(),
|
|
{
|
|
{sfAccount, soeREQUIRED},
|
|
{sfSigningPubKey, soeREQUIRED},
|
|
{sfTxnSignature, soeREQUIRED},
|
|
});
|
|
|
|
add(sfMajority.jsonName.c_str(),
|
|
sfMajority.getCode(),
|
|
{
|
|
{sfAmendment, soeREQUIRED},
|
|
{sfCloseTime, soeREQUIRED},
|
|
});
|
|
|
|
add(sfDisabledValidator.jsonName.c_str(),
|
|
sfDisabledValidator.getCode(),
|
|
{
|
|
{sfPublicKey, soeREQUIRED},
|
|
{sfFirstLedgerSequence, soeREQUIRED},
|
|
});
|
|
|
|
add(sfHookExecution.jsonName.c_str(),
|
|
sfHookExecution.getCode(),
|
|
{{sfHookResult, soeREQUIRED},
|
|
{sfHookHash, soeREQUIRED},
|
|
{sfHookAccount, soeREQUIRED},
|
|
{sfHookReturnCode, soeREQUIRED},
|
|
{sfHookReturnString, soeREQUIRED},
|
|
{sfHookInstructionCount, soeREQUIRED},
|
|
{sfHookExecutionIndex, soeREQUIRED},
|
|
{sfHookStateChangeCount, soeREQUIRED},
|
|
{sfHookEmitCount, soeREQUIRED}});
|
|
|
|
add(sfHookEmission.jsonName.c_str(),
|
|
sfHookEmission.getCode(),
|
|
{{sfHookHash, soeREQUIRED},
|
|
{sfHookAccount, soeREQUIRED},
|
|
{sfEmittedTxnID, soeREQUIRED}});
|
|
|
|
add(sfHookDefinition.jsonName.c_str(),
|
|
sfHookDefinition.getCode(),
|
|
{{sfCreateCode, soeREQUIRED},
|
|
{sfHookNamespace, soeREQUIRED},
|
|
{sfHookParameters, soeREQUIRED},
|
|
{sfHookOn, soeREQUIRED},
|
|
{sfHookApiVersion, soeREQUIRED},
|
|
{sfFlags, soeREQUIRED},
|
|
{sfFee, soeREQUIRED}});
|
|
|
|
add(sfHook.jsonName.c_str(),
|
|
sfHook.getCode(),
|
|
{{sfHookHash, soeOPTIONAL},
|
|
{sfCreateCode, soeOPTIONAL},
|
|
{sfHookGrants, soeOPTIONAL},
|
|
{sfHookNamespace, soeOPTIONAL},
|
|
{sfHookParameters, soeOPTIONAL},
|
|
{sfHookOn, soeOPTIONAL},
|
|
{sfHookApiVersion, soeOPTIONAL},
|
|
{sfFlags, soeOPTIONAL}});
|
|
|
|
add(sfHookGrant.jsonName.c_str(),
|
|
sfHookGrant.getCode(),
|
|
{{sfHookHash, soeREQUIRED},
|
|
{sfAuthorize, soeOPTIONAL},
|
|
{sfFlags, soeOPTIONAL}});
|
|
|
|
add(sfHookParameter.jsonName.c_str(),
|
|
sfHookParameter.getCode(),
|
|
{{sfHookParameterName, soeREQUIRED},
|
|
{sfHookParameterValue, soeOPTIONAL}});
|
|
|
|
add(sfNFToken.jsonName.c_str(),
|
|
sfNFToken.getCode(),
|
|
{
|
|
{sfNFTokenID, soeREQUIRED},
|
|
{sfURI, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfGenesisMint.jsonName.c_str(),
|
|
sfGenesisMint.getCode(),
|
|
{
|
|
{sfDestination, soeREQUIRED},
|
|
{sfAmount, soeOPTIONAL},
|
|
{sfGovernanceFlags, soeOPTIONAL},
|
|
{sfGovernanceMarks, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfActiveValidator.jsonName.c_str(),
|
|
sfActiveValidator.getCode(),
|
|
{
|
|
{sfPublicKey, soeREQUIRED},
|
|
{sfAccount, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfImportVLKey.jsonName.c_str(),
|
|
sfImportVLKey.getCode(),
|
|
{
|
|
{sfPublicKey, soeREQUIRED},
|
|
{sfAccount, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfAmountEntry.jsonName.c_str(),
|
|
sfAmountEntry.getCode(),
|
|
{
|
|
{sfAmount, soeREQUIRED},
|
|
{sfFlags, soeOPTIONAL},
|
|
});
|
|
|
|
add(sfMintURIToken.jsonName.c_str(),
|
|
sfMintURIToken.getCode(),
|
|
{
|
|
{sfURI, soeREQUIRED},
|
|
{sfDigest, soeOPTIONAL},
|
|
{sfFlags, soeOPTIONAL},
|
|
});
|
|
}
|
|
|
|
InnerObjectFormats const&
|
|
InnerObjectFormats::getInstance()
|
|
{
|
|
static InnerObjectFormats instance;
|
|
return instance;
|
|
}
|
|
|
|
SOTemplate const*
|
|
InnerObjectFormats::findSOTemplateBySField(SField const& sField) const
|
|
{
|
|
auto itemPtr = findByType(sField.getCode());
|
|
if (itemPtr)
|
|
return &(itemPtr->getSOTemplate());
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
} // namespace ripple
|