BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
transaction_history_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 
28 
29 #include <boost/multi_index_container.hpp>
30 #include <boost/multi_index/member.hpp>
31 #include <boost/multi_index/ordered_index.hpp>
32 #include <boost/multi_index/hashed_index.hpp>
33 #include <boost/multi_index/mem_fun.hpp>
34 
35 namespace graphene { namespace chain {
36  using namespace graphene::db;
37  using boost::multi_index_container;
38  using namespace boost::multi_index;
44  class transaction_history_object : public abstract_object<transaction_history_object,
45  implementation_ids, impl_transaction_history_object_type>
46  {
47  public:
50 
51  time_point_sec get_expiration()const { return trx.expiration; }
52  };
53 
54  struct by_expiration;
55  struct by_trx_id;
56  typedef multi_index_container<
58  indexed_by<
59  ordered_unique< tag<by_id>, member< object, object_id_type, &object::id > >,
60  hashed_unique< tag<by_trx_id>, BOOST_MULTI_INDEX_MEMBER(transaction_history_object, transaction_id_type, trx_id),
61  std::hash<transaction_id_type> >,
62  ordered_non_unique< tag<by_expiration>, const_mem_fun< transaction_history_object, time_point_sec,
64  >
66 
68 } }
69 
71 
73 
graphene::chain::transaction_history_object::trx
signed_transaction trx
Definition: transaction_history_object.hpp:48
FC_REFLECT_TYPENAME
FC_REFLECT_TYPENAME(fc::log_message)
generic_index.hpp
graphene::protocol::transaction::expiration
fc::time_point_sec expiration
Definition: transaction.hpp:87
MAP_OBJECT_ID_TO_TYPE
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
graphene::db::abstract_object
Definition: object.hpp:107
graphene::protocol::signed_transaction
adds a signature to a transaction
Definition: transaction.hpp:134
graphene::chain::transaction_history_object
Definition: transaction_history_object.hpp:44
fc::time_point_sec
Definition: time.hpp:74
transaction.hpp
fc::ripemd160
Definition: ripemd160.hpp:11
GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
graphene::chain::transaction_multi_index_type
multi_index_container< transaction_history_object, indexed_by< ordered_unique< tag< by_id >, member< object, object_id_type, &object::id > >, hashed_unique< tag< by_trx_id >, BOOST_MULTI_INDEX_MEMBER(transaction_history_object, transaction_id_type, trx_id), std::hash< transaction_id_type > >, ordered_non_unique< tag< by_expiration >, const_mem_fun< transaction_history_object, time_point_sec, &transaction_history_object::get_expiration > > > > transaction_multi_index_type
Definition: transaction_history_object.hpp:55
graphene::chain::transaction_history_object::trx_id
transaction_id_type trx_id
Definition: transaction_history_object.hpp:49
graphene::chain::transaction_index
generic_index< transaction_history_object, transaction_multi_index_type > transaction_index
Definition: transaction_history_object.hpp:67
graphene::chain::transaction_history_object::get_expiration
time_point_sec get_expiration() const
Definition: transaction_history_object.hpp:51
graphene::db::generic_index
Definition: generic_index.hpp:43
graphene::db
Definition: generic_index.hpp:31
graphene
Definition: api.cpp:48