2016-09-29 07:57:47 +02:00
|
|
|
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
2018-01-12 16:11:18 +01:00
|
|
|
# Copyright (c) 2014-2018 The Dash Core developers
|
2016-09-29 07:57:47 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2015-09-04 16:11:34 +02:00
|
|
|
DIST_SUBDIRS = secp256k1 univalue
|
2013-09-09 04:02:28 +02:00
|
|
|
|
2015-11-10 02:50:25 +01:00
|
|
|
AM_LDFLAGS = $(PTHREAD_CFLAGS) $(LIBTOOL_LDFLAGS) $(HARDENED_LDFLAGS)
|
|
|
|
AM_CXXFLAGS = $(HARDENED_CXXFLAGS)
|
|
|
|
AM_CPPFLAGS = $(HARDENED_CPPFLAGS)
|
2016-06-05 21:30:13 +02:00
|
|
|
EXTRA_LIBRARIES =
|
2014-06-04 23:13:03 +02:00
|
|
|
|
2017-07-04 05:20:19 +02:00
|
|
|
if EMBEDDED_UNIVALUE
|
|
|
|
LIBUNIVALUE = univalue/libunivalue.la
|
|
|
|
|
|
|
|
$(LIBUNIVALUE): $(wildcard univalue/lib/*) $(wildcard univalue/include/*)
|
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
|
|
|
|
else
|
|
|
|
LIBUNIVALUE = $(UNIVALUE_LIBS)
|
|
|
|
endif
|
|
|
|
|
2014-06-09 20:58:30 +02:00
|
|
|
BITCOIN_CONFIG_INCLUDES=-I$(builddir)/config
|
2016-06-01 18:22:20 +02:00
|
|
|
BITCOIN_INCLUDES=-I$(builddir) -I$(builddir)/obj $(BDB_CPPFLAGS) $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS) $(CRYPTO_CFLAGS) $(SSL_CFLAGS)
|
2014-06-05 21:24:48 +02:00
|
|
|
|
2014-06-06 16:57:28 +02:00
|
|
|
BITCOIN_INCLUDES += -I$(srcdir)/secp256k1/include
|
2017-07-04 05:20:19 +02:00
|
|
|
BITCOIN_INCLUDES += $(UNIVALUE_CFLAGS)
|
2014-06-06 16:57:28 +02:00
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
LIBBITCOIN_SERVER=libbitcoin_server.a
|
|
|
|
LIBBITCOIN_COMMON=libbitcoin_common.a
|
2016-02-02 18:37:36 +01:00
|
|
|
LIBBITCOIN_CONSENSUS=libbitcoin_consensus.a
|
2014-06-19 15:10:04 +02:00
|
|
|
LIBBITCOIN_CLI=libbitcoin_cli.a
|
|
|
|
LIBBITCOIN_UTIL=libbitcoin_util.a
|
|
|
|
LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
|
|
|
|
LIBBITCOINQT=qt/libbitcoinqt.a
|
2014-11-05 16:58:37 +01:00
|
|
|
LIBSECP256K1=secp256k1/libsecp256k1.la
|
|
|
|
|
2016-06-01 18:22:20 +02:00
|
|
|
if ENABLE_ZMQ
|
|
|
|
LIBBITCOIN_ZMQ=libbitcoin_zmq.a
|
|
|
|
endif
|
|
|
|
if BUILD_BITCOIN_LIBS
|
|
|
|
LIBBITCOINCONSENSUS=libdashconsensus.la
|
|
|
|
endif
|
|
|
|
if ENABLE_WALLET
|
|
|
|
LIBBITCOIN_WALLET=libbitcoin_wallet.a
|
|
|
|
endif
|
|
|
|
|
2014-11-05 16:58:37 +01:00
|
|
|
$(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
|
2014-11-06 02:56:45 +01:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2014-10-21 08:36:09 +02:00
|
|
|
# Make is not made aware of per-object dependencies to avoid limiting building parallelization
|
|
|
|
# But to build the less dependent modules first, we manually select their order here:
|
2016-06-05 21:30:13 +02:00
|
|
|
EXTRA_LIBRARIES += \
|
2016-06-01 18:22:20 +02:00
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_CLI) \
|
|
|
|
$(LIBBITCOIN_WALLET) \
|
|
|
|
$(LIBBITCOIN_ZMQ)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2016-06-01 18:22:20 +02:00
|
|
|
lib_LTLIBRARIES = $(LIBBITCOINCONSENSUS)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2013-09-08 04:44:12 +02:00
|
|
|
bin_PROGRAMS =
|
2014-05-28 19:38:41 +02:00
|
|
|
TESTS =
|
Simple benchmarking framework
Benchmarking framework, loosely based on google's micro-benchmarking
library (https://github.com/google/benchmark)
Wny not use the Google Benchmark framework? Because adding Even More Dependencies
isn't worth it. If we get a dozen or three benchmarks and need nanosecond-accurate
timings of threaded code then switching to the full-blown Google Benchmark library
should be considered.
The benchmark framework is hard-coded to run each benchmark for one wall-clock second,
and then spits out .csv-format timing information to stdout. It is left as an
exercise for later (or maybe never) to add command-line arguments to specify which
benchmark(s) to run, how long to run them for, how to format results, etc etc etc.
Again, see the Google Benchmark framework for where that might end up.
See src/bench/MilliSleep.cpp for a sanity-test benchmark that just benchmarks
'sleep 100 milliseconds.'
To compile and run benchmarks:
cd src; make bench
Sample output:
Benchmark,count,min,max,average
Sleep100ms,10,0.101854,0.105059,0.103881
2015-09-24 19:13:38 +02:00
|
|
|
BENCHMARKS =
|
2013-09-08 04:44:12 +02:00
|
|
|
|
|
|
|
if BUILD_BITCOIND
|
2015-03-19 15:15:08 +01:00
|
|
|
bin_PROGRAMS += dashd
|
2013-09-08 04:44:12 +02:00
|
|
|
endif
|
|
|
|
|
2014-08-16 06:48:24 +02:00
|
|
|
if BUILD_BITCOIN_UTILS
|
2015-04-03 00:51:08 +02:00
|
|
|
bin_PROGRAMS += dash-cli dash-tx
|
2013-09-08 04:44:12 +02:00
|
|
|
endif
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2016-01-26 20:50:50 +01:00
|
|
|
.PHONY: FORCE check-symbols check-security
|
2015-03-19 15:15:08 +01:00
|
|
|
# dash core #
|
2014-01-11 15:22:07 +01:00
|
|
|
BITCOIN_CORE_H = \
|
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
|
|
|
addrdb.h \
|
2014-12-09 02:17:57 +01:00
|
|
|
activemasternode.h \
|
2016-04-07 18:35:25 +02:00
|
|
|
addressindex.h \
|
2016-05-16 20:23:01 +02:00
|
|
|
spentindex.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
addrman.h \
|
|
|
|
alert.h \
|
2014-05-09 17:56:16 +02:00
|
|
|
base58.h \
|
2017-05-29 13:51:40 +02:00
|
|
|
bip39.h \
|
|
|
|
bip39_english.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
bloom.h \
|
2016-11-13 18:52:34 +01:00
|
|
|
cachemap.h \
|
|
|
|
cachemultimap.h \
|
2014-09-03 02:20:09 +02:00
|
|
|
chain.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
chainparams.h \
|
2014-06-19 15:10:04 +02:00
|
|
|
chainparamsbase.h \
|
2014-07-24 13:52:57 +02:00
|
|
|
chainparamsseeds.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
checkpoints.h \
|
|
|
|
checkqueue.h \
|
|
|
|
clientversion.h \
|
|
|
|
coincontrol.h \
|
|
|
|
coins.h \
|
|
|
|
compat.h \
|
2015-05-13 18:59:50 +02:00
|
|
|
compat/byteswap.h \
|
|
|
|
compat/endian.h \
|
|
|
|
compat/sanity.h \
|
2014-10-19 04:28:43 +02:00
|
|
|
compressor.h \
|
2015-01-24 15:29:29 +01:00
|
|
|
consensus/consensus.h \
|
2014-06-24 05:10:24 +02:00
|
|
|
core_io.h \
|
2016-04-09 21:57:53 +02:00
|
|
|
core_memusage.h \
|
2017-05-05 13:26:27 +02:00
|
|
|
privatesend.h \
|
2017-06-30 20:30:16 +02:00
|
|
|
privatesend-client.h \
|
2017-05-05 13:26:27 +02:00
|
|
|
privatesend-server.h \
|
2017-09-11 16:14:55 +02:00
|
|
|
privatesend-util.h \
|
2016-03-02 22:20:04 +01:00
|
|
|
dsnotificationinterface.h \
|
2016-04-09 21:57:53 +02:00
|
|
|
governance.h \
|
2016-08-17 09:08:25 +02:00
|
|
|
governance-classes.h \
|
2016-11-13 18:52:34 +01:00
|
|
|
governance-exceptions.h \
|
2016-11-24 19:12:05 +01:00
|
|
|
governance-object.h \
|
2017-06-26 15:56:29 +02:00
|
|
|
governance-validators.h \
|
2016-04-26 13:42:34 +02:00
|
|
|
governance-vote.h \
|
2016-11-13 18:52:34 +01:00
|
|
|
governance-votedb.h \
|
2016-04-10 08:31:32 +02:00
|
|
|
flat-database.h \
|
2017-05-29 13:51:40 +02:00
|
|
|
hdchain.h \
|
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
|
|
|
httprpc.h \
|
|
|
|
httpserver.h \
|
2016-06-03 01:11:02 +02:00
|
|
|
indirectmap.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
init.h \
|
2014-12-09 02:17:57 +01:00
|
|
|
instantx.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
key.h \
|
2014-12-26 12:53:29 +01:00
|
|
|
keepass.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
keystore.h \
|
2015-10-23 03:33:06 +02:00
|
|
|
dbwrapper.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
limitedmap.h \
|
2014-12-09 02:17:57 +01:00
|
|
|
masternode.h \
|
2015-04-16 21:58:09 +02:00
|
|
|
masternode-payments.h \
|
2015-07-15 04:44:58 +02:00
|
|
|
masternode-sync.h \
|
2015-02-23 21:01:21 +01:00
|
|
|
masternodeman.h \
|
2014-12-06 20:41:53 +01:00
|
|
|
masternodeconfig.h \
|
2015-05-04 00:20:46 +02:00
|
|
|
memusage.h \
|
2014-10-30 23:50:15 +01:00
|
|
|
merkleblock.h \
|
2017-04-12 09:04:06 +02:00
|
|
|
messagesigner.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
miner.h \
|
|
|
|
net.h \
|
2017-08-09 02:19:06 +02:00
|
|
|
net_processing.h \
|
2017-09-03 15:29:10 +02:00
|
|
|
netaddress.h \
|
2015-05-13 18:59:50 +02:00
|
|
|
netbase.h \
|
2016-09-27 09:50:04 +02:00
|
|
|
netfulfilledman.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
noui.h \
|
2014-08-26 22:28:32 +02:00
|
|
|
policy/fees.h \
|
2015-06-24 07:25:30 +02:00
|
|
|
policy/policy.h \
|
2015-12-16 20:57:54 +01:00
|
|
|
policy/rbf.h \
|
2014-03-10 16:46:53 +01:00
|
|
|
pow.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
protocol.h \
|
2014-06-26 14:41:53 +02:00
|
|
|
random.h \
|
2015-09-03 18:53:00 +02:00
|
|
|
reverselock.h \
|
2017-07-03 15:13:34 +02:00
|
|
|
rpc/client.h \
|
|
|
|
rpc/protocol.h \
|
|
|
|
rpc/server.h \
|
2016-03-31 10:55:06 +02:00
|
|
|
rpc/register.h \
|
2015-04-02 16:33:45 +02:00
|
|
|
scheduler.h \
|
2014-09-10 16:16:09 +02:00
|
|
|
script/sigcache.h \
|
2014-08-27 17:22:33 +02:00
|
|
|
script/sign.h \
|
2014-08-23 03:35:51 +02:00
|
|
|
script/standard.h \
|
2016-04-19 10:49:40 +02:00
|
|
|
script/ismine.h \
|
2015-02-09 20:28:29 +01:00
|
|
|
spork.h \
|
2014-10-22 21:08:30 +02:00
|
|
|
streams.h \
|
2015-01-22 21:02:44 +01:00
|
|
|
support/allocators/secure.h \
|
|
|
|
support/allocators/zeroafterfree.h \
|
2015-01-21 01:23:25 +01:00
|
|
|
support/cleanse.h \
|
2015-01-22 21:02:44 +01:00
|
|
|
support/pagelocker.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
sync.h \
|
|
|
|
threadsafety.h \
|
2017-08-09 18:06:31 +02:00
|
|
|
threadinterrupt.h \
|
2014-06-19 15:08:37 +02:00
|
|
|
timedata.h \
|
2015-08-25 20:12:08 +02:00
|
|
|
torcontrol.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
txdb.h \
|
|
|
|
txmempool.h \
|
|
|
|
ui_interface.h \
|
2014-10-18 19:53:37 +02:00
|
|
|
undo.h \
|
2014-01-11 15:22:07 +01:00
|
|
|
util.h \
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
utilmoneystr.h \
|
|
|
|
utiltime.h \
|
2017-08-09 02:19:06 +02:00
|
|
|
validation.h \
|
2015-02-05 01:11:44 +01:00
|
|
|
validationinterface.h \
|
2016-02-15 05:13:27 +01:00
|
|
|
versionbits.h \
|
2015-03-22 20:18:55 +01:00
|
|
|
wallet/crypter.h \
|
2015-05-13 18:59:50 +02:00
|
|
|
wallet/db.h \
|
2016-01-20 15:15:29 +01:00
|
|
|
wallet/rpcwallet.h \
|
2015-02-03 21:09:47 +01:00
|
|
|
wallet/wallet.h \
|
2014-11-18 18:06:32 +01:00
|
|
|
wallet/walletdb.h \
|
|
|
|
zmq/zmqabstractnotifier.h \
|
|
|
|
zmq/zmqconfig.h\
|
|
|
|
zmq/zmqnotificationinterface.h \
|
|
|
|
zmq/zmqpublishnotifier.h
|
|
|
|
|
2013-05-28 01:55:01 +02:00
|
|
|
|
|
|
|
obj/build.h: FORCE
|
2014-06-05 20:22:54 +02:00
|
|
|
@$(MKDIR_P) $(builddir)/obj
|
2013-05-28 01:55:01 +02:00
|
|
|
@$(top_srcdir)/share/genbuild.sh $(abs_top_builddir)/src/obj/build.h \
|
|
|
|
$(abs_top_srcdir)
|
2014-10-29 02:33:23 +01:00
|
|
|
libbitcoin_util_a-clientversion.$(OBJEXT): obj/build.h
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
# server: shared between dashd and dash-qt
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_server_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(MINIUPNPC_CPPFLAGS) $(EVENT_CFLAGS) $(EVENT_PTHREADS_CFLAGS)
|
|
|
|
libbitcoin_server_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2013-11-29 16:50:11 +01:00
|
|
|
libbitcoin_server_a_SOURCES = \
|
2017-12-01 19:53:34 +01:00
|
|
|
activemasternode.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
addrman.cpp \
|
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
|
|
|
addrdb.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
alert.cpp \
|
2013-11-20 14:18:57 +01:00
|
|
|
bloom.cpp \
|
2014-09-03 02:20:09 +02:00
|
|
|
chain.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
checkpoints.cpp \
|
2017-12-01 19:53:34 +01:00
|
|
|
dsnotificationinterface.cpp \
|
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
|
|
|
httprpc.cpp \
|
|
|
|
httpserver.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
init.cpp \
|
2017-12-01 19:53:34 +01:00
|
|
|
instantx.cpp \
|
2015-10-23 03:33:06 +02:00
|
|
|
dbwrapper.cpp \
|
2016-04-09 21:57:53 +02:00
|
|
|
governance.cpp \
|
2016-08-17 09:08:25 +02:00
|
|
|
governance-classes.cpp \
|
2016-11-24 19:12:05 +01:00
|
|
|
governance-object.cpp \
|
2017-06-26 15:56:29 +02:00
|
|
|
governance-validators.cpp \
|
2016-04-26 13:42:34 +02:00
|
|
|
governance-vote.cpp \
|
2016-11-13 18:52:34 +01:00
|
|
|
governance-votedb.cpp \
|
2017-12-01 19:53:34 +01:00
|
|
|
masternode.cpp \
|
|
|
|
masternode-payments.cpp \
|
|
|
|
masternode-sync.cpp \
|
|
|
|
masternodeconfig.cpp \
|
|
|
|
masternodeman.cpp \
|
2014-10-30 23:50:15 +01:00
|
|
|
merkleblock.cpp \
|
2017-04-12 09:04:06 +02:00
|
|
|
messagesigner.cpp \
|
2013-12-08 15:26:08 +01:00
|
|
|
miner.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
net.cpp \
|
2016-09-27 09:50:04 +02:00
|
|
|
netfulfilledman.cpp \
|
2017-08-09 02:19:06 +02:00
|
|
|
net_processing.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
noui.cpp \
|
2014-08-26 22:28:32 +02:00
|
|
|
policy/fees.cpp \
|
2014-10-12 00:41:05 +02:00
|
|
|
policy/policy.cpp \
|
2014-03-10 16:46:53 +01:00
|
|
|
pow.cpp \
|
2017-05-05 13:26:27 +02:00
|
|
|
privatesend.cpp \
|
|
|
|
privatesend-server.cpp \
|
2014-11-11 10:52:43 +01:00
|
|
|
rest.cpp \
|
2017-07-03 15:13:34 +02:00
|
|
|
rpc/blockchain.cpp \
|
|
|
|
rpc/masternode.cpp \
|
|
|
|
rpc/governance.cpp \
|
|
|
|
rpc/mining.cpp \
|
|
|
|
rpc/misc.cpp \
|
|
|
|
rpc/net.cpp \
|
|
|
|
rpc/rawtransaction.cpp \
|
|
|
|
rpc/server.cpp \
|
2014-11-06 09:24:41 +01:00
|
|
|
script/sigcache.cpp \
|
2016-04-19 10:49:40 +02:00
|
|
|
script/ismine.cpp \
|
2017-03-15 12:54:34 +01:00
|
|
|
sendalert.cpp \
|
2017-12-01 19:53:34 +01:00
|
|
|
spork.cpp \
|
2014-06-19 15:08:37 +02:00
|
|
|
timedata.cpp \
|
2015-08-25 20:12:08 +02:00
|
|
|
torcontrol.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
txdb.cpp \
|
|
|
|
txmempool.cpp \
|
2016-04-19 16:10:39 +02:00
|
|
|
ui_interface.cpp \
|
2017-08-09 02:19:06 +02:00
|
|
|
validation.cpp \
|
2015-02-05 01:11:44 +01:00
|
|
|
validationinterface.cpp \
|
2016-02-15 05:13:27 +01:00
|
|
|
versionbits.cpp \
|
2013-11-29 16:50:11 +01:00
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
2014-11-18 18:06:32 +01:00
|
|
|
if ENABLE_ZMQ
|
2015-10-08 06:00:03 +02:00
|
|
|
libbitcoin_zmq_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(ZMQ_CFLAGS)
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_zmq_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2014-11-18 18:06:32 +01:00
|
|
|
libbitcoin_zmq_a_SOURCES = \
|
|
|
|
zmq/zmqabstractnotifier.cpp \
|
|
|
|
zmq/zmqnotificationinterface.cpp \
|
|
|
|
zmq/zmqpublishnotifier.cpp
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
# wallet: shared between dashd and dash-qt, but only linked
|
2014-06-19 15:10:04 +02:00
|
|
|
# when wallet enabled
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_wallet_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
libbitcoin_wallet_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2013-11-29 16:50:11 +01:00
|
|
|
libbitcoin_wallet_a_SOURCES = \
|
2014-12-26 12:53:29 +01:00
|
|
|
keepass.cpp \
|
2017-05-29 13:51:40 +02:00
|
|
|
privatesend-client.cpp \
|
2017-09-11 16:14:55 +02:00
|
|
|
privatesend-util.cpp \
|
2015-03-22 20:18:55 +01:00
|
|
|
wallet/crypter.cpp \
|
2015-02-03 21:09:47 +01:00
|
|
|
wallet/db.cpp \
|
|
|
|
wallet/rpcdump.cpp \
|
|
|
|
wallet/rpcwallet.cpp \
|
|
|
|
wallet/wallet.cpp \
|
|
|
|
wallet/walletdb.cpp \
|
2015-12-16 20:57:54 +01:00
|
|
|
policy/rbf.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
# crypto primitives library
|
2016-02-23 06:55:37 +01:00
|
|
|
crypto_libbitcoin_crypto_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_CONFIG_INCLUDES) $(PIC_FLAGS)
|
2016-02-23 05:10:33 +01:00
|
|
|
crypto_libbitcoin_crypto_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) $(PIC_FLAGS)
|
2014-06-09 21:17:27 +02:00
|
|
|
crypto_libbitcoin_crypto_a_SOURCES = \
|
2016-06-01 18:22:20 +02:00
|
|
|
crypto/aes.cpp \
|
|
|
|
crypto/aes.h \
|
2014-06-09 21:17:27 +02:00
|
|
|
crypto/common.h \
|
2014-10-26 09:38:13 +01:00
|
|
|
crypto/hmac_sha256.cpp \
|
|
|
|
crypto/hmac_sha256.h \
|
2014-10-26 09:23:23 +01:00
|
|
|
crypto/hmac_sha512.cpp \
|
|
|
|
crypto/hmac_sha512.h \
|
2014-06-09 21:17:27 +02:00
|
|
|
crypto/ripemd160.cpp \
|
2015-04-14 10:51:14 +02:00
|
|
|
crypto/aes_helper.c \
|
2017-07-03 15:14:07 +02:00
|
|
|
crypto/ripemd160.h \
|
|
|
|
crypto/sha1.cpp \
|
|
|
|
crypto/sha1.h \
|
|
|
|
crypto/sha256.cpp \
|
|
|
|
crypto/sha256.h \
|
|
|
|
crypto/sha512.cpp \
|
|
|
|
crypto/sha512.h
|
|
|
|
|
|
|
|
# x11
|
|
|
|
crypto_libbitcoin_crypto_a_SOURCES += \
|
2015-04-14 10:51:14 +02:00
|
|
|
crypto/blake.c \
|
|
|
|
crypto/bmw.c \
|
|
|
|
crypto/cubehash.c \
|
|
|
|
crypto/echo.c \
|
|
|
|
crypto/groestl.c \
|
|
|
|
crypto/jh.c \
|
|
|
|
crypto/keccak.c \
|
|
|
|
crypto/luffa.c \
|
|
|
|
crypto/shavite.c \
|
|
|
|
crypto/simd.c \
|
|
|
|
crypto/skein.c \
|
2015-04-04 22:00:03 +02:00
|
|
|
crypto/sph_blake.h \
|
|
|
|
crypto/sph_bmw.h \
|
|
|
|
crypto/sph_cubehash.h \
|
|
|
|
crypto/sph_echo.h \
|
|
|
|
crypto/sph_groestl.h \
|
|
|
|
crypto/sph_jh.h \
|
|
|
|
crypto/sph_keccak.h \
|
|
|
|
crypto/sph_luffa.h \
|
|
|
|
crypto/sph_shavite.h \
|
|
|
|
crypto/sph_simd.h \
|
|
|
|
crypto/sph_skein.h \
|
2017-07-03 15:14:07 +02:00
|
|
|
crypto/sph_types.h
|
2014-07-29 17:12:44 +02:00
|
|
|
|
2016-02-02 18:37:36 +01:00
|
|
|
# consensus: shared between all executables that validate any consensus rules.
|
|
|
|
libbitcoin_consensus_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
libbitcoin_consensus_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
libbitcoin_consensus_a_SOURCES = \
|
|
|
|
amount.h \
|
|
|
|
arith_uint256.cpp \
|
|
|
|
arith_uint256.h \
|
|
|
|
consensus/merkle.cpp \
|
|
|
|
consensus/merkle.h \
|
|
|
|
consensus/params.h \
|
|
|
|
consensus/validation.h \
|
|
|
|
hash.cpp \
|
|
|
|
hash.h \
|
|
|
|
prevector.h \
|
|
|
|
primitives/block.cpp \
|
|
|
|
primitives/block.h \
|
|
|
|
primitives/transaction.cpp \
|
|
|
|
primitives/transaction.h \
|
|
|
|
pubkey.cpp \
|
|
|
|
pubkey.h \
|
|
|
|
script/dashconsensus.cpp \
|
|
|
|
script/interpreter.cpp \
|
|
|
|
script/interpreter.h \
|
|
|
|
script/script.cpp \
|
|
|
|
script/script.h \
|
|
|
|
script/script_error.cpp \
|
|
|
|
script/script_error.h \
|
|
|
|
serialize.h \
|
|
|
|
tinyformat.h \
|
|
|
|
uint256.cpp \
|
|
|
|
uint256.h \
|
|
|
|
utilstrencodings.cpp \
|
|
|
|
utilstrencodings.h \
|
|
|
|
version.h
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
# common: shared between dashd, and dash-qt and non-server tools
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_common_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2013-11-27 15:41:12 +01:00
|
|
|
libbitcoin_common_a_SOURCES = \
|
2014-10-23 02:05:11 +02:00
|
|
|
amount.cpp \
|
2014-06-25 10:03:00 +02:00
|
|
|
base58.cpp \
|
2017-05-29 13:51:40 +02:00
|
|
|
bip39.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
chainparams.cpp \
|
2014-06-25 10:03:00 +02:00
|
|
|
coins.cpp \
|
2014-10-19 04:28:43 +02:00
|
|
|
compressor.cpp \
|
2014-06-24 05:10:24 +02:00
|
|
|
core_read.cpp \
|
|
|
|
core_write.cpp \
|
2017-05-29 13:51:40 +02:00
|
|
|
hdchain.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
key.cpp \
|
2014-06-25 10:03:00 +02:00
|
|
|
keystore.cpp \
|
2017-09-03 15:29:10 +02:00
|
|
|
netaddress.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
netbase.cpp \
|
|
|
|
protocol.cpp \
|
2015-04-02 16:33:45 +02:00
|
|
|
scheduler.cpp \
|
2014-08-27 17:22:33 +02:00
|
|
|
script/sign.cpp \
|
2014-08-23 03:35:51 +02:00
|
|
|
script/standard.cpp \
|
2014-06-19 15:10:04 +02:00
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
|
|
|
# util: shared between all executables.
|
|
|
|
# This library *must* be included to make sure that the glibc
|
|
|
|
# backward-compatibility objects and their sanity checks are linked.
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_util_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
libbitcoin_util_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2014-06-19 15:10:04 +02:00
|
|
|
libbitcoin_util_a_SOURCES = \
|
2015-01-22 21:02:44 +01:00
|
|
|
support/pagelocker.cpp \
|
2014-06-19 15:10:04 +02:00
|
|
|
chainparamsbase.cpp \
|
2014-10-29 02:33:23 +01:00
|
|
|
clientversion.cpp \
|
2014-12-15 10:22:19 +01:00
|
|
|
compat/glibc_sanity.cpp \
|
|
|
|
compat/glibcxx_sanity.cpp \
|
|
|
|
compat/strnlen.cpp \
|
2014-06-26 14:41:53 +02:00
|
|
|
random.cpp \
|
2017-07-03 15:13:34 +02:00
|
|
|
rpc/protocol.cpp \
|
2015-01-21 01:23:25 +01:00
|
|
|
support/cleanse.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
sync.cpp \
|
2017-08-09 18:06:31 +02:00
|
|
|
threadinterrupt.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
util.cpp \
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
utilmoneystr.cpp \
|
2014-12-15 10:22:19 +01:00
|
|
|
utilstrencodings.cpp \
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
utiltime.cpp \
|
2013-05-28 01:55:01 +02:00
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
2014-03-28 00:58:41 +01:00
|
|
|
if GLIBC_BACK_COMPAT
|
2014-06-19 15:10:04 +02:00
|
|
|
libbitcoin_util_a_SOURCES += compat/glibc_compat.cpp
|
2014-03-28 00:58:41 +01:00
|
|
|
endif
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
# cli: shared between dash-cli and dash-qt
|
2015-11-10 02:50:25 +01:00
|
|
|
libbitcoin_cli_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
libbitcoin_cli_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2013-11-27 15:41:12 +01:00
|
|
|
libbitcoin_cli_a_SOURCES = \
|
2017-07-03 15:13:34 +02:00
|
|
|
rpc/client.cpp \
|
2013-11-27 15:41:12 +01:00
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
nodist_libbitcoin_util_a_SOURCES = $(srcdir)/obj/build.h
|
2013-05-28 01:55:01 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# bitcoind binary #
|
2016-02-02 16:28:56 +01:00
|
|
|
dashd_SOURCES = dashd.cpp
|
|
|
|
dashd_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
dashd_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
dashd_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2014-11-21 00:24:50 +01:00
|
|
|
|
|
|
|
if TARGET_WINDOWS
|
2016-02-02 16:28:56 +01:00
|
|
|
dashd_SOURCES += dashd-res.rc
|
2014-11-21 00:24:50 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-19 15:15:08 +01:00
|
|
|
dashd_LDADD = \
|
2014-06-19 15:10:04 +02:00
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
2015-09-04 16:11:34 +02:00
|
|
|
$(LIBUNIVALUE) \
|
2014-06-19 15:10:04 +02:00
|
|
|
$(LIBBITCOIN_UTIL) \
|
2016-06-01 18:22:20 +02:00
|
|
|
$(LIBBITCOIN_WALLET) \
|
|
|
|
$(LIBBITCOIN_ZMQ) \
|
2016-02-02 18:37:36 +01:00
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
2014-06-19 15:10:04 +02:00
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
2013-11-12 21:09:55 +01:00
|
|
|
$(LIBLEVELDB) \
|
2014-11-05 16:58:37 +01:00
|
|
|
$(LIBMEMENV) \
|
|
|
|
$(LIBSECP256K1)
|
2014-06-06 16:57:28 +02:00
|
|
|
|
2016-06-01 18:22:20 +02:00
|
|
|
dashd_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(EVENT_PTHREADS_LIBS) $(EVENT_LIBS) $(ZMQ_LIBS)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
# dash-cli binary #
|
|
|
|
dash_cli_SOURCES = dash-cli.cpp
|
|
|
|
dash_cli_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(EVENT_CFLAGS)
|
|
|
|
dash_cli_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
dash_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2013-09-18 21:53:29 +02:00
|
|
|
if TARGET_WINDOWS
|
2016-02-02 16:28:56 +01:00
|
|
|
dash_cli_SOURCES += dash-cli-res.rc
|
2013-09-18 21:53:29 +02:00
|
|
|
endif
|
|
|
|
|
2015-03-19 15:15:08 +01:00
|
|
|
dash_cli_LDADD = \
|
2014-06-19 15:10:04 +02:00
|
|
|
$(LIBBITCOIN_CLI) \
|
2015-09-04 16:11:34 +02:00
|
|
|
$(LIBUNIVALUE) \
|
2016-05-30 15:46:16 +02:00
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CRYPTO)
|
2016-02-02 16:28:56 +01:00
|
|
|
dash_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS)
|
2013-10-11 23:09:59 +02:00
|
|
|
#
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
# dash-tx binary #
|
2016-02-02 16:28:56 +01:00
|
|
|
dash_tx_SOURCES = dash-tx.cpp
|
|
|
|
dash_tx_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
dash_tx_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
dash_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2014-11-21 00:24:50 +01:00
|
|
|
|
2015-05-02 17:30:38 +02:00
|
|
|
if TARGET_WINDOWS
|
2016-02-02 16:28:56 +01:00
|
|
|
dash_tx_SOURCES += dash-tx-res.rc
|
2015-05-02 17:30:38 +02:00
|
|
|
endif
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
dash_tx_LDADD = \
|
2015-09-04 16:11:34 +02:00
|
|
|
$(LIBUNIVALUE) \
|
2014-07-29 17:12:44 +02:00
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
2016-02-02 18:37:36 +01:00
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
2014-11-05 16:58:37 +01:00
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
2014-11-21 00:24:50 +01:00
|
|
|
$(LIBSECP256K1)
|
2014-10-13 05:28:58 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
dash_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
2013-10-11 23:09:59 +02:00
|
|
|
#
|
|
|
|
|
2017-04-15 09:29:09 +02:00
|
|
|
# dashconsensus library #
|
2014-10-15 00:22:55 +02:00
|
|
|
if BUILD_BITCOIN_LIBS
|
2017-04-15 09:29:09 +02:00
|
|
|
include_HEADERS = script/dashconsensus.h
|
2016-02-02 18:37:36 +01:00
|
|
|
libdashconsensus_la_SOURCES = $(crypto_libbitcoin_crypto_a_SOURCES) $(libbitcoin_consensus_a_SOURCES)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2014-10-15 00:22:55 +02:00
|
|
|
if GLIBC_BACK_COMPAT
|
2017-04-15 09:29:09 +02:00
|
|
|
libdashconsensus_la_SOURCES += compat/glibc_compat.cpp
|
2014-10-15 00:22:55 +02:00
|
|
|
endif
|
2013-05-28 01:55:01 +02:00
|
|
|
|
2017-04-15 09:29:09 +02:00
|
|
|
libdashconsensus_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined $(RELDFLAGS)
|
|
|
|
libdashconsensus_la_LIBADD = $(LIBSECP256K1)
|
|
|
|
libdashconsensus_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(builddir)/obj -I$(srcdir)/secp256k1/include -DBUILD_BITCOIN_INTERNAL
|
|
|
|
libdashconsensus_la_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2014-11-21 00:24:50 +01:00
|
|
|
|
2014-11-07 04:43:19 +01:00
|
|
|
endif
|
2014-11-21 00:24:50 +01:00
|
|
|
#
|
2013-09-14 17:52:42 +02:00
|
|
|
|
2016-06-01 18:22:20 +02:00
|
|
|
CTAES_DIST = crypto/ctaes/bench.c
|
|
|
|
CTAES_DIST += crypto/ctaes/ctaes.c
|
|
|
|
CTAES_DIST += crypto/ctaes/ctaes.h
|
|
|
|
CTAES_DIST += crypto/ctaes/README.md
|
|
|
|
CTAES_DIST += crypto/ctaes/test.c
|
|
|
|
|
2016-06-10 09:58:37 +02:00
|
|
|
CLEANFILES = $(EXTRA_LIBRARIES)
|
|
|
|
|
2015-05-28 02:47:53 +02:00
|
|
|
CLEANFILES += *.gcda *.gcno
|
|
|
|
CLEANFILES += compat/*.gcda compat/*.gcno
|
|
|
|
CLEANFILES += consensus/*.gcda consensus/*.gcno
|
|
|
|
CLEANFILES += crypto/*.gcda crypto/*.gcno
|
|
|
|
CLEANFILES += policy/*.gcda policy/*.gcno
|
|
|
|
CLEANFILES += primitives/*.gcda primitives/*.gcno
|
|
|
|
CLEANFILES += script/*.gcda script/*.gcno
|
|
|
|
CLEANFILES += support/*.gcda support/*.gcno
|
|
|
|
CLEANFILES += univalue/*.gcda univalue/*.gcno
|
|
|
|
CLEANFILES += wallet/*.gcda wallet/*.gcno
|
|
|
|
CLEANFILES += wallet/test/*.gcda wallet/test/*.gcno
|
|
|
|
CLEANFILES += zmq/*.gcda zmq/*.gcno
|
2013-05-28 01:55:01 +02:00
|
|
|
|
|
|
|
DISTCLEANFILES = obj/build.h
|
|
|
|
|
2016-06-10 09:58:37 +02:00
|
|
|
EXTRA_DIST = $(CTAES_DIST)
|
2013-05-28 01:55:01 +02:00
|
|
|
|
|
|
|
clean-local:
|
2014-11-06 02:56:45 +01:00
|
|
|
-$(MAKE) -C secp256k1 clean
|
2015-10-13 19:40:47 +02:00
|
|
|
-$(MAKE) -C univalue clean
|
2015-05-28 02:47:53 +02:00
|
|
|
-rm -f leveldb/*/*.gcda leveldb/*/*.gcno leveldb/helpers/memenv/*.gcda leveldb/helpers/memenv/*.gcno
|
2014-06-09 20:58:30 +02:00
|
|
|
-rm -f config.h
|
2016-06-10 09:58:37 +02:00
|
|
|
-rm -rf test/__pycache__
|
2014-05-28 19:38:41 +02:00
|
|
|
|
2014-06-04 23:13:03 +02:00
|
|
|
.rc.o:
|
2014-06-05 20:17:50 +02:00
|
|
|
@test -f $(WINDRES)
|
2016-02-04 13:41:58 +01:00
|
|
|
## FIXME: How to get the appropriate modulename_CPPFLAGS in here?
|
|
|
|
$(AM_V_GEN) $(WINDRES) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) -DWINDRES_PREPROC -i $< -o $@
|
2014-06-04 23:13:03 +02:00
|
|
|
|
|
|
|
.mm.o:
|
2014-06-05 20:17:50 +02:00
|
|
|
$(AM_V_CXX) $(OBJCXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
2015-11-10 02:50:25 +01:00
|
|
|
$(CPPFLAGS) $(AM_CXXFLAGS) $(QT_INCLUDES) $(AM_CXXFLAGS) $(PIE_FLAGS) $(CXXFLAGS) -c -o $@ $<
|
2014-06-04 23:13:03 +02:00
|
|
|
|
2016-01-26 20:50:50 +01:00
|
|
|
check-symbols: $(bin_PROGRAMS)
|
|
|
|
if GLIBC_BACK_COMPAT
|
|
|
|
@echo "Checking glibc back compat..."
|
|
|
|
$(AM_V_at) READELF=$(READELF) CPPFILT=$(CPPFILT) $(top_srcdir)/contrib/devtools/symbol-check.py < $(bin_PROGRAMS)
|
|
|
|
endif
|
|
|
|
|
|
|
|
check-security: $(bin_PROGRAMS)
|
|
|
|
if HARDEN
|
|
|
|
@echo "Checking binary security..."
|
|
|
|
$(AM_V_at) READELF=$(READELF) OBJDUMP=$(OBJDUMP) $(top_srcdir)/contrib/devtools/security-check.py < $(bin_PROGRAMS)
|
|
|
|
endif
|
2014-06-04 23:13:03 +02:00
|
|
|
|
|
|
|
%.pb.cc %.pb.h: %.proto
|
2014-06-05 20:17:50 +02:00
|
|
|
@test -f $(PROTOC)
|
2016-04-05 17:37:57 +02:00
|
|
|
$(AM_V_GEN) $(PROTOC) --cpp_out=$(@D) --proto_path=$(<D) $<
|
2014-06-04 23:13:03 +02:00
|
|
|
|
2016-06-05 21:30:13 +02:00
|
|
|
if EMBEDDED_LEVELDB
|
|
|
|
include Makefile.leveldb.include
|
|
|
|
endif
|
|
|
|
|
2014-05-28 19:38:41 +02:00
|
|
|
if ENABLE_TESTS
|
|
|
|
include Makefile.test.include
|
|
|
|
endif
|
|
|
|
|
Simple benchmarking framework
Benchmarking framework, loosely based on google's micro-benchmarking
library (https://github.com/google/benchmark)
Wny not use the Google Benchmark framework? Because adding Even More Dependencies
isn't worth it. If we get a dozen or three benchmarks and need nanosecond-accurate
timings of threaded code then switching to the full-blown Google Benchmark library
should be considered.
The benchmark framework is hard-coded to run each benchmark for one wall-clock second,
and then spits out .csv-format timing information to stdout. It is left as an
exercise for later (or maybe never) to add command-line arguments to specify which
benchmark(s) to run, how long to run them for, how to format results, etc etc etc.
Again, see the Google Benchmark framework for where that might end up.
See src/bench/MilliSleep.cpp for a sanity-test benchmark that just benchmarks
'sleep 100 milliseconds.'
To compile and run benchmarks:
cd src; make bench
Sample output:
Benchmark,count,min,max,average
Sleep100ms,10,0.101854,0.105059,0.103881
2015-09-24 19:13:38 +02:00
|
|
|
if ENABLE_BENCH
|
|
|
|
include Makefile.bench.include
|
|
|
|
endif
|
|
|
|
|
2014-05-28 19:38:41 +02:00
|
|
|
if ENABLE_QT
|
|
|
|
include Makefile.qt.include
|
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_QT_TESTS
|
|
|
|
include Makefile.qttest.include
|
|
|
|
endif
|