1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
#![cfg(feature = "with_gecko")]
use crate::pings;
use nsstring::{nsACString, nsCString};
use thin_vec::ThinVec;
use uuid::Uuid;
#[macro_use]
mod macros;
mod event;
#[no_mangle]
pub unsafe extern "C" fn fog_counter_add(id: u32, amount: i32) {
let metric = metric_get!(COUNTER_MAP, id);
metric.add(amount);
}
#[no_mangle]
pub unsafe extern "C" fn fog_counter_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(COUNTER_MAP, id, storage_name)
}
#[no_mangle]
pub unsafe extern "C" fn fog_counter_test_get_value(id: u32, storage_name: &nsACString) -> i32 {
test_get!(COUNTER_MAP, id, storage_name)
}
#[no_mangle]
pub unsafe extern "C" fn fog_timespan_start(id: u32) {
let metric = metric_get!(TIMESPAN_MAP, id);
metric.start();
}
#[no_mangle]
pub unsafe extern "C" fn fog_timespan_stop(id: u32) {
let metric = metric_get!(TIMESPAN_MAP, id);
metric.stop();
}
#[no_mangle]
pub unsafe extern "C" fn fog_timespan_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(TIMESPAN_MAP, id, storage_name)
}
#[no_mangle]
pub unsafe extern "C" fn fog_timespan_test_get_value(id: u32, storage_name: &nsACString) -> u64 {
test_get!(TIMESPAN_MAP, id, storage_name)
}
#[no_mangle]
pub unsafe extern "C" fn fog_boolean_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(BOOLEAN_MAP, id, storage_name)
}
#[no_mangle]
pub unsafe extern "C" fn fog_boolean_test_get_value(id: u32, storage_name: &nsACString) -> bool {
test_get!(BOOLEAN_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_boolean_set(id: u32, value: bool) {
let metric = metric_get!(BOOLEAN_MAP, id);
metric.set(value);
}
// The String functions are custom because test_get needs to use an outparam.
// If we can make test_get optional, we can go back to using the macro to
// generate the rest of the functions, or something.
#[no_mangle]
pub extern "C" fn fog_string_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(STRING_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_string_test_get_value(
id: u32,
storage_name: &nsACString,
value: &mut nsACString,
) {
let val = test_get!(STRING_MAP, id, storage_name);
value.assign(&val);
}
#[no_mangle]
pub extern "C" fn fog_string_set(id: u32, value: &nsACString) {
let metric = metric_get!(STRING_MAP, id);
metric.set(value.to_utf8());
}
// String List Functions:
#[no_mangle]
pub extern "C" fn fog_string_list_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(STRING_LIST_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_string_list_test_get_value(
id: u32,
storage_name: &nsACString,
value: &mut ThinVec<nsCString>,
) {
let val = test_get!(STRING_LIST_MAP, id, storage_name);
for v in val {
value.push(v.into());
}
}
#[no_mangle]
pub extern "C" fn fog_string_list_add(id: u32, value: &nsACString) {
let metric = metric_get!(STRING_LIST_MAP, id);
metric.add(value.to_utf8());
}
#[no_mangle]
pub extern "C" fn fog_string_list_set(id: u32, value: &ThinVec<nsCString>) {
let metric = metric_get!(STRING_LIST_MAP, id);
let value = value.iter().map(|s| s.to_utf8().into()).collect();
metric.set(value);
}
// The Uuid functions are custom because test_get needs to use an outparam.
// If we can make test_get optional, we can go back to using the macro to
// generate the rest of the functions, or something.
#[no_mangle]
pub extern "C" fn fog_uuid_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(UUID_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_uuid_test_get_value(
id: u32,
storage_name: &nsACString,
value: &mut nsACString,
) {
let uuid = test_get!(UUID_MAP, id, storage_name).to_string();
value.assign(&uuid);
}
#[no_mangle]
pub extern "C" fn fog_uuid_set(id: u32, value: &nsACString) {
if let Ok(uuid) = Uuid::parse_str(&value.to_utf8()) {
let metric = metric_get!(UUID_MAP, id);
metric.set(uuid);
}
}
#[no_mangle]
pub extern "C" fn fog_uuid_generate_and_set(id: u32) {
let metric = metric_get!(UUID_MAP, id);
metric.generate_and_set();
}
#[no_mangle]
pub extern "C" fn fog_datetime_test_has_value(id: u32, storage_name: &nsACString) -> bool {
test_has!(DATETIME_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_datetime_test_get_value(
id: u32,
storage_name: &nsACString,
value: &mut nsACString,
) {
let val = test_get!(DATETIME_MAP, id, storage_name);
value.assign(&val.to_rfc3339());
}
#[no_mangle]
pub extern "C" fn fog_datetime_set(
id: u32,
year: i32,
month: u32,
day: u32,
hour: u32,
minute: u32,
second: u32,
nano: u32,
offset_seconds: i32,
) {
let metric = metric_get!(DATETIME_MAP, id);
metric.set_with_details(year, month, day, hour, minute, second, nano, offset_seconds);
}
#[no_mangle]
pub extern "C" fn fog_memory_distribution_test_has_value(
id: u32,
storage_name: &nsACString,
) -> bool {
test_has!(MEMORY_DISTRIBUTION_MAP, id, storage_name)
}
#[no_mangle]
pub extern "C" fn fog_memory_distribution_test_get_value(
id: u32,
storage_name: &nsACString,
sum: &mut u64,
buckets: &mut ThinVec<u64>,
counts: &mut ThinVec<u64>,
) {
let val = test_get!(MEMORY_DISTRIBUTION_MAP, id, storage_name);
*sum = val.sum;
for (&bucket, &count) in val.values.iter() {
buckets.push(bucket);
counts.push(count);
}
}
#[no_mangle]
pub extern "C" fn fog_memory_distribution_accumulate(id: u32, sample: u64) {
let metric = metric_get!(MEMORY_DISTRIBUTION_MAP, id);
metric.accumulate(sample);
}
#[no_mangle]
pub extern "C" fn fog_submit_ping_by_id(id: u32, reason: &nsACString) {
let reason = if reason.is_empty() {
None
} else {
Some(reason.to_utf8())
};
pings::submit_ping_by_id(id, reason.as_deref());
}
#[no_mangle]
pub extern "C" fn fog_timing_distribution_start(id: u32) -> u64 {
let metric = metric_get!(TIMING_DISTRIBUTION_MAP, id);
metric.start()
}
#[no_mangle]
pub extern "C" fn fog_timing_distribution_stop_and_accumulate(id: u32, timing_id: u64) {
let metric = metric_get!(TIMING_DISTRIBUTION_MAP, id);
metric.stop_and_accumulate(timing_id);
}
#[no_mangle]
pub extern "C" fn fog_timing_distribution_cancel(id: u32, timing_id: u64) {
let metric = metric_get!(TIMING_DISTRIBUTION_MAP, id);
metric.cancel(timing_id);
}
#[no_mangle]
pub extern "C" fn fog_timing_distribution_test_has_value(id: u32, ping_name: &nsACString) -> bool {
test_has!(TIMING_DISTRIBUTION_MAP, id, ping_name)
}
#[no_mangle]
pub extern "C" fn fog_timing_distribution_test_get_value(
id: u32,
ping_name: &nsACString,
sum: &mut u64,
buckets: &mut ThinVec<u64>,
counts: &mut ThinVec<u64>,
) {
let val = test_get!(TIMING_DISTRIBUTION_MAP, id, ping_name);
*sum = val.sum;
for (&bucket, &count) in val.values.iter() {
buckets.push(bucket);
counts.push(count);
}
}
|