Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
Functions
a
c
d
e
g
h
i
l
m
n
o
p
r
s
t
u
v
~
Variables
a
b
c
d
e
f
i
l
m
n
p
r
t
u
v
w
Typedefs
Related Functions
Files
File List
File Members
All
Functions
src
profile_database.cpp
Go to the documentation of this file.
1
#include <
swri_profiler_tools/profile_database.h
>
2
#include <QDebug>
3
4
namespace
swri_profiler_tools
5
{
6
ProfileDatabase::ProfileDatabase
()
7
{
8
}
9
10
ProfileDatabase::~ProfileDatabase
()
11
{
12
for
(
auto
&item :
profiles_
) {
13
delete
item.second;
14
}
15
}
16
17
int
ProfileDatabase::createProfile
(
const
QString &name)
18
{
19
// Find an available key
20
int
key =
profiles_
.size();
21
while
(
profiles_
.count(key) != 0) { key++; }
22
23
// We are creating a new key
24
profiles_
[key] =
new
Profile
();
25
profiles_list_
.push_back(key);
26
Profile
&
profile
= *(
profiles_
.at(key));
27
profile
.
initialize
(key, name);
28
29
// We rebroadcast the individual profile signals in bulk so that
30
// other objects can just connect to us and not deal with
31
// adding/removing connections as profiles are added or deleted.
32
QObject::connect(&
profile
, SIGNAL(
profileModified
(
int
)),
33
this
, SIGNAL(
profileModified
(
int
)));
34
QObject::connect(&
profile
, SIGNAL(
nodesAdded
(
int
)),
35
this
, SIGNAL(
nodesAdded
(
int
)));
36
QObject::connect(&
profile
, SIGNAL(
dataAdded
(
int
)),
37
this
, SIGNAL(
dataAdded
(
int
)));
38
39
Q_EMIT
profileAdded
(key);
40
return
key;
41
}
42
43
Profile
&
ProfileDatabase::profile
(
int
key)
44
{
45
if
(
profiles_
.count(key) == 0) {
46
qWarning(
"Invalid profile key: %d"
, key);
47
return
invalid_profile_
;
48
}
49
50
return
*(
profiles_
.at(key));
51
}
52
53
const
Profile
&
ProfileDatabase::profile
(
int
key)
const
54
{
55
if
(
profiles_
.count(key) == 0) {
56
qWarning(
"Invalid profile key: %d"
, key);
57
return
invalid_profile_
;
58
}
59
60
return
*(
profiles_
.at(key));
61
}
62
}
// namespace swri_profiler_tools
swri_profiler_tools::ProfileDatabase::dataAdded
void dataAdded(int profile_key)
swri_profiler_tools::ProfileDatabase::ProfileDatabase
ProfileDatabase()
Definition:
profile_database.cpp:6
swri_profiler_tools::ProfileDatabase::profileAdded
void profileAdded(int profile_key)
swri_profiler_tools::Profile::initialize
void initialize(int profile_key, const QString &name)
Definition:
profile.cpp:63
swri_profiler_tools::Profile
Definition:
profile.h:141
profile_database.h
swri_profiler_tools::ProfileDatabase::profiles_list_
std::vector< int > profiles_list_
Definition:
profile_database.h:53
swri_profiler_tools::ProfileDatabase::nodesAdded
void nodesAdded(int profile_key)
swri_profiler_tools::ProfileDatabase::~ProfileDatabase
~ProfileDatabase()
Definition:
profile_database.cpp:10
swri_profiler_tools::ProfileDatabase::profile
Profile & profile(int key)
Definition:
profile_database.cpp:43
swri_profiler_tools::ProfileDatabase::profiles_
std::unordered_map< int, Profile * > profiles_
Definition:
profile_database.h:51
swri_profiler_tools::ProfileDatabase::profileModified
void profileModified(int profile_key)
swri_profiler_tools::ProfileDatabase::createProfile
int createProfile(const QString &name)
Definition:
profile_database.cpp:17
swri_profiler_tools
Definition:
database_key.h:34
swri_profiler_tools::ProfileDatabase::invalid_profile_
Profile invalid_profile_
Definition:
profile_database.h:44
swri_profiler_tools
Author(s):
autogenerated on Wed Mar 2 2022 01:06:28