Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Refactor ExtVMFace #4496

Merged
merged 11 commits into from
Sep 20, 2017
Merged

Refactor ExtVMFace #4496

merged 11 commits into from
Sep 20, 2017

Conversation

chfast
Copy link
Member

@chfast chfast commented Sep 13, 2017

This moves utility structs like LogEntry from ExtVMFace.h (libevm) to libethcore. Previously some files from libethcore have to include ExtVMFace.h.

Also Address is moved from libdevcrypto to libdevcore as it is used not only in crypto context.

@winsvega
Copy link
Contributor

@pirapira

namespace dev
{

const Address ZeroAddress = Address();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Address const

/** @file FixedHash.cpp
* @author Gav Wood <[email protected]>
* @date 2014
*/

#include "FixedHash.h"
#include <boost/algorithm/string.hpp>

using namespace std;
using namespace dev;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can remove this now

@@ -351,6 +351,25 @@ using h160Set = std::set<h160>;
using h256Hash = std::unordered_set<h256>;
using h160Hash = std::unordered_set<h160>;

/// An Ethereum address: 20 bytes.
/// @NOTE This is not endian-specific; it's just a bunch of bytes.
using Address = h160;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer to put these into separate Address.h/cpp

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two cons for this: increased build time (?) and additional maintenance cost. I'm not sure...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's your way it could be theoretically increased build time, because everyone who needs only FixedHash has to compile Address-related stuff, too

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would make navigating the code easier, putting Address into Address.h instead of suprisingly FixedHash.h


#pragma once

#include <boost/optional.hpp>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#includes should be in increasing order of generality, so this goes after our own headers

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we have it the other way around in most files. Personally, I don't care. Why is this better?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Link from coding standards: http://stackoverflow.com/questions/614302/c-header-order/614333#614333

It prevents the headers from not including all necessary headers but still working because of weird inter-header dependency

#include <boost/variant/variant.hpp>
#include <libdevcore/RLP.h>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be before boost & <array>

Live
};

struct LogEntry
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These could go into separate LogEntry.h, but it's up to you

@@ -23,6 +23,7 @@

#pragma once

#include <libdevcrypto/Common.h>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this added now?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously this header was implicitly included for Address. Now we still need it for crypto::Signature.

@@ -191,5 +189,26 @@ string TransactionSkeleton::userReadable(bool _toProxy, function<pair<bool, stri
formatBalance(gas * gasPrice) + ".");
}

LogEntry::LogEntry(RLP const& _r)
{
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should there be an assertion against

  • _r not being a list and
  • _r being too short?

{
LogEntry() = default;
explicit LogEntry(RLP const& _r);
LogEntry(Address const& _address, h256s _ts, bytes&& _d): address(_address), topics(std::move(_ts)), data(std::move(_d)) {}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder why _ts is not an rvalue reference and _d is an rvalue reference...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generic way is to pass by value and move in the initialization list (like with h256s case). This way you handle both copy and move, depending what argument you have.

The version with && prevents you from passing argument by copy -- you can only pass an argument being rvalue. This is restrictive, but enforces some optimizations. I don't like it because it is more confusing than useful.

@ethereum ethereum deleted a comment from pirapira Sep 20, 2017
@ethereum ethereum deleted a comment from pirapira Sep 20, 2017
@codecov-io
Copy link

codecov-io commented Sep 20, 2017

Codecov Report

Merging #4496 into develop will increase coverage by 6.4%.
The diff coverage is 82.92%.

Impacted file tree graph

@@            Coverage Diff            @@
##           develop   #4496     +/-   ##
=========================================
+ Coverage    56.29%   62.7%   +6.4%     
=========================================
  Files          337     368     +31     
  Lines        22788   30991   +8203     
  Branches      2750    2749      -1     
=========================================
+ Hits         12829   19433   +6604     
- Misses        9090   11321   +2231     
+ Partials       869     237    -632
Impacted Files Coverage Δ
libethereum/BlockChain.h 72.91% <ø> (-27.09%) ⬇️
libethcore/Common.h 90% <ø> (ø)
test/tools/jsontests/vm.cpp 62.7% <ø> (+4.18%) ⬆️
libdevcrypto/Common.cpp 89.37% <ø> (ø)
libweb3jsonrpc/Eth.h 20% <ø> (+20%) ⬆️
libethcore/SealEngine.cpp 82.35% <ø> (+9.62%) ⬆️
test/tools/libtesteth/TestHelper.h 40% <ø> (+15%) ⬆️
libweb3jsonrpc/AccountHolder.h 84.61% <ø> (+9.61%) ⬆️
libevm/ExtVMFace.h 74.46% <ø> (+9.46%) ⬆️
libethereum/Transaction.h 50% <ø> (+25%) ⬆️
... and 287 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 75be259...b4fc3aa. Read the comment docs.

@chfast
Copy link
Member Author

chfast commented Sep 20, 2017

I think I addressed all issues. Can you review before builds?

@@ -90,6 +96,13 @@ enum class RelativeBlock: BlockNumber
Pending = PendingBlock
};

enum class BlockPolarity
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is used only in LocalisedLogEntry, maybe move it to LogEntry.h?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, this is also used in Client.cpp and ClientBase.cpp.

@chfast chfast merged commit 851ed50 into develop Sep 20, 2017
@chfast chfast deleted the refactor-extvmface branch September 20, 2017 21:21
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants