/* * 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. */ #include #include #include #include namespace graphene { namespace chain { fork_database::fork_database() { } void fork_database::reset() { _head.reset(); _index.clear(); } void fork_database::pop_block() { FC_ASSERT( _head, "no blocks to pop" ); auto prev = _head->prev.lock(); FC_ASSERT( prev, "poping block would leave head block null" ); _head = prev; } void fork_database::start_block(signed_block b) { auto item = std::make_shared(std::move(b)); _index.insert(item); _head = item; } /** * Pushes the block into the fork database and caches it if it doesn't link * */ shared_ptr fork_database::push_block(const signed_block& b) { auto item = std::make_shared(b); try { _push_block(item); } catch ( const unlinkable_block_exception& e ) { wlog( "Pushing block to fork database that failed to link: ${id}, ${num}", ("id",b.id())("num",b.block_num()) ); wlog( "Head: ${num}, ${id}", ("num",_head->data.block_num())("id",_head->data.id()) ); throw; _unlinked_index.insert( item ); } return _head; } void fork_database::_push_block(const item_ptr& item) { if( _head ) // make sure the block is within the range that we are caching { FC_ASSERT( item->num > std::max( 0, int64_t(_head->num) - (_max_size) ), "attempting to push a block that is too old", ("item->num",item->num)("head",_head->num)("max_size",_max_size)); } if( _head && item->previous_id() != block_id_type() ) { auto& index = _index.get(); auto itr = index.find(item->previous_id()); GRAPHENE_ASSERT(itr != index.end(), unlinkable_block_exception, "block does not link to known chain"); FC_ASSERT(!(*itr)->invalid); item->prev = *itr; } _index.insert(item); if( !_head ) _head = item; else if( item->num > _head->num ) { _head = item; uint32_t min_num = _head->num - std::min( _max_size, _head->num ); // ilog( "min block in fork DB ${n}, max_size: ${m}", ("n",min_num)("m",_max_size) ); auto& num_idx = _index.get(); while( num_idx.size() && (*num_idx.begin())->num < min_num ) num_idx.erase( num_idx.begin() ); _unlinked_index.get().erase(_head->num - _max_size); } //_push_next( item ); } /** * Iterate through the unlinked cache and insert anything that * links to the newly inserted item. This will start a recursive * set of calls performing a depth-first insertion of pending blocks as * _push_next(..) calls _push_block(...) which will in turn call _push_next */ void fork_database::_push_next( const item_ptr& new_item ) { auto& prev_idx = _unlinked_index.get(); auto itr = prev_idx.find( new_item->id ); while( itr != prev_idx.end() ) { auto tmp = *itr; prev_idx.erase( itr ); _push_block( tmp ); itr = prev_idx.find( new_item->id ); } } void fork_database::set_max_size( uint32_t s ) { _max_size = s; if( !_head ) return; { /// index auto& by_num_idx = _index.get(); auto itr = by_num_idx.begin(); while( itr != by_num_idx.end() ) { if( (*itr)->num < std::max(int64_t(0),int64_t(_head->num) - _max_size) ) by_num_idx.erase(itr); else break; itr = by_num_idx.begin(); } } { /// unlinked_index auto& by_num_idx = _unlinked_index.get(); auto itr = by_num_idx.begin(); while( itr != by_num_idx.end() ) { if( (*itr)->num < std::max(int64_t(0),int64_t(_head->num) - _max_size) ) by_num_idx.erase(itr); else break; itr = by_num_idx.begin(); } } } bool fork_database::is_known_block(const block_id_type& id)const { auto& index = _index.get(); auto itr = index.find(id); if( itr != index.end() ) return true; auto& unlinked_index = _unlinked_index.get(); auto unlinked_itr = unlinked_index.find(id); return unlinked_itr != unlinked_index.end(); } item_ptr fork_database::fetch_block(const block_id_type& id)const { auto& index = _index.get(); auto itr = index.find(id); if( itr != index.end() ) return *itr; auto& unlinked_index = _unlinked_index.get(); auto unlinked_itr = unlinked_index.find(id); if( unlinked_itr != unlinked_index.end() ) return *unlinked_itr; return item_ptr(); } vector fork_database::fetch_block_by_number(uint32_t num)const { vector result; auto itr = _index.get().find(num); while( itr != _index.get().end() ) { if( (*itr)->num == num ) result.push_back( *itr ); else break; ++itr; } return result; } pair fork_database::fetch_branch_from(block_id_type first, block_id_type second)const { try { // This function gets a branch (i.e. vector) leading // back to the most recent common ancestor. pair result; auto first_branch_itr = _index.get().find(first); FC_ASSERT(first_branch_itr != _index.get().end()); auto first_branch = *first_branch_itr; auto second_branch_itr = _index.get().find(second); FC_ASSERT(second_branch_itr != _index.get().end()); auto second_branch = *second_branch_itr; while( first_branch->data.block_num() > second_branch->data.block_num() ) { result.first.push_back(first_branch); first_branch = first_branch->prev.lock(); FC_ASSERT(first_branch); } while( second_branch->data.block_num() > first_branch->data.block_num() ) { result.second.push_back( second_branch ); second_branch = second_branch->prev.lock(); FC_ASSERT(second_branch); } while( first_branch->data.previous != second_branch->data.previous ) { result.first.push_back(first_branch); result.second.push_back(second_branch); first_branch = first_branch->prev.lock(); FC_ASSERT(first_branch); second_branch = second_branch->prev.lock(); FC_ASSERT(second_branch); } if( first_branch && second_branch ) { result.first.push_back(first_branch); result.second.push_back(second_branch); } return result; } FC_CAPTURE_AND_RETHROW( (first)(second) ) } void fork_database::set_head(shared_ptr h) { _head = h; } void fork_database::remove(block_id_type id) { _index.get().erase(id); } } } // graphene::chain