The following sed commands were used to port existing call sites to the new interface:
sed -i -e 's/\([a-zA-Z0-9_]\+\)->is_authorized_asset[(] \([a-zA-Z0-9_*]\+\), d [)]/is_authorized_asset( d, *\1, \2 )/' libraries/chain/*.cpp
sed -i -e 's/\([a-zA-Z0-9_]\+\)[.]is_authorized_asset[(] \([a-zA-Z0-9_*]\+\), d [)]/is_authorized_asset( d, \1, \2 )/' libraries/chain/*.cpp
sed -i -e 's/\([a-zA-Z0-9_]\+\)[(]db[)][.]is_authorized_asset[(]\([a-zA-Z0-9_*]\+\)[(]db[)], db[)]/is_authorized_asset( db, \1(db), \2(db) )/' tests/tests/uia_tests.cpp
sed -i -e 's/\([a-zA-Z0-9_]\+\)[.]is_authorized_asset[(]\([a-zA-Z0-9_*]\+\), db[)]/is_authorized_asset( db, \1, \2 )/' tests/tests/uia_tests.cpp
No new functionality is added by this commit, it is simply re-organizing the existing code in a different place.
108 lines
3.3 KiB
CMake
108 lines
3.3 KiB
CMake
|
|
add_custom_target( build_hardfork_hpp
|
|
COMMAND cat-parts hardfork.d "${CMAKE_CURRENT_BINARY_DIR}/include/graphene/chain/hardfork.hpp" )
|
|
set_source_files_properties( "${CMAKE_CURRENT_BINARY_DIR}/include/graphene/chain/hardfork.hpp" PROPERTIES GENERATED TRUE )
|
|
|
|
add_dependencies( build_hardfork_hpp cat-parts )
|
|
|
|
file(GLOB HEADERS "include/graphene/chain/*.hpp")
|
|
|
|
if( GRAPHENE_DISABLE_UNITY_BUILD )
|
|
set( GRAPHENE_DB_FILES
|
|
db_balance.cpp
|
|
db_block.cpp
|
|
db_debug.cpp
|
|
db_getter.cpp
|
|
db_init.cpp
|
|
db_maint.cpp
|
|
db_management.cpp
|
|
db_market.cpp
|
|
db_update.cpp
|
|
db_witness_schedule.cpp
|
|
)
|
|
message( STATUS "Graphene database unity build disabled" )
|
|
else( GRAPHENE_DISABLE_UNITY_BUILD )
|
|
set( GRAPHENE_DB_FILES
|
|
database.cpp )
|
|
message( STATUS "Graphene database unity build enabled" )
|
|
endif( GRAPHENE_DISABLE_UNITY_BUILD )
|
|
|
|
## SORT .cpp by most likely to change / break compile
|
|
add_library( graphene_chain
|
|
|
|
# As database takes the longest to compile, start it first
|
|
${GRAPHENE_DB_FILES}
|
|
fork_database.cpp
|
|
|
|
protocol/types.cpp
|
|
protocol/address.cpp
|
|
protocol/authority.cpp
|
|
protocol/asset.cpp
|
|
protocol/assert.cpp
|
|
protocol/account.cpp
|
|
protocol/transfer.cpp
|
|
protocol/committee_member.cpp
|
|
protocol/witness.cpp
|
|
protocol/market.cpp
|
|
protocol/proposal.cpp
|
|
protocol/withdraw_permission.cpp
|
|
protocol/asset_ops.cpp
|
|
protocol/memo.cpp
|
|
protocol/worker.cpp
|
|
protocol/custom.cpp
|
|
protocol/operations.cpp
|
|
protocol/transaction.cpp
|
|
protocol/block.cpp
|
|
protocol/fee_schedule.cpp
|
|
protocol/confidential.cpp
|
|
protocol/vote.cpp
|
|
|
|
genesis_state.cpp
|
|
get_config.cpp
|
|
|
|
pts_address.cpp
|
|
|
|
evaluator.cpp
|
|
balance_evaluator.cpp
|
|
account_evaluator.cpp
|
|
assert_evaluator.cpp
|
|
witness_evaluator.cpp
|
|
committee_member_evaluator.cpp
|
|
asset_evaluator.cpp
|
|
transfer_evaluator.cpp
|
|
proposal_evaluator.cpp
|
|
market_evaluator.cpp
|
|
vesting_balance_evaluator.cpp
|
|
withdraw_permission_evaluator.cpp
|
|
worker_evaluator.cpp
|
|
confidential_evaluator.cpp
|
|
|
|
account_object.cpp
|
|
asset_object.cpp
|
|
proposal_object.cpp
|
|
vesting_balance_object.cpp
|
|
|
|
block_database.cpp
|
|
|
|
is_authorized_asset.cpp
|
|
|
|
${HEADERS}
|
|
"${CMAKE_CURRENT_BINARY_DIR}/include/graphene/chain/hardfork.hpp"
|
|
)
|
|
|
|
add_dependencies( graphene_chain build_hardfork_hpp )
|
|
target_link_libraries( graphene_chain fc graphene_db )
|
|
target_include_directories( graphene_chain
|
|
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" "${CMAKE_CURRENT_BINARY_DIR}/include" )
|
|
|
|
if(MSVC)
|
|
set_source_files_properties( db_init.cpp db_block.cpp database.cpp block_database.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )
|
|
endif(MSVC)
|
|
|
|
INSTALL( TARGETS
|
|
graphene_chain
|
|
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|