⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 randomgraph.c

📁 P2P模拟器
💻 C
字号:
/* * Copyright (c) 2003-2005 [NAMES_GO_HERE] *                    Massachusetts Institute of Technology *  * 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 "randomgraph.h"#include "p2psim/network.h"#include "p2psim/parse.h"#include "protocols/protocolfactory.h"#include <iostream>using namespace std;RandomGraph::RandomGraph(vector<string>*){}RandomGraph::~RandomGraph(){}voidRandomGraph::parse(ifstream &ifs){  string line;  while(getline(ifs,line)) {    vector<string> words = split(line);    // skip empty lines and commented lines    if(words.empty() || words[0][0] == '#')      continue;    // nodeid and at least one protocol    if(words.size() < 1) {      cerr << "RandomGraph: provide nodeid per line" << endl;      exit(1);    }    // node-id    IPAddress ipaddr = atoi(words[0].c_str());    if(!ipaddr){      cerr << "node-id 0 is illegal." << endl;      exit(1);    }    // add the node to the network    Node *p = ProtocolFactory::Instance()->create(ipaddr);    send(Network::Instance()->nodechan(), &p);    // remember the new node in DVGraph's tables    add_node(p->ip());  }  // Initalize links.  int i, j;  _links = (short *) malloc(sizeof(short) * _n * _n);  assert(_links);  for(i = 0; i < _n; i++)    for(j = 0; j < _n; j++)      links(i, j) = -1;  // Generate some random links to/from each node.  for(i = 0; i < _n; i++){    for(j = 0; j < degree; j++){      int k = random() % _n;          // pick a random node.      int m = random() % maxlatency;  // pick a random link metric.      links(i, k) = m;      links(k, i) = m;    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -