BitShares-Core  6.1.0
BitShares blockchain implementation and command-line interface 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<
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 
optional< linear_vesting_policy > vesting_policy
Definition: api.cpp:48
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
provides stack-based nullable value similar to boost::optional
Definition: optional.hpp:20
FC_REFLECT_TYPENAME(fc::log_message)
asset available(fc::time_point_sec now) const
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
asset_id_type asset_id
Definition: asset.hpp:37
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
a 160 bit hash of a public key
Definition: address.hpp:44
asset_id_type asset_type() const