A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
sqlite-data-output.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008 Drexel University
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Joe Kopena (tjkopena@cs.drexel.edu)
19
*/
20
21
#ifndef SQLITE_DATA_OUTPUT_H
22
#define SQLITE_DATA_OUTPUT_H
23
24
#include "ns3/nstime.h"
25
26
#include "
data-output-interface.h
"
27
28
#define STATS_HAS_SQLITE3
29
30
struct
sqlite3;
31
32
namespace
ns3
{
33
34
//------------------------------------------------------------
35
//--------------------------------------------
41
class
SqliteDataOutput
:
public
DataOutputInterface
{
42
public
:
43
SqliteDataOutput
();
44
virtual
~SqliteDataOutput
();
45
46
virtual
void
Output
(
DataCollector
&dc);
47
48
protected
:
49
virtual
void
DoDispose
();
50
51
private
:
57
class
SqliteOutputCallback
:
public
DataOutputCallback
{
58
public
:
64
SqliteOutputCallback
(
Ptr<SqliteDataOutput>
owner, std::string run);
65
72
void
OutputStatistic
(std::string key,
73
std::string
variable
,
74
const
StatisticalSummary
*statSum);
75
82
void
OutputSingleton
(std::string key,
83
std::string variable,
84
int
val);
85
92
void
OutputSingleton
(std::string key,
93
std::string variable,
94
uint32_t val);
95
102
void
OutputSingleton
(std::string key,
103
std::string variable,
104
double
val);
105
112
void
OutputSingleton
(std::string key,
113
std::string variable,
114
std::string val);
115
122
void
OutputSingleton
(std::string key,
123
std::string variable,
124
Time
val);
125
126
private
:
127
Ptr<SqliteDataOutput>
m_owner
;
128
std::string
m_runLabel
;
129
130
// end class SqliteOutputCallback
131
};
132
133
134
sqlite3 *
m_db
;
135
141
int
Exec
(std::string exe);
142
143
// end class SqliteDataOutput
144
};
145
146
// end namespace ns3
147
};
148
149
150
#endif
/* SQLITE_DATA_OUTPUT_H */
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:95
ns3::SqliteDataOutput::SqliteOutputCallback::m_owner
Ptr< SqliteDataOutput > m_owner
the instance this object belongs to
Definition:
sqlite-data-output.h:127
ns3::DataOutputInterface
Abstract Data Output Interface class s.
Definition:
data-output-interface.h:39
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:73
ns3::SqliteDataOutput::~SqliteDataOutput
virtual ~SqliteDataOutput()
Definition:
sqlite-data-output.cc:44
ns3::StatisticalSummary
Abstract class for calculating statistical data.
Definition:
data-calculator.h:46
ns3::SqliteDataOutput::SqliteOutputCallback
Class to generate OMNeT output.
Definition:
sqlite-data-output.h:57
anonymous_namespace{print-introspected-doxygen.cc}::variable
std::string variable
variable or class member
Definition:
print-introspected-doxygen.cc:74
ns3::SqliteDataOutput::SqliteOutputCallback::SqliteOutputCallback
SqliteOutputCallback(Ptr< SqliteDataOutput > owner, std::string run)
Constructor.
Definition:
sqlite-data-output.cc:153
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::SqliteDataOutput::SqliteOutputCallback::m_runLabel
std::string m_runLabel
Run label.
Definition:
sqlite-data-output.h:128
ns3::SqliteDataOutput::SqliteDataOutput
SqliteDataOutput()
Definition:
sqlite-data-output.cc:38
ns3::SqliteDataOutput
Outputs data in a format compatible with SQLite.
Definition:
sqlite-data-output.h:41
ns3::DataOutputCallback
Callback class for the DataOutput classes.
Definition:
data-output-interface.h:75
data-output-interface.h
ns3::SqliteDataOutput::SqliteOutputCallback::OutputSingleton
void OutputSingleton(std::string key, std::string variable, int val)
Generates a single data output.
Definition:
sqlite-data-output.cc:186
ns3::DataCollector
Collects data.
Definition:
data-collector.h:49
ns3::SqliteDataOutput::DoDispose
virtual void DoDispose()
Destructor implementation.
Definition:
sqlite-data-output.cc:49
ns3::SqliteDataOutput::m_db
sqlite3 * m_db
pointer to the SQL database
Definition:
sqlite-data-output.h:134
ns3::SqliteDataOutput::SqliteOutputCallback::OutputStatistic
void OutputStatistic(std::string key, std::string variable, const StatisticalSummary *statSum)
Generates data statistics.
Definition:
sqlite-data-output.cc:165
ns3::SqliteDataOutput::Exec
int Exec(std::string exe)
Execute a sqlite3 query.
Definition:
sqlite-data-output.cc:58
ns3::SqliteDataOutput::Output
virtual void Output(DataCollector &dc)
Outputs information from the provided DataCollector.
Definition:
sqlite-data-output.cc:104
src
stats
model
sqlite-data-output.h
Generated on Thu Feb 5 2015 18:33:53 for ns-3 by
1.8.9.1