mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge identifier query methods into one
This commit is contained in:
parent
9e62f21b25
commit
3e7c68d9b0
@ -1014,46 +1014,31 @@ Json::Value const& CompilerStack::natspecDev(Contract const& _contract) const
|
|||||||
return _contract.devDocumentation.init([&]{ return Natspec::devDocumentation(*_contract.contract); });
|
return _contract.devDocumentation.init([&]{ return Natspec::devDocumentation(*_contract.contract); });
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value CompilerStack::methodIdentifiers(string const& _contractName) const
|
Json::Value CompilerStack::contractIdentifiers(string const& _contractName) const
|
||||||
{
|
{
|
||||||
if (m_stackState < AnalysisPerformed)
|
if (m_stackState < AnalysisPerformed)
|
||||||
solThrow(CompilerError, "Analysis was not successful.");
|
solThrow(CompilerError, "Analysis was not successful.");
|
||||||
|
|
||||||
Json::Value methodIdentifiers(Json::objectValue);
|
Json::Value contractIdentifiers(Json::objectValue);
|
||||||
|
// Always have a methods object
|
||||||
|
contractIdentifiers["methods"] = Json::objectValue;
|
||||||
|
|
||||||
for (auto const& it: contractDefinition(_contractName).interfaceFunctions())
|
for (auto const& it: contractDefinition(_contractName).interfaceFunctions())
|
||||||
methodIdentifiers[it.second->externalSignature()] = it.first.hex();
|
contractIdentifiers["methods"][it.second->externalSignature()] = it.first.hex();
|
||||||
return methodIdentifiers;
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value CompilerStack::errorIdentifiers(string const& _contractName) const
|
|
||||||
{
|
|
||||||
if (m_stackState < AnalysisPerformed)
|
|
||||||
solThrow(CompilerError, "Analysis was not successful.");
|
|
||||||
|
|
||||||
Json::Value errorIdentifiers(Json::objectValue);
|
|
||||||
for (ErrorDefinition const* error: contractDefinition(_contractName).interfaceErrors())
|
for (ErrorDefinition const* error: contractDefinition(_contractName).interfaceErrors())
|
||||||
{
|
{
|
||||||
string signature = error->functionType(true)->externalSignature();
|
string signature = error->functionType(true)->externalSignature();
|
||||||
errorIdentifiers[signature] = toHex(toCompactBigEndian(selectorFromSignature32(signature), 4));
|
contractIdentifiers["errors"][signature] = toHex(toCompactBigEndian(selectorFromSignature32(signature), 4));
|
||||||
}
|
}
|
||||||
|
|
||||||
return errorIdentifiers;
|
|
||||||
}
|
|
||||||
|
|
||||||
Json::Value CompilerStack::eventIdentifiers(string const& _contractName) const
|
|
||||||
{
|
|
||||||
if (m_stackState < AnalysisPerformed)
|
|
||||||
solThrow(CompilerError, "Analysis was not successful.");
|
|
||||||
|
|
||||||
Json::Value eventIdentifiers(Json::objectValue);
|
|
||||||
for (EventDefinition const* event: contractDefinition(_contractName).interfaceEvents())
|
for (EventDefinition const* event: contractDefinition(_contractName).interfaceEvents())
|
||||||
if (!event->isAnonymous())
|
if (!event->isAnonymous())
|
||||||
{
|
{
|
||||||
string signature = event->functionType(true)->externalSignature();
|
string signature = event->functionType(true)->externalSignature();
|
||||||
eventIdentifiers[signature] = toHex(u256(h256::Arith(keccak256(signature))));
|
contractIdentifiers["events"][signature] = toHex(u256(h256::Arith(keccak256(signature))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return eventIdentifiers;
|
return contractIdentifiers;
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes CompilerStack::cborMetadata(string const& _contractName, bool _forIR) const
|
bytes CompilerStack::cborMetadata(string const& _contractName, bool _forIR) const
|
||||||
|
@ -327,14 +327,8 @@ public:
|
|||||||
/// Prerequisite: Successful call to parse or compile.
|
/// Prerequisite: Successful call to parse or compile.
|
||||||
Json::Value const& natspecDev(std::string const& _contractName) const;
|
Json::Value const& natspecDev(std::string const& _contractName) const;
|
||||||
|
|
||||||
/// @returns a JSON representing a map of method identifiers (hashes) to function names.
|
/// @returns a JSON object with the three members ``methods``, ``events``, ``errors``. Each is a map, mapping identifiers (hashes) to function names.
|
||||||
Json::Value methodIdentifiers(std::string const& _contractName) const;
|
Json::Value contractIdentifiers(std::string const& _contractName) const;
|
||||||
|
|
||||||
/// @returns a JSON representing a map of error identifiers (hashes) to error names.
|
|
||||||
Json::Value errorIdentifiers(std::string const& _contractName) const;
|
|
||||||
|
|
||||||
/// @returns a JSON representing a map of event identifiers (hashes) to event names.
|
|
||||||
Json::Value eventIdentifiers(std::string const& _contractName) const;
|
|
||||||
|
|
||||||
/// @returns the Contract Metadata matching the pipeline selected using the viaIR setting.
|
/// @returns the Contract Metadata matching the pipeline selected using the viaIR setting.
|
||||||
std::string const& metadata(std::string const& _contractName) const { return metadata(contract(_contractName)); }
|
std::string const& metadata(std::string const& _contractName) const { return metadata(contract(_contractName)); }
|
||||||
|
@ -1298,7 +1298,7 @@ Json::Value StandardCompiler::compileSolidity(StandardCompiler::InputsAndSetting
|
|||||||
if (compilationSuccess && isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.legacyAssembly", wildcardMatchesExperimental))
|
if (compilationSuccess && isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.legacyAssembly", wildcardMatchesExperimental))
|
||||||
evmData["legacyAssembly"] = compilerStack.assemblyJSON(contractName);
|
evmData["legacyAssembly"] = compilerStack.assemblyJSON(contractName);
|
||||||
if (isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.methodIdentifiers", wildcardMatchesExperimental))
|
if (isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.methodIdentifiers", wildcardMatchesExperimental))
|
||||||
evmData["methodIdentifiers"] = compilerStack.methodIdentifiers(contractName);
|
evmData["methodIdentifiers"] = compilerStack.contractIdentifiers(contractName)["methods"];
|
||||||
if (compilationSuccess && isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.gasEstimates", wildcardMatchesExperimental))
|
if (compilationSuccess && isArtifactRequested(_inputsAndSettings.outputSelection, file, name, "evm.gasEstimates", wildcardMatchesExperimental))
|
||||||
evmData["gasEstimates"] = compilerStack.gasEstimates(contractName);
|
evmData["gasEstimates"] = compilerStack.gasEstimates(contractName);
|
||||||
|
|
||||||
|
@ -270,25 +270,23 @@ void CommandLineInterface::handleSignatureHashes(string const& _contract)
|
|||||||
if (!m_options.compiler.outputs.signatureHashes)
|
if (!m_options.compiler.outputs.signatureHashes)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Json::Value methodIdentifiers = m_compiler->methodIdentifiers(_contract);
|
Json::Value contractIdentifiers = m_compiler->contractIdentifiers(_contract);
|
||||||
string out = "Function signatures:\n";
|
string out = "Function signatures:\n";
|
||||||
for (auto const& name: methodIdentifiers.getMemberNames())
|
for (auto const& name: contractIdentifiers["methods"].getMemberNames())
|
||||||
out += methodIdentifiers[name].asString() + ": " + name + "\n";
|
out += contractIdentifiers["methods"][name].asString() + ": " + name + "\n";
|
||||||
|
|
||||||
Json::Value errorIdentifiers = m_compiler->errorIdentifiers(_contract);
|
if (contractIdentifiers.isMember("errors"))
|
||||||
if (!errorIdentifiers.empty())
|
|
||||||
{
|
{
|
||||||
out += "\nError signatures:\n";
|
out += "\nError signatures:\n";
|
||||||
for (auto const& name: errorIdentifiers.getMemberNames())
|
for (auto const& name: contractIdentifiers["errors"].getMemberNames())
|
||||||
out += errorIdentifiers[name].asString() + ": " + name + "\n";
|
out += contractIdentifiers["errors"][name].asString() + ": " + name + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::Value eventIdentifiers = m_compiler->eventIdentifiers(_contract);
|
if (contractIdentifiers.isMember("events"))
|
||||||
if (!eventIdentifiers.empty())
|
|
||||||
{
|
{
|
||||||
out += "\nEvent signatures:\n";
|
out += "\nEvent signatures:\n";
|
||||||
for (auto const& name: eventIdentifiers.getMemberNames())
|
for (auto const& name: contractIdentifiers["events"].getMemberNames())
|
||||||
out += eventIdentifiers[name].asString() + ": " + name + "\n";
|
out += contractIdentifiers["events"][name].asString() + ": " + name + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_options.output.dir.empty())
|
if (!m_options.output.dir.empty())
|
||||||
@ -838,7 +836,7 @@ void CommandLineInterface::handleCombinedJSON()
|
|||||||
m_compiler->runtimeObject(contractName).functionDebugData
|
m_compiler->runtimeObject(contractName).functionDebugData
|
||||||
);
|
);
|
||||||
if (m_options.compiler.combinedJsonRequests->signatureHashes)
|
if (m_options.compiler.combinedJsonRequests->signatureHashes)
|
||||||
contractData[g_strSignatureHashes] = m_compiler->methodIdentifiers(contractName);
|
contractData[g_strSignatureHashes] = m_compiler->contractIdentifiers(contractName)["methods"];
|
||||||
if (m_options.compiler.combinedJsonRequests->natspecDev)
|
if (m_options.compiler.combinedJsonRequests->natspecDev)
|
||||||
contractData[g_strNatspecDev] = m_compiler->natspecDev(contractName);
|
contractData[g_strNatspecDev] = m_compiler->natspecDev(contractName);
|
||||||
if (m_options.compiler.combinedJsonRequests->natspecUser)
|
if (m_options.compiler.combinedJsonRequests->natspecUser)
|
||||||
|
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"language": "Solidity",
|
||||||
|
"sources":
|
||||||
|
{
|
||||||
|
"A":
|
||||||
|
{
|
||||||
|
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0; contract C { }"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"settings":
|
||||||
|
{
|
||||||
|
"outputSelection":
|
||||||
|
{
|
||||||
|
"*": { "*": ["evm.methodIdentifiers"] }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
{"contracts":{"A":{"C":{"evm":{"methodIdentifiers":{}}}}},"sources":{"A":{"id":0}}}
|
@ -435,7 +435,7 @@ TestCase::TestResult SemanticTest::runTest(
|
|||||||
{
|
{
|
||||||
soltestAssert(
|
soltestAssert(
|
||||||
m_allowNonExistingFunctions ||
|
m_allowNonExistingFunctions ||
|
||||||
m_compiler.methodIdentifiers(m_compiler.lastContractName(m_sources.mainSourceFile)).isMember(test.call().signature),
|
m_compiler.contractIdentifiers(m_compiler.lastContractName(m_sources.mainSourceFile))["methods"].isMember(test.call().signature),
|
||||||
"The function " + test.call().signature + " is not known to the compiler"
|
"The function " + test.call().signature + " is not known to the compiler"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ optional<CompilerOutput> SolidityCompilationFramework::compileContract()
|
|||||||
else
|
else
|
||||||
contractName = m_compilerInput.contractName;
|
contractName = m_compilerInput.contractName;
|
||||||
evmasm::LinkerObject obj = m_compiler.object(contractName);
|
evmasm::LinkerObject obj = m_compiler.object(contractName);
|
||||||
Json::Value methodIdentifiers = m_compiler.methodIdentifiers(contractName);
|
Json::Value methodIdentifiers = m_compiler.contractIdentifiers(contractName)["methods"];
|
||||||
return CompilerOutput{obj.bytecode, methodIdentifiers};
|
return CompilerOutput{obj.bytecode, methodIdentifiers};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ public:
|
|||||||
/// @returns method identifiers in contract called @param _contractName.
|
/// @returns method identifiers in contract called @param _contractName.
|
||||||
Json::Value methodIdentifiers(std::string const& _contractName)
|
Json::Value methodIdentifiers(std::string const& _contractName)
|
||||||
{
|
{
|
||||||
return m_compiler.methodIdentifiers(_contractName);
|
return m_compiler.contractIdentifiers(_contractName)["methods"];
|
||||||
}
|
}
|
||||||
/// @returns Compilation output comprising EVM bytecode and list of
|
/// @returns Compilation output comprising EVM bytecode and list of
|
||||||
/// method identifiers in contract if compilation is successful,
|
/// method identifiers in contract if compilation is successful,
|
||||||
|
Loading…
Reference in New Issue
Block a user