/* * Copyright (c) 2015 Cryptonomex, Inc., 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. */ #pragma once #include #include #include #include #include #include #include #include namespace graphene { namespace chain { using namespace graphene::db; using boost::multi_index_container; using namespace boost::multi_index; /** * The purpose of this object is to enable the detection of duplicate transactions. When a transaction is included * in a block a transaction_object is added. At the end of block processing all transaction_objects that have * expired can be removed from the index. */ class transaction_object : public abstract_object { public: static const uint8_t space_id = implementation_ids; static const uint8_t type_id = impl_transaction_object_type; signed_transaction trx; transaction_id_type trx_id; time_point_sec get_expiration()const { return trx.expiration; } }; struct by_expiration; struct by_id; struct by_trx_id; typedef multi_index_container< transaction_object, indexed_by< ordered_unique< tag, member< object, object_id_type, &object::id > >, hashed_unique< tag, BOOST_MULTI_INDEX_MEMBER(transaction_object, transaction_id_type, trx_id), std::hash >, ordered_non_unique< tag, const_mem_fun > > > transaction_multi_index_type; typedef generic_index transaction_index; } } FC_REFLECT_DERIVED( graphene::chain::transaction_object, (graphene::db::object), (trx)(trx_id) ) GRAPHENE_EXTERNAL_SERIALIZATION( extern, graphene::chain::transaction_object )