BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
balance_object.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cryptonomex, Inc., and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #pragma once
25 
27 
28 namespace graphene { namespace chain {
29 
30  class balance_object : public abstract_object<balance_object, protocol_ids, balance_object_type>
31  {
32  public:
33  bool is_vesting_balance()const
34  { return vesting_policy.valid(); }
36  {
37  return is_vesting_balance()? vesting_policy->get_allowed_withdraw({balance, now, {}})
38  : balance;
39  }
40 
45  asset_id_type asset_type()const { return balance.asset_id; }
46  };
47 
48  struct by_owner;
49 
53  using balance_multi_index_type = multi_index_container<
54  balance_object,
55  indexed_by<
56  ordered_unique< tag<by_id>, member< object, object_id_type, &object::id > >,
57  ordered_non_unique< tag<by_owner>, composite_key<
58  balance_object,
59  member<balance_object, address, &balance_object::owner>,
60  const_mem_fun<balance_object, asset_id_type, &balance_object::asset_type>
61  > >
62  >
63  >;
64 
69 } }
70 
72 
74 
fc::static_variant< linear_vesting_policy, cdd_vesting_policy, instant_vesting_policy >
FC_REFLECT_TYPENAME
FC_REFLECT_TYPENAME(fc::log_message)
graphene::chain::balance_object::vesting_policy
optional< linear_vesting_policy > vesting_policy
Definition: balance_object.hpp:43
graphene::chain::balance_object::is_vesting_balance
bool is_vesting_balance() const
Definition: balance_object.hpp:33
graphene::chain::balance_multi_index_type
multi_index_container< balance_object, indexed_by< ordered_unique< tag< by_id >, member< object, object_id_type, &object::id > >, ordered_non_unique< tag< by_owner >, composite_key< balance_object, member< balance_object, address, &balance_object::owner >, const_mem_fun< balance_object, asset_id_type, &balance_object::asset_type > > > > > balance_multi_index_type
Definition: balance_object.hpp:63
MAP_OBJECT_ID_TO_TYPE
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
graphene::chain::balance_object::asset_type
asset_id_type asset_type() const
Definition: balance_object.hpp:45
graphene::db::abstract_object
Definition: object.hpp:107
graphene::chain::balance_object::balance
asset balance
Definition: balance_object.hpp:42
fc::time_point_sec
Definition: time.hpp:74
graphene::protocol::asset::asset_id
asset_id_type asset_id
Definition: asset.hpp:37
vesting_balance_object.hpp
GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
graphene::chain::balance_object::available
asset available(fc::time_point_sec now) const
Definition: balance_object.hpp:35
graphene::chain::balance_object::owner
address owner
Definition: balance_object.hpp:41
graphene::chain::balance_object
Definition: balance_object.hpp:30
graphene::db::generic_index
Definition: generic_index.hpp:43
graphene::chain::balance_object::last_claim_date
time_point_sec last_claim_date
Definition: balance_object.hpp:44
fc::optional
provides stack-based nullable value similar to boost::optional
Definition: optional.hpp:20
graphene::protocol::asset
Definition: asset.hpp:31
graphene
Definition: api.cpp:48
graphene::protocol::address
a 160 bit hash of a public key
Definition: address.hpp:44