akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014 University of Memphis, |
| 4 | * Regents of the University of California |
| 5 | * |
| 6 | * This file is part of NLSR (Named-data Link State Routing). |
| 7 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 8 | * |
| 9 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 10 | * of the GNU General Public License as published by the Free Software Foundation, |
| 11 | * either version 3 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 14 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 15 | * PURPOSE. See the GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 19 | * |
| 20 | * \author A K M Mahmudul Hoque <ahoque1@memphis.edu> |
| 21 | * |
| 22 | **/ |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 23 | #include <iostream> |
| 24 | #include <string> |
| 25 | #include <cmath> |
| 26 | #include <limits> |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 27 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 28 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 29 | #include "adjacent.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 30 | #include "logger.hpp" |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 31 | |
| 32 | namespace nlsr { |
| 33 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 34 | INIT_LOGGER("Adjacent"); |
| 35 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 36 | using namespace std; |
| 37 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 38 | const float Adjacent::DEFAULT_LINK_COST = 10.0; |
| 39 | |
| 40 | Adjacent::Adjacent() |
| 41 | : m_name() |
| 42 | , m_connectingFaceUri() |
| 43 | , m_linkCost(DEFAULT_LINK_COST) |
| 44 | , m_status(ADJACENT_STATUS_INACTIVE) |
| 45 | , m_interestTimedOutNo(0) |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame^] | 46 | , m_faceId(0) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 47 | { |
| 48 | } |
| 49 | |
| 50 | Adjacent::Adjacent(const ndn::Name& an) |
| 51 | : m_name(an) |
| 52 | , m_connectingFaceUri() |
| 53 | , m_linkCost(DEFAULT_LINK_COST) |
| 54 | , m_status(ADJACENT_STATUS_INACTIVE) |
| 55 | , m_interestTimedOutNo(0) |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame^] | 56 | , m_faceId(0) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 57 | { |
| 58 | } |
| 59 | |
| 60 | Adjacent::Adjacent(const ndn::Name& an, const std::string& cfu, double lc, |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame^] | 61 | uint32_t s, uint32_t iton, uint64_t faceId) |
| 62 | : m_name(an) |
| 63 | , m_connectingFaceUri(cfu) |
| 64 | , m_linkCost(lc) |
| 65 | , m_status(s) |
| 66 | , m_interestTimedOutNo(iton) |
| 67 | , m_faceId(faceId) |
| 68 | { |
| 69 | |
| 70 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 71 | |
| 72 | bool |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 73 | Adjacent::operator==(const Adjacent& adjacent) const |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 74 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 75 | return (m_name == adjacent.getName()) && |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 76 | (m_connectingFaceUri == adjacent.getConnectingFaceUri()) && |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 77 | (std::abs(m_linkCost - adjacent.getLinkCost()) < |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 78 | std::numeric_limits<double>::epsilon()) ; |
| 79 | } |
| 80 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 81 | void |
| 82 | Adjacent::writeLog() |
| 83 | { |
| 84 | _LOG_DEBUG("Adjacent : " << m_name); |
| 85 | _LOG_DEBUG("Connecting FaceUri: " << m_connectingFaceUri); |
| 86 | _LOG_DEBUG("Link Cost: " << m_linkCost); |
| 87 | _LOG_DEBUG("Status: " << m_status); |
| 88 | _LOG_DEBUG("Interest Timed out: " << m_interestTimedOutNo); |
| 89 | } |
| 90 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 91 | } //namespace nlsr |