Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
fd3b4451
There was an error fetching the commit references. Please try again later.
Commit
fd3b4451
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
web_service: Implement JSON serialization of telemetry data.
parent
a634efa4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/web_service/telemetry_json.cpp
+80
-0
80 additions, 0 deletions
src/web_service/telemetry_json.cpp
src/web_service/telemetry_json.h
+45
-0
45 additions, 0 deletions
src/web_service/telemetry_json.h
with
125 additions
and
0 deletions
src/web_service/telemetry_json.cpp
+
80
−
0
View file @
fd3b4451
...
...
@@ -2,8 +2,88 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include
"common/assert.h"
#include
"core/settings.h"
#include
"web_service/telemetry_json.h"
#include
"web_service/web_backend.h"
namespace
WebService
{
TelemetryJson
::
TelemetryJson
()
{}
template
<
class
T
>
void
TelemetryJson
::
Serialize
(
Telemetry
::
FieldType
type
,
const
std
::
string
&
name
,
T
value
)
{
sections
[
static_cast
<
u8
>
(
type
)][
name
]
=
value
;
}
void
TelemetryJson
::
SerializeSection
(
Telemetry
::
FieldType
type
,
const
std
::
string
&
name
)
{
TopSection
()[
name
]
=
sections
[
static_cast
<
unsigned
>
(
type
)];
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
bool
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
double
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
float
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
u8
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
u16
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
u32
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
u64
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
s8
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
s16
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
s32
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
s64
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
std
::
string
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
());
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
const
char
*>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
std
::
string
(
field
.
GetValue
()));
}
void
TelemetryJson
::
Visit
(
const
Telemetry
::
Field
<
std
::
chrono
::
microseconds
>&
field
)
{
Serialize
(
field
.
GetType
(),
field
.
GetName
(),
field
.
GetValue
().
count
());
}
void
TelemetryJson
::
Complete
()
{
SerializeSection
(
Telemetry
::
FieldType
::
App
,
"App"
);
SerializeSection
(
Telemetry
::
FieldType
::
Session
,
"Session"
);
SerializeSection
(
Telemetry
::
FieldType
::
Performance
,
"Performance"
);
SerializeSection
(
Telemetry
::
FieldType
::
UserFeedback
,
"UserFeedback"
);
SerializeSection
(
Telemetry
::
FieldType
::
UserConfig
,
"UserConfig"
);
SerializeSection
(
Telemetry
::
FieldType
::
UserSystem
,
"UserSystem"
);
PostJson
(
Settings
::
values
.
telemetry_endpoint_url
,
TopSection
().
dump
());
}
}
// namespace WebService
This diff is collapsed.
Click to expand it.
src/web_service/telemetry_json.h
+
45
−
0
View file @
fd3b4451
...
...
@@ -4,6 +4,51 @@
#pragma once
#include
<array>
#include
<string>
#include
<json.hpp>
#include
"common/telemetry.h"
namespace
WebService
{
/**
* Implementation of VisitorInterface that serialized telemetry into JSON, and submits it to the
* Citra web service
*/
class
TelemetryJson
:
public
Telemetry
::
VisitorInterface
{
public:
TelemetryJson
();
~
TelemetryJson
()
=
default
;
void
Visit
(
const
Telemetry
::
Field
<
bool
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
double
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
float
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
u8
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
u16
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
u32
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
u64
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
s8
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
s16
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
s32
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
s64
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
std
::
string
>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
const
char
*>&
field
)
override
;
void
Visit
(
const
Telemetry
::
Field
<
std
::
chrono
::
microseconds
>&
field
)
override
;
void
Complete
()
override
;
private:
nlohmann
::
json
&
TopSection
()
{
return
sections
[
static_cast
<
u8
>
(
Telemetry
::
FieldType
::
None
)];
}
template
<
class
T
>
void
Serialize
(
Telemetry
::
FieldType
type
,
const
std
::
string
&
name
,
T
value
);
void
SerializeSection
(
Telemetry
::
FieldType
type
,
const
std
::
string
&
name
);
nlohmann
::
json
output
;
std
::
array
<
nlohmann
::
json
,
7
>
sections
;
};
}
// namespace WebService
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment