2018-01-07 06:05:16 +01:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2014-07-23 15:03:52 +02:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
2014-03-03 23:07:58 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <atomic>
|
|
|
|
#include "net/net_utils_base.h"
|
2014-03-20 12:46:11 +01:00
|
|
|
#include "copyable_atomic.h"
|
2014-03-03 23:07:58 +01:00
|
|
|
|
|
|
|
namespace cryptonote
|
|
|
|
{
|
|
|
|
|
|
|
|
struct cryptonote_connection_context: public epee::net_utils::connection_context_base
|
|
|
|
{
|
2017-08-13 04:04:55 +02:00
|
|
|
cryptonote_connection_context(): m_state(state_before_handshake), m_remote_blockchain_height(0), m_last_response_height(0),
|
2018-02-04 14:11:34 +01:00
|
|
|
m_last_request_time(boost::posix_time::microsec_clock::universal_time()), m_callback_request_count(0), m_last_known_hash(crypto::null_hash) {}
|
2014-03-03 23:07:58 +01:00
|
|
|
|
|
|
|
enum state
|
|
|
|
{
|
2017-08-13 04:04:55 +02:00
|
|
|
state_before_handshake = 0, //default state
|
2014-03-03 23:07:58 +01:00
|
|
|
state_synchronizing,
|
2017-08-16 20:27:16 +02:00
|
|
|
state_standby,
|
2014-03-20 12:46:11 +01:00
|
|
|
state_idle,
|
2014-03-03 23:07:58 +01:00
|
|
|
state_normal
|
|
|
|
};
|
|
|
|
|
|
|
|
state m_state;
|
2018-04-16 01:16:02 +02:00
|
|
|
std::vector<crypto::hash> m_needed_objects;
|
2014-03-03 23:07:58 +01:00
|
|
|
std::unordered_set<crypto::hash> m_requested_objects;
|
|
|
|
uint64_t m_remote_blockchain_height;
|
|
|
|
uint64_t m_last_response_height;
|
2017-07-02 23:41:15 +02:00
|
|
|
boost::posix_time::ptime m_last_request_time;
|
2014-03-20 12:46:11 +01:00
|
|
|
epee::copyable_atomic m_callback_request_count; //in debug purpose: problem with double callback rise
|
2017-08-12 11:59:27 +02:00
|
|
|
crypto::hash m_last_known_hash;
|
2014-03-03 23:07:58 +01:00
|
|
|
//size_t m_score; TODO: add score calculations
|
|
|
|
};
|
2014-03-20 12:46:11 +01:00
|
|
|
|
|
|
|
inline std::string get_protocol_state_string(cryptonote_connection_context::state s)
|
|
|
|
{
|
|
|
|
switch (s)
|
|
|
|
{
|
2017-08-13 04:04:55 +02:00
|
|
|
case cryptonote_connection_context::state_before_handshake:
|
2018-04-28 20:55:23 +02:00
|
|
|
return "before_handshake";
|
2014-03-20 12:46:11 +01:00
|
|
|
case cryptonote_connection_context::state_synchronizing:
|
2018-04-28 20:55:23 +02:00
|
|
|
return "synchronizing";
|
2017-08-16 20:27:16 +02:00
|
|
|
case cryptonote_connection_context::state_standby:
|
2018-04-28 20:55:23 +02:00
|
|
|
return "standby";
|
2014-03-20 12:46:11 +01:00
|
|
|
case cryptonote_connection_context::state_idle:
|
2018-04-28 20:55:23 +02:00
|
|
|
return "idle";
|
2014-03-20 12:46:11 +01:00
|
|
|
case cryptonote_connection_context::state_normal:
|
2018-04-28 20:55:23 +02:00
|
|
|
return "normal";
|
2014-03-20 12:46:11 +01:00
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-03 23:07:58 +01:00
|
|
|
}
|