* Created unit test for #325
* remove needless find()
* issue - 154: Don't allow to vote when vesting balance is 0
* Increase block creation timeout to 2500ms
* increase delay for node connection
* remove cache from cli get_account
* add cli tests framework
* Adjust newly merged code to new API
* Merged changes from Bitshares PR 1036
* GRPH-76 - Short-cut long sequences of missed blocks
Fixes database::update_global_dynamic_data to speed up counting missed blocks.
(This also fixes a minor issue with counting - the previous algorithm would skip missed blocks for the witness who signed the first block after the gap.)
* Improved resilience of block database against corruption
* Moved reindex logic into database / chain_database, make use of additional blocks in block_database
Fixed tests wrt db.open
* Enable undo + fork database for final blocks in a replay
Dont remove blocks from block db when popping blocks, handle edge case in replay wrt fork_db, adapted unit tests
* Log starting block number of replay
* Prevent unsigned integer underflow
* Fixed lock detection
* Dont leave _data_dir empty if db is locked
* Writing the object_database is now almost atomic
* Improved consistency check for block_log
* Cut back block_log index file if inconsistent
* Fixed undo_database
* Added test case for broken merge on empty undo_db
* exclude second undo_db.enable() call in some cases
* Add missing change
* change bitshares to core in message
* Merge pull request #938 from bitshares/fix-block-storing
Store correct block ID when switching forks
* Fixed integer overflow issue
* Fix for for history ID mismatch ( Bitshares PR #875 )
* Update the FC submodule with the changes for GRPH-4
* Merged Bitshares PR #1462 and compilation fixes
* Support/gitlab (#123)
* Updated gitlab process
* Fix undefined references in cli test
* Updated GitLab CI
* Fix #436 object_database created outside of witness data directory
* supplement more comments on database::_opened variable
* prevent segfault when destructing application obj
* Fixed test failures and compilation issue
* minor performance improvement
* Added comment
* Fix compilation in debug mode
* Fixed duplicate ops returned from get_account_history
* Fixed account_history_pagination test
* Removed unrelated comment
* Update to fixed version of fc
* Skip auth check when pushing self-generated blocks
* Extract public keys before pushing a transaction
* Dereference chain_database shared_ptr
* Updated transaction::signees to mutable
and
* updated get_signature_keys() to return a const reference,
* get_signature_keys() will update signees on first call,
* modified test cases and wallet.cpp accordingly,
* no longer construct a new signed_transaction object before pushing
* Added get_asset_count API
* No longer extract public keys before pushing a trx
and removed unused new added constructor and _get_signature_keys() function from signed_transaction struct
* changes to withdraw_vesting feature(for both cdd and GPOS)
* Comments update
* update to GPOS hardfork ref
* Remove leftover comment from merge
* fix for get_vesting_balance API call
* braces update
* Allow sufficient space for new undo_session
* Throw for deep nesting
* node.cpp: Check the attacker/buggy client before updating items ids
The peer is an attacker or buggy, which means the item_hashes_received is
not correct.
Move the check before updating items ids to save some time in this case.
* Create .gitlab-ci.yml
* Added cli_test to CI
* fixing build errors (#150)
* fixing build errors
vest type correction
* fixing build errors
vest type correction
* fixes
new Dockerfile
* vesting_balance_type correction
vesting_balance_type changed to normal
* gcc5 support to Dockerfile
gcc5 support to Dockerfile
* use random port numbers in app_test (#154)
* Changes to compiple with GCC 7(Ubuntu 18.04)
* proposal fail_reason bug fixed (#157)
* Added Sonarcloud code_quality to CI (#159)
* Added sonarcloud analysis (#158)
* changes to have separate methods and single withdrawl fee for multiple vest objects
* 163-fix, Return only non-zero vesting balances
* Support/gitlab develop (#168)
* Added code_quality to CI
* Update .gitlab-ci.yml
* Point to PBSA/peerplays-fc commit f13d063 (#167)
* [GRPH-3] Additional cli tests (#155)
* Additional cli tests
* Compatible with latest fc changes
* Fixed Spacing issues
* [GRPH-106] Added voting tests (#136)
* Added more voting tests
* Added additional option
* Adjust p2p log level (#180)
* merge gpos to develop (#186)
* issue - 154: Don't allow to vote when vesting balance is 0
* changes to withdraw_vesting feature(for both cdd and GPOS)
* Comments update
* update to GPOS hardfork ref
* fix for get_vesting_balance API call
* braces update
* Create .gitlab-ci.yml
* fixing build errors (#150)
* fixing build errors
vest type correction
* fixing build errors
vest type correction
* fixes
new Dockerfile
* vesting_balance_type correction
vesting_balance_type changed to normal
* gcc5 support to Dockerfile
gcc5 support to Dockerfile
* Changes to compiple with GCC 7(Ubuntu 18.04)
* changes to have separate methods and single withdrawl fee for multiple vest objects
* 163-fix, Return only non-zero vesting balances
* Revert "Revert "GPOS protocol""
This reverts commit 67616417b7.
* add new line needed to gpos hardfork file
* comment temporally cli_vote_for_2_witnesses until refactor or delete
* fix gpos tests
* fix gitlab-ci conflict
* Fixed few error messages
* error message corrections at other places
* Updated FC repository to peerplays-network/peerplays-fc (#189)
Point to fc commit hash 6096e94 [latest-fc branch]
* Project name update in Doxyfile (#146)
* changes to allow user to vote in each sub-period
* Fixed GPOS vesting factor issue when proxy is set
* Added unit test for proxy voting
* Review changes
* changes to update last voting time
* resolve merge conflict
* unit test changes and also separated GPOS test suite
* delete unused variables
* removed witness check
* eliminate time gap between two consecutive vesting periods
* deleted GPOS specific test suite and updated gpos tests
* updated GPOS hf
* Fixed dividend distribution issue and added test case
* fix flag
* clean newlines gpos_tests
* adapt gpos_tests to changed flag
* Fix to roll in GPOS rules, carry votes from 6th sub-period
* check was already modified
* comments updated
* updated comments to the benefit of reviewer
* Added token symbol name in error messages
* Added token symbol name in error messages (#204)
* case 1: Fixed last voting time issue
* get_account bug fixed
* Fixed flag issue
* Fixed spelling issue
* remove non needed gcc5 changes to dockerfile
* GRPH134- High CPU Issue, websocket changes (#213)
* update submodule branch to refer to the latest commit on latest-fc branch (#214)
* Improve account maintenance performance (#130)
* Improve account maintenance performance
* merge fixes
* Fixed merge issue
* Fixed indentations and extra ';'
* Update CI for syncing gitmodules (#216)
* Added logging for the old update_expired_feeds bug
The old bug is https://github.com/cryptonomex/graphene/issues/615 .
Due to the bug, `update_median_feeds()` and `check_call_orders()`
will be called when a feed is not actually expired, normally this
should not affect consensus since calling them should not change
any data in the state.
However, the logging indicates that `check_call_orders()` did
change some data under certain circumstances, specifically, when
multiple limit order matching issue (#453) occurred at same block.
* https://github.com/bitshares/bitshares-core/issues/453
* Minor performance improvement for price::is_null()
* Use static refs in db_getter for immutable objects
* Minor performance improvement for db_maint
* Minor code updates for asset_evaluator.cpp
* changed an `assert()` to `FC_ASSERT()`
* replaced one `db.get(asset_id_type())` with `db.get_core_asset()`
* capture only required variables for lambda
* Improve update_expired_feeds performance #1093
* Change static refs to member pointers of db class
* Added getter for witness schedule object
* Added getter for core dynamic data object
* Use getters
* Removed unused variable
* Add comments for update_expired_feeds in db_block
* Minor refactory asset_create_evaluator::do_apply()
* Added FC_ASSERT for dynamic data id of core asset
* Added header inclusions in db_management.cpp
* fix global objects usage during replay
* Logging config parsing issue
* added new files
* compilation fix
* Simplified code in database::pay_workers()
* issue with withdrawl
* Added unit test for empty account history
* set extensions default values
* Update GPOS hardfork date and don't allow GPOS features before hardfork time
* refer to latest commit of latest-fc branch (#224)
* account name or id support in all database api
* asset id or name support in all asset APIs
* Fixed compilation issues
* Fixed alignment issues
* Externalized some API templates
* Externalize serialization of blocks, tx, ops
* Externalized db objects
* Externalized genesis serialization
* Externalized serialization in protocol library
* Undo superfluous change
* remove default value for extension parameter
* fix compilation issues
* GRPH-46-Quit_command_cliwallet
* removed multiple function definition
* Fixed chainparameter update proposal issue
* Move GPOS withdraw logic to have single transaction(also single fee) and update API
* Added log for authorization failure of proposal operations
* Votes consideration on GPOS activation
* bump fc version
* fix gpos tests
* Bump fc version
* Updated gpos/voting_tests
* Fixed withdraw vesting bug
* Added unit test
* Update hardfork date for TESTNET, sync fc module and update logs
* avoid wlog as it filling up space
* Beatrice hot fix(sync issue fix)
* gpos tests fix
* Set hardfork date to Jan5th on TESTNET
Co-authored-by: Peter Conrad <github.com@quisquis.de>
Co-authored-by: John M. Jones <jmjatlanta@gmail.com>
Co-authored-by: obucinac <obucinac@users.noreply.github.com>
Co-authored-by: Bobinson K B <bobinson@gmail.com>
Co-authored-by: Alfredo Garcia <oxarbitrage@gmail.com>
Co-authored-by: Miha Čančula <miha@noughmad.eu>
Co-authored-by: Abit <abitmore@users.noreply.github.com>
Co-authored-by: Roshan Syed <r.syed@pbsa.info>
Co-authored-by: Sandip Patel <sandip@knackroot.com>
Co-authored-by: RichardWeiYang <richard.weiyang@gmail.com>
Co-authored-by: gladcow <jahr@yandex.ru>
Co-authored-by: satyakoneru <satyakoneru.iiith@gmail.com>
584 lines
27 KiB
C++
584 lines
27 KiB
C++
/*
|
|
* Copyright (c) 2018 Peerplays Blockchain Standards Association, and contributors.
|
|
*
|
|
* The MIT License
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#define DEFAULT_LOGGER "betting"
|
|
#define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
|
|
#define BOOST_MPL_LIMIT_VECTOR_SIZE 30
|
|
#define BOOST_MPL_LIMIT_MAP_SIZE 30
|
|
#include <graphene/chain/event_object.hpp>
|
|
#include <graphene/chain/database.hpp>
|
|
#include <graphene/chain/betting_market_object.hpp>
|
|
#include <boost/msm/back/state_machine.hpp>
|
|
#include <boost/msm/front/state_machine_def.hpp>
|
|
#include <boost/archive/binary_oarchive.hpp>
|
|
#include <boost/archive/binary_iarchive.hpp>
|
|
#include <boost/msm/back/tools.hpp>
|
|
|
|
namespace graphene { namespace chain {
|
|
enum class event_state {
|
|
upcoming,
|
|
frozen_upcoming,
|
|
in_progress,
|
|
frozen_in_progress,
|
|
finished,
|
|
canceled,
|
|
settled
|
|
};
|
|
} }
|
|
|
|
FC_REFLECT_ENUM(graphene::chain::event_state,
|
|
(upcoming)
|
|
(frozen_upcoming)
|
|
(in_progress)
|
|
(frozen_in_progress)
|
|
(finished)
|
|
(canceled)
|
|
(settled))
|
|
|
|
namespace graphene { namespace chain {
|
|
|
|
namespace msm = boost::msm;
|
|
namespace mpl = boost::mpl;
|
|
|
|
namespace
|
|
{
|
|
|
|
// Events -- most events happen when the witnesses publish an event_update operation with a new
|
|
// status, so if they publish an event with the status set to `frozen`, we'll generate a `frozen_event`
|
|
struct upcoming_event
|
|
{
|
|
database& db;
|
|
upcoming_event(database& db) : db(db) {}
|
|
};
|
|
struct in_progress_event
|
|
{
|
|
database& db;
|
|
in_progress_event(database& db) : db(db) {}
|
|
};
|
|
struct frozen_event
|
|
{
|
|
database& db;
|
|
frozen_event(database& db) : db(db) {}
|
|
};
|
|
struct finished_event
|
|
{
|
|
database& db;
|
|
finished_event(database& db) : db(db) {}
|
|
};
|
|
struct canceled_event
|
|
{
|
|
database& db;
|
|
canceled_event(database& db) : db(db) {}
|
|
};
|
|
|
|
// event triggered when a betting market group in this event is resolved,
|
|
// when we get this, check and see if all betting market groups are now
|
|
// canceled/settled; if so, transition the event to canceled/settled,
|
|
// otherwise remain in the current state
|
|
struct betting_market_group_resolved_event
|
|
{
|
|
database& db;
|
|
betting_market_group_id_type resolved_group;
|
|
bool was_canceled;
|
|
betting_market_group_resolved_event(database& db, betting_market_group_id_type resolved_group, bool was_canceled) : db(db), resolved_group(resolved_group), was_canceled(was_canceled) {}
|
|
};
|
|
|
|
// event triggered when a betting market group is closed. When we get this,
|
|
// if all child betting market groups are closed, transition to finished
|
|
struct betting_market_group_closed_event
|
|
{
|
|
database& db;
|
|
betting_market_group_id_type closed_group;
|
|
betting_market_group_closed_event(database& db, betting_market_group_id_type closed_group) : db(db), closed_group(closed_group) {}
|
|
};
|
|
|
|
// Events
|
|
struct event_state_machine_ : public msm::front::state_machine_def<event_state_machine_>
|
|
|
|
{
|
|
// disable a few state machine features we don't use for performance
|
|
typedef int no_exception_thrown;
|
|
typedef int no_message_queue;
|
|
|
|
// States
|
|
struct upcoming : public msm::front::state<> {
|
|
void on_entry(const betting_market_group_resolved_event& event, event_state_machine_& fsm) {} // transition to self
|
|
void on_entry(const upcoming_event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> upcoming", ("id", fsm.event_obj->id));
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(fsm.event_obj->id)))
|
|
try
|
|
{
|
|
event.db.modify(betting_market_group, [&event](betting_market_group_object& betting_market_group_obj) {
|
|
betting_market_group_obj.on_upcoming_event(event.db);
|
|
});
|
|
}
|
|
catch (const graphene::chain::no_transition&)
|
|
{
|
|
// it's possible a betting market group has already been closed or canceled,
|
|
// in which case we can't freeze the group. just ignore the exception
|
|
}
|
|
}
|
|
};
|
|
struct in_progress : public msm::front::state<> {
|
|
void on_entry(const betting_market_group_resolved_event& event, event_state_machine_& fsm) {} // transition to self
|
|
void on_entry(const in_progress_event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> in_progress", ("id", fsm.event_obj->id));
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(fsm.event_obj->id)))
|
|
try
|
|
{
|
|
event.db.modify(betting_market_group, [&event](betting_market_group_object& betting_market_group_obj) {
|
|
betting_market_group_obj.on_in_play_event(event.db);
|
|
});
|
|
}
|
|
catch (const graphene::chain::no_transition&)
|
|
{
|
|
// it's possible a betting market group has already been closed or canceled,
|
|
// in which case we can't freeze the group. just ignore the exception
|
|
}
|
|
}
|
|
};
|
|
struct frozen_upcoming : public msm::front::state<> {
|
|
void on_entry(const betting_market_group_resolved_event& event, event_state_machine_& fsm) {} // transition to self
|
|
template <class Event>
|
|
void on_entry(const Event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> frozen_upcoming", ("id", fsm.event_obj->id));
|
|
}
|
|
};
|
|
struct frozen_in_progress : public msm::front::state<> {
|
|
void on_entry(const betting_market_group_resolved_event& event, event_state_machine_& fsm) {} // transition to self
|
|
template <class Event>
|
|
void on_entry(const Event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> frozen_in_progress", ("id", fsm.event_obj->id));
|
|
}
|
|
};
|
|
struct finished : public msm::front::state<> {
|
|
template <class Event>
|
|
void on_entry(const Event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> finished", ("id", fsm.event_obj->id));
|
|
}
|
|
};
|
|
struct settled : public msm::front::state<>{
|
|
template <class Event>
|
|
void on_entry(const Event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> settled", ("id", fsm.event_obj->id));
|
|
}
|
|
};
|
|
struct canceled : public msm::front::state<> {
|
|
template <class Event>
|
|
void on_entry(const Event& event, event_state_machine_& fsm) {
|
|
dlog("event ${id} -> canceled", ("id", fsm.event_obj->id));
|
|
}
|
|
};
|
|
|
|
// actions
|
|
void record_whether_group_settled_or_canceled(const betting_market_group_resolved_event& event) {
|
|
if (!event.was_canceled)
|
|
event_obj->at_least_one_betting_market_group_settled = true;
|
|
}
|
|
|
|
void freeze_betting_market_groups(const frozen_event& event) {
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id)))
|
|
{
|
|
try
|
|
{
|
|
event.db.modify(betting_market_group, [&event](betting_market_group_object& betting_market_group_obj) {
|
|
betting_market_group_obj.on_frozen_event(event.db);
|
|
});
|
|
}
|
|
catch (const graphene::chain::no_transition&)
|
|
{
|
|
// it's possible a betting market group has already been closed or canceled,
|
|
// in which case we can't freeze the group. just ignore the exception
|
|
}
|
|
}
|
|
}
|
|
|
|
void close_all_betting_market_groups(const finished_event& event) {
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id)))
|
|
{
|
|
try
|
|
{
|
|
event.db.modify(betting_market_group, [&event](betting_market_group_object& betting_market_group_obj) {
|
|
betting_market_group_obj.on_closed_event(event.db, true);
|
|
});
|
|
}
|
|
catch (const graphene::chain::no_transition&)
|
|
{
|
|
// it's possible a betting market group has already been closed or canceled,
|
|
// in which case we can't close the group. just ignore the exception
|
|
}
|
|
}
|
|
}
|
|
|
|
void cancel_all_betting_market_groups(const canceled_event& event) {
|
|
auto& betting_market_group_index = event.db.template get_index_type<betting_market_group_object_index>().indices().template get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id)))
|
|
event.db.modify(betting_market_group, [&event](betting_market_group_object& betting_market_group_obj) {
|
|
betting_market_group_obj.on_canceled_event(event.db, true);
|
|
});
|
|
}
|
|
|
|
// Guards
|
|
bool all_betting_market_groups_are_closed(const betting_market_group_closed_event& event)
|
|
{
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id)))
|
|
if (betting_market_group.id != event.closed_group)
|
|
{
|
|
betting_market_group_status status = betting_market_group.get_status();
|
|
if (status != betting_market_group_status::closed &&
|
|
status != betting_market_group_status::graded &&
|
|
status != betting_market_group_status::re_grading &&
|
|
status != betting_market_group_status::settled &&
|
|
status != betting_market_group_status::canceled)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool all_betting_market_groups_are_canceled(const betting_market_group_resolved_event& event)
|
|
{
|
|
// if the bmg that just resolved was settled, obviously all didn't cancel
|
|
if (!event.was_canceled)
|
|
return false;
|
|
// if a previously-resolved group was settled, all didn't cancel
|
|
if (event_obj->at_least_one_betting_market_group_settled)
|
|
return false;
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id)))
|
|
if (betting_market_group.id != event.resolved_group)
|
|
if (betting_market_group.get_status() != betting_market_group_status::canceled)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool all_betting_market_groups_are_resolved(const betting_market_group_resolved_event& event)
|
|
{
|
|
if (!event.was_canceled)
|
|
event_obj->at_least_one_betting_market_group_settled = true;
|
|
|
|
auto& betting_market_group_index = event.db.get_index_type<betting_market_group_object_index>().indices().get<by_event_id>();
|
|
for (const betting_market_group_object& betting_market_group :
|
|
boost::make_iterator_range(betting_market_group_index.equal_range(event_obj->id))) {
|
|
if (betting_market_group.id != event.resolved_group) {
|
|
betting_market_group_status status = betting_market_group.get_status();
|
|
if (status != betting_market_group_status::canceled && status != betting_market_group_status::settled)
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
typedef upcoming initial_state;
|
|
typedef event_state_machine_ x; // makes transition table cleaner
|
|
|
|
// Transition table for tournament
|
|
struct transition_table : mpl::vector<
|
|
// Start Event Next Action Guard
|
|
// +---------------------+-----------------------------+--------------------+--------------------------------+----------------------+
|
|
_row < upcoming, in_progress_event, in_progress >,
|
|
a_row< upcoming, finished_event, finished, &x::close_all_betting_market_groups >,
|
|
a_row< upcoming, frozen_event, frozen_upcoming, &x::freeze_betting_market_groups >,
|
|
a_row< upcoming, canceled_event, canceled, &x::cancel_all_betting_market_groups >,
|
|
a_row< upcoming, betting_market_group_resolved_event,upcoming, &x::record_whether_group_settled_or_canceled >,
|
|
g_row< upcoming, betting_market_group_closed_event, finished, &x::all_betting_market_groups_are_closed >,
|
|
// +---------------------+-----------------------------+--------------------+--------------------------------+----------------------+
|
|
_row < frozen_upcoming, upcoming_event, upcoming >,
|
|
_row < frozen_upcoming, in_progress_event, in_progress >,
|
|
a_row< frozen_upcoming, finished_event, finished, &x::close_all_betting_market_groups >,
|
|
a_row< frozen_upcoming, canceled_event, canceled, &x::cancel_all_betting_market_groups >,
|
|
a_row< frozen_upcoming, betting_market_group_resolved_event,frozen_upcoming, &x::record_whether_group_settled_or_canceled >,
|
|
g_row< frozen_upcoming, betting_market_group_closed_event, finished, &x::all_betting_market_groups_are_closed >,
|
|
// +---------------------+-----------------------------+--------------------+--------------------------------+----------------------+
|
|
a_row< in_progress, frozen_event, frozen_in_progress, &x::freeze_betting_market_groups >,
|
|
a_row< in_progress, finished_event, finished, &x::close_all_betting_market_groups >,
|
|
a_row< in_progress, canceled_event, canceled, &x::cancel_all_betting_market_groups >,
|
|
a_row< in_progress, betting_market_group_resolved_event,in_progress, &x::record_whether_group_settled_or_canceled >,
|
|
g_row< in_progress, betting_market_group_closed_event, finished, &x::all_betting_market_groups_are_closed >,
|
|
// +---------------------+-----------------------------+--------------------+--------------------------------+----------------------+
|
|
_row < frozen_in_progress, in_progress_event, in_progress >,
|
|
a_row< frozen_in_progress, finished_event, finished, &x::close_all_betting_market_groups >,
|
|
a_row< frozen_in_progress, canceled_event, canceled, &x::cancel_all_betting_market_groups >,
|
|
a_row< frozen_in_progress, betting_market_group_resolved_event,frozen_in_progress, &x::record_whether_group_settled_or_canceled >,
|
|
g_row< frozen_in_progress, betting_market_group_closed_event, finished, &x::all_betting_market_groups_are_closed >,
|
|
// +---------------------+-----------------------------+--------------------+--------------------------------+----------------------+
|
|
a_row< finished, canceled_event, canceled, &x::cancel_all_betting_market_groups >,
|
|
g_row< finished, betting_market_group_resolved_event,settled, &x::all_betting_market_groups_are_resolved >,
|
|
g_row< finished, betting_market_group_resolved_event,canceled, &x::all_betting_market_groups_are_canceled >
|
|
> {};
|
|
|
|
template <class Fsm,class Event>
|
|
void no_transition(Event const& e, Fsm&, int state)
|
|
{
|
|
FC_THROW_EXCEPTION(graphene::chain::no_transition, "No transition");
|
|
}
|
|
|
|
template <class Fsm>
|
|
void no_transition(canceled_event const& e, Fsm&, int state)
|
|
{
|
|
//ignore transitions from settled to canceled state
|
|
//and from canceled to canceled state
|
|
}
|
|
|
|
event_object* event_obj;
|
|
event_state_machine_(event_object* event_obj) : event_obj(event_obj) {}
|
|
};
|
|
typedef msm::back::state_machine<event_state_machine_> event_state_machine;
|
|
|
|
} // end anonymous namespace
|
|
|
|
class event_object::impl {
|
|
public:
|
|
event_state_machine state_machine;
|
|
|
|
impl(event_object* self) : state_machine(self) {}
|
|
};
|
|
|
|
event_object::event_object() :
|
|
at_least_one_betting_market_group_settled(false),
|
|
my(new impl(this))
|
|
{
|
|
}
|
|
|
|
event_object::event_object(const event_object& rhs) :
|
|
graphene::db::abstract_object<event_object>(rhs),
|
|
name(rhs.name),
|
|
season(rhs.season),
|
|
start_time(rhs.start_time),
|
|
event_group_id(rhs.event_group_id),
|
|
at_least_one_betting_market_group_settled(rhs.at_least_one_betting_market_group_settled),
|
|
scores(rhs.scores),
|
|
my(new impl(this))
|
|
{
|
|
my->state_machine = rhs.my->state_machine;
|
|
my->state_machine.event_obj = this;
|
|
}
|
|
|
|
event_object& event_object::operator=(const event_object& rhs)
|
|
{
|
|
//graphene::db::abstract_object<event_object>::operator=(rhs);
|
|
id = rhs.id;
|
|
name = rhs.name;
|
|
season = rhs.season;
|
|
start_time = rhs.start_time;
|
|
event_group_id = rhs.event_group_id;
|
|
at_least_one_betting_market_group_settled = rhs.at_least_one_betting_market_group_settled;
|
|
scores = rhs.scores;
|
|
|
|
my->state_machine = rhs.my->state_machine;
|
|
my->state_machine.event_obj = this;
|
|
|
|
return *this;
|
|
}
|
|
|
|
event_object::~event_object()
|
|
{
|
|
}
|
|
|
|
namespace {
|
|
|
|
bool verify_event_status_constants()
|
|
{
|
|
unsigned error_count = 0;
|
|
typedef msm::back::generate_state_set<event_state_machine::stt>::type all_states;
|
|
static char const* filled_state_names[mpl::size<all_states>::value];
|
|
mpl::for_each<all_states,boost::msm::wrap<mpl::placeholders::_1> >
|
|
(msm::back::fill_state_names<event_state_machine::stt>(filled_state_names));
|
|
for (unsigned i = 0; i < mpl::size<all_states>::value; ++i)
|
|
{
|
|
try
|
|
{
|
|
// this is an approximate test, the state name provided by typeinfo will be mangled, but should
|
|
// at least contain the string we're looking for
|
|
const char* fc_reflected_value_name = fc::reflector<event_state>::to_string((event_state)i);
|
|
if (!strstr(filled_state_names[i], fc_reflected_value_name))
|
|
{
|
|
fc_elog(fc::logger::get("default"),
|
|
"Error, state string mismatch between fc and boost::msm for int value ${int_value}: boost::msm -> ${boost_string}, fc::reflect -> ${fc_string}",
|
|
("int_value", i)("boost_string", filled_state_names[i])("fc_string", fc_reflected_value_name));
|
|
++error_count;
|
|
}
|
|
}
|
|
catch (const fc::bad_cast_exception&)
|
|
{
|
|
fc_elog(fc::logger::get("default"),
|
|
"Error, no reflection for value ${int_value} in enum event_status",
|
|
("int_value", i));
|
|
++error_count;
|
|
}
|
|
}
|
|
if (error_count == 0)
|
|
dlog("Event status constants are correct");
|
|
else
|
|
wlog("There were ${count} errors in the event status constants", ("count", error_count));
|
|
|
|
return error_count == 0;
|
|
}
|
|
} // end anonymous namespace
|
|
|
|
event_status event_object::get_status() const
|
|
{
|
|
static bool state_constants_are_correct = verify_event_status_constants();
|
|
(void)&state_constants_are_correct;
|
|
event_state state = (event_state)my->state_machine.current_state()[0];
|
|
|
|
ddump((state));
|
|
|
|
switch (state)
|
|
{
|
|
case event_state::upcoming:
|
|
return event_status::upcoming;
|
|
case event_state::frozen_upcoming:
|
|
case event_state::frozen_in_progress:
|
|
return event_status::frozen;
|
|
case event_state::in_progress:
|
|
return event_status::in_progress;
|
|
case event_state::finished:
|
|
return event_status::finished;
|
|
case event_state::canceled:
|
|
return event_status::canceled;
|
|
case event_state::settled:
|
|
return event_status::settled;
|
|
default:
|
|
FC_THROW("Unexpected event state");
|
|
};
|
|
}
|
|
|
|
void event_object::pack_impl(std::ostream& stream) const
|
|
{
|
|
boost::archive::binary_oarchive oa(stream, boost::archive::no_header|boost::archive::no_codecvt|boost::archive::no_xml_tag_checking);
|
|
oa << my->state_machine;
|
|
}
|
|
|
|
void event_object::unpack_impl(std::istream& stream)
|
|
{
|
|
boost::archive::binary_iarchive ia(stream, boost::archive::no_header|boost::archive::no_codecvt|boost::archive::no_xml_tag_checking);
|
|
ia >> my->state_machine;
|
|
}
|
|
|
|
void event_object::on_upcoming_event(database& db)
|
|
{
|
|
my->state_machine.process_event(upcoming_event(db));
|
|
}
|
|
|
|
void event_object::on_in_progress_event(database& db)
|
|
{
|
|
my->state_machine.process_event(in_progress_event(db));
|
|
}
|
|
|
|
void event_object::on_frozen_event(database& db)
|
|
{
|
|
my->state_machine.process_event(frozen_event(db));
|
|
}
|
|
|
|
void event_object::on_finished_event(database& db)
|
|
{
|
|
my->state_machine.process_event(finished_event(db));
|
|
}
|
|
|
|
void event_object::on_canceled_event(database& db)
|
|
{
|
|
my->state_machine.process_event(canceled_event(db));
|
|
}
|
|
|
|
void event_object::on_betting_market_group_resolved(database& db, betting_market_group_id_type resolved_group, bool was_canceled)
|
|
{
|
|
my->state_machine.process_event(betting_market_group_resolved_event(db, resolved_group, was_canceled));
|
|
}
|
|
|
|
void event_object::on_betting_market_group_closed(database& db, betting_market_group_id_type closed_group)
|
|
{
|
|
my->state_machine.process_event(betting_market_group_closed_event(db, closed_group));
|
|
}
|
|
|
|
// These are the only statuses that can be explicitly set by witness operations. The missing
|
|
// status, 'settled', is automatically set when all of the betting market groups have
|
|
// settled/canceled
|
|
void event_object::dispatch_new_status(database& db, event_status new_status)
|
|
{
|
|
switch (new_status) {
|
|
case event_status::upcoming: // by witnesses to unfreeze a frozen event
|
|
on_upcoming_event(db);
|
|
break;
|
|
case event_status::in_progress: // by witnesses when the event starts
|
|
on_in_progress_event(db);
|
|
break;
|
|
case event_status::frozen: // by witnesses when the event needs to be frozen
|
|
on_frozen_event(db);
|
|
break;
|
|
case event_status::finished: // by witnesses when the event is complete
|
|
on_finished_event(db);
|
|
break;
|
|
case event_status::canceled: // by witnesses to cancel the event
|
|
on_canceled_event(db);
|
|
break;
|
|
default:
|
|
FC_THROW("Status ${new_status} cannot be explicitly set", ("new_status", new_status));
|
|
}
|
|
}
|
|
|
|
} } // graphene::chain
|
|
|
|
namespace fc {
|
|
// Manually reflect event_object to variant to properly reflect "state"
|
|
void to_variant(const graphene::chain::event_object& event_obj, fc::variant& v, uint32_t max_depth)
|
|
{
|
|
fc::mutable_variant_object o;
|
|
o("id", fc::variant(event_obj.id, max_depth))
|
|
("name", fc::variant(event_obj.name, max_depth))
|
|
("season", fc::variant(event_obj.season, max_depth))
|
|
("start_time", fc::variant(event_obj.start_time, max_depth))
|
|
("event_group_id", fc::variant(event_obj.event_group_id, max_depth))
|
|
("scores", fc::variant(event_obj.scores, max_depth))
|
|
("status", fc::variant(event_obj.get_status(), max_depth));
|
|
|
|
v = o;
|
|
}
|
|
|
|
// Manually reflect event_object to variant to properly reflect "state"
|
|
void from_variant(const fc::variant& v, graphene::chain::event_object& event_obj, uint32_t max_depth)
|
|
{
|
|
event_obj.id = v["id"].as<graphene::chain::event_id_type>( max_depth );
|
|
event_obj.name = v["name"].as<graphene::chain::internationalized_string_type>( max_depth );
|
|
event_obj.season = v["season"].as<graphene::chain::internationalized_string_type>( max_depth );
|
|
event_obj.start_time = v["start_time"].as<optional<time_point_sec> >( max_depth );
|
|
event_obj.event_group_id = v["event_group_id"].as<graphene::chain::event_group_id_type>( max_depth );
|
|
event_obj.scores = v["scores"].as<std::vector<std::string>>( max_depth );
|
|
graphene::chain::event_status status = v["status"].as<graphene::chain::event_status>( max_depth );
|
|
const_cast<int*>(event_obj.my->state_machine.current_state())[0] = (int)status;
|
|
}
|
|
} //end namespace fc
|
|
|
|
|