~ubuntu-branches/ubuntu/quantal/ns3/quantal

« back to all changes in this revision

Viewing changes to ns-3.13/src/energy/helper/energy-source-container.cc

  • Committer: Package Import Robot
  • Author(s): YunQiang Su, Aron Xu, YunQiang Su, Upstream
  • Date: 2012-01-06 00:35:42 UTC
  • mfrom: (10.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120106003542-vcn5g03mhapm991h
Tags: 3.13+dfsg-1
[ Aron Xu ]:
        add tag binary and binary-indep, 
  for not build doc when --binary-arch (Closes: #654493).
[ YunQiang Su ]
        add waf 1.5/1.6 source to debian directory, 
  and build waf from there (Closes: #642217).
[ Upstream ]
  Successfully link with --as-needed option (Closes: #642225).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
 
2
/*
 
3
 * Copyright (c) 2008 INRIA
 
4
 * Copyright (c) 2010 Network Security Lab, University of Washington, Seattle.
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License version 2 as
 
8
 * published by the Free Software Foundation;
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
 
20
 *          Sidharth Nabar <snabar@uw.edu>, He Wu <mdzz@u.washington.edu>
 
21
 */
 
22
 
 
23
#include "energy-source-container.h"
 
24
#include "ns3/names.h"
 
25
 
 
26
namespace ns3 {
 
27
 
 
28
TypeId
 
29
EnergySourceContainer::GetTypeId (void)
 
30
{
 
31
  static TypeId tid = TypeId ("ns3::EnergySourceContainer")
 
32
    .SetParent<Object> ()
 
33
    .AddConstructor<EnergySourceContainer> ()
 
34
  ;
 
35
  return tid;
 
36
}
 
37
 
 
38
EnergySourceContainer::EnergySourceContainer ()
 
39
{
 
40
}
 
41
 
 
42
EnergySourceContainer::~EnergySourceContainer ()
 
43
{
 
44
}
 
45
 
 
46
EnergySourceContainer::EnergySourceContainer (Ptr<EnergySource> source)
 
47
{
 
48
  NS_ASSERT (source != NULL);
 
49
  m_sources.push_back (source);
 
50
}
 
51
 
 
52
EnergySourceContainer::EnergySourceContainer (std::string sourceName)
 
53
{
 
54
  Ptr<EnergySource> source = Names::Find<EnergySource> (sourceName);
 
55
  NS_ASSERT (source != NULL);
 
56
  m_sources.push_back (source);
 
57
}
 
58
 
 
59
EnergySourceContainer::EnergySourceContainer (const EnergySourceContainer &a,
 
60
                                              const EnergySourceContainer &b)
 
61
{
 
62
  *this = a;
 
63
  Add (b);
 
64
}
 
65
 
 
66
EnergySourceContainer::Iterator
 
67
EnergySourceContainer::Begin (void) const
 
68
{
 
69
  return m_sources.begin ();
 
70
}
 
71
 
 
72
EnergySourceContainer::Iterator
 
73
EnergySourceContainer::End (void) const
 
74
{
 
75
  return m_sources.end ();
 
76
}
 
77
 
 
78
uint32_t
 
79
EnergySourceContainer::GetN (void) const
 
80
{
 
81
  return m_sources.size ();
 
82
}
 
83
 
 
84
Ptr<EnergySource>
 
85
EnergySourceContainer::Get (uint32_t i) const
 
86
{
 
87
  return m_sources[i];
 
88
}
 
89
 
 
90
void
 
91
EnergySourceContainer::Add (EnergySourceContainer container)
 
92
{
 
93
  for (Iterator i = container.Begin (); i != container.End (); i++)
 
94
    {
 
95
      m_sources.push_back (*i);
 
96
    }
 
97
}
 
98
 
 
99
void
 
100
EnergySourceContainer::Add (Ptr<EnergySource> source)
 
101
{
 
102
  NS_ASSERT (source != NULL);
 
103
  m_sources.push_back (source);
 
104
}
 
105
 
 
106
void
 
107
EnergySourceContainer::Add (std::string sourceName)
 
108
{
 
109
  Ptr<EnergySource> source = Names::Find<EnergySource> (sourceName);
 
110
  NS_ASSERT (source != NULL);
 
111
  m_sources.push_back (source);
 
112
}
 
113
 
 
114
/*
 
115
 * Private functions start here.
 
116
 */
 
117
 
 
118
void
 
119
EnergySourceContainer::DoDispose (void)
 
120
{
 
121
  // call Object::Dispose for all EnergySource objects
 
122
  for (std::vector< Ptr<EnergySource> >::iterator i = m_sources.begin ();
 
123
       i != m_sources.end (); i++)
 
124
    {
 
125
      (*i)->DisposeDeviceModels ();
 
126
      (*i)->Dispose ();
 
127
    }
 
128
  m_sources.clear ();
 
129
}
 
130
 
 
131
void
 
132
EnergySourceContainer::DoStart (void)
 
133
{
 
134
  // call Object::Start for all EnergySource objects
 
135
  for (std::vector< Ptr<EnergySource> >::iterator i = m_sources.begin ();
 
136
       i != m_sources.end (); i++)
 
137
    {
 
138
      (*i)->Start ();
 
139
      (*i)->StartDeviceModels ();
 
140
    }
 
141
}
 
142
 
 
143
} // namespace ns3