group.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1997 by the University of Southern California
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License,
  6.  * version 2, as published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License along
  14.  * with this program; if not, write to the Free Software Foundation, Inc.,
  15.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  16.  *
  17.  *
  18.  * The copyright of this module includes the following
  19.  * linking-with-specific-other-licenses addition:
  20.  *
  21.  * In addition, as a special exception, the copyright holders of
  22.  * this module give you permission to combine (via static or
  23.  * dynamic linking) this module with free software programs or
  24.  * libraries that are released under the GNU LGPL and with code
  25.  * included in the standard release of ns-2 under the Apache 2.0
  26.  * license or under otherwise-compatible licenses with advertising
  27.  * requirements (or modified versions of such code, with unchanged
  28.  * license).  You may copy and distribute such a system following the
  29.  * terms of the GNU GPL for this module and the licenses of the
  30.  * other code concerned, provided that you include the source code of
  31.  * that other code when and as the GNU GPL requires distribution of
  32.  * source code.
  33.  *
  34.  * Note that people who make modified versions of this module
  35.  * are not obligated to grant this special exception for their
  36.  * modified versions; it is their choice whether to do so.  The GNU
  37.  * General Public License gives permission to release a modified
  38.  * version without this exception; this exception also makes it
  39.  * possible to release a modified version which carries forward this
  40.  * exception.
  41.  *
  42.  * $Header: /cvsroot/nsnam/nam-1/group.cc,v 1.5 2007/02/12 07:08:43 tom_henderson Exp $
  43.  */
  44. #include <string.h>
  45. #include "group.h"
  46. Group::Group(const char *name, unsigned int addr) :
  47. Animation(0, 0), size_(0), addr_(addr), name_(0)
  48. {
  49. if (name != NULL) 
  50. if (*name != 0) {
  51. name_ = new char[strlen(name)+1];
  52. strcpy(name_, name);
  53. }
  54. nodeHash_ = new Tcl_HashTable;
  55. Tcl_InitHashTable(nodeHash_, TCL_ONE_WORD_KEYS);
  56. }
  57. Group::~Group()
  58. {
  59. if (name_ != NULL)
  60. delete name_;
  61. Tcl_DeleteHashTable(nodeHash_);
  62. delete nodeHash_;
  63. }
  64. int Group::join(int id)
  65. {
  66. int newEntry = 1;
  67. Tcl_HashEntry *he = Tcl_CreateHashEntry(nodeHash_, (const char *)id, 
  68. &newEntry);
  69. if (he == NULL)
  70. return -1;
  71. if (newEntry) {
  72. Tcl_SetHashValue(he, (ClientData)id);
  73. size_++;
  74. }
  75. return 0;
  76. }
  77. void Group::leave(int id)
  78. {
  79. Tcl_HashEntry *he = Tcl_FindHashEntry(nodeHash_, (const char *)id);
  80. if (he != NULL) {
  81. Tcl_DeleteHashEntry(he);
  82. size_--;
  83. }
  84. }
  85. // Assume mbrs has at least size_ elements
  86. void Group::get_members(int *mbrs)
  87. {
  88. Tcl_HashEntry *he;
  89. Tcl_HashSearch hs;
  90. int i = 0;
  91. for (he = Tcl_FirstHashEntry(nodeHash_, &hs);
  92.      he != NULL;
  93.      he = Tcl_NextHashEntry(&hs), i++) 
  94. mbrs[i] = *Tcl_GetHashValue(he);
  95. }
  96. void Group::draw(View * nv, double now) {
  97. // Do nothing for now. Will add group visualization later.
  98. }