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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
use std::borrow::Cow;
use std::cmp;
use std::fmt;
use std::iter::FromIterator;
use std::net::{AddrParseError, IpAddr};
use std::ops;
use std::str;
use ::debugid::DebugId;
use chrono::{DateTime, Utc};
use failure::Fail;
use serde::Serializer;
use serde::{Deserialize, Serialize};
use url::Url;
use url_serde;
use uuid::Uuid;
use crate::utils::ts_seconds_float;
pub mod value {
pub use serde_json::value::{from_value, to_value, Index, Map, Number, Value};
}
pub mod map {
pub use std::collections::btree_map::{BTreeMap as Map, *};
}
pub mod debugid {
pub use debugid::{BreakpadFormat, DebugId, ParseDebugIdError};
}
pub use self::value::Value;
pub use self::map::Map;
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub struct Values<T> {
pub values: Vec<T>,
}
impl<T> Values<T> {
pub fn new() -> Values<T> {
Values { values: Vec::new() }
}
pub fn is_empty(&self) -> bool {
self.values.is_empty()
}
}
impl<T> Default for Values<T> {
fn default() -> Self {
Values::new()
}
}
impl<T> From<Vec<T>> for Values<T> {
fn from(values: Vec<T>) -> Self {
Values { values }
}
}
impl<T> AsRef<[T]> for Values<T> {
fn as_ref(&self) -> &[T] {
&self.values
}
}
impl<T> AsMut<Vec<T>> for Values<T> {
fn as_mut(&mut self) -> &mut Vec<T> {
&mut self.values
}
}
impl<T> ops::Deref for Values<T> {
type Target = [T];
fn deref(&self) -> &Self::Target {
&self.values
}
}
impl<T> ops::DerefMut for Values<T> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.values
}
}
impl<T> FromIterator<T> for Values<T> {
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
Vec::<T>::from_iter(iter).into()
}
}
impl<T> Extend<T> for Values<T> {
fn extend<I>(&mut self, iter: I)
where
I: IntoIterator<Item = T>,
{
self.values.extend(iter)
}
}
impl<'a, T> IntoIterator for &'a mut Values<T> {
type Item = <&'a mut Vec<T> as IntoIterator>::Item;
type IntoIter = <&'a mut Vec<T> as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
(&mut self.values).into_iter()
}
}
impl<'a, T> IntoIterator for &'a Values<T> {
type Item = <&'a Vec<T> as IntoIterator>::Item;
type IntoIter = <&'a Vec<T> as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
(&self.values).into_iter()
}
}
impl<T> IntoIterator for Values<T> {
type Item = <Vec<T> as IntoIterator>::Item;
type IntoIter = <Vec<T> as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
self.values.into_iter()
}
}
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq)]
pub struct LogEntry {
pub message: String,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub params: Vec<Value>,
}
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq)]
pub struct Frame {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub function: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub symbol: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub module: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub package: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub filename: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub abs_path: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub lineno: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub colno: Option<u64>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub pre_context: Vec<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub context_line: Option<String>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub post_context: Vec<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub in_app: Option<bool>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub vars: Map<String, Value>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub image_addr: Option<Addr>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub instruction_addr: Option<Addr>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub symbol_addr: Option<Addr>,
}
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq)]
pub struct TemplateInfo {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub filename: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub abs_path: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub lineno: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub colno: Option<u64>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub pre_context: Vec<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub context_line: Option<String>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub post_context: Vec<String>,
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct Stacktrace {
#[serde(default)]
pub frames: Vec<Frame>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub frames_omitted: Option<(u64, u64)>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub registers: Map<String, RegVal>,
}
impl Stacktrace {
pub fn from_frames_reversed(mut frames: Vec<Frame>) -> Option<Stacktrace> {
if frames.is_empty() {
None
} else {
frames.reverse();
Some(Stacktrace {
frames,
..Default::default()
})
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Ord, PartialOrd, Hash)]
#[serde(untagged)]
pub enum ThreadId {
Int(u64),
String(String),
}
impl Default for ThreadId {
fn default() -> ThreadId {
ThreadId::Int(0)
}
}
impl<'a> From<&'a str> for ThreadId {
fn from(id: &'a str) -> ThreadId {
ThreadId::String(id.to_string())
}
}
impl From<String> for ThreadId {
fn from(id: String) -> ThreadId {
ThreadId::String(id)
}
}
impl From<i64> for ThreadId {
fn from(id: i64) -> ThreadId {
ThreadId::Int(id as u64)
}
}
impl From<i32> for ThreadId {
fn from(id: i32) -> ThreadId {
ThreadId::Int(id as u64)
}
}
impl From<u32> for ThreadId {
fn from(id: u32) -> ThreadId {
ThreadId::Int(id as u64)
}
}
impl From<u16> for ThreadId {
fn from(id: u16) -> ThreadId {
ThreadId::Int(id as u64)
}
}
impl fmt::Display for ThreadId {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
ThreadId::Int(i) => write!(f, "{}", i),
ThreadId::String(ref s) => write!(f, "{}", s),
}
}
}
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash)]
pub struct Addr(pub u64);
impl Addr {
pub fn is_null(&self) -> bool {
self.0 == 0
}
}
impl_hex_serde!(Addr, u64);
impl From<u64> for Addr {
fn from(addr: u64) -> Addr {
Addr(addr)
}
}
impl From<i32> for Addr {
fn from(addr: i32) -> Addr {
Addr(addr as u64)
}
}
impl From<u32> for Addr {
fn from(addr: u32) -> Addr {
Addr(addr as u64)
}
}
impl From<usize> for Addr {
fn from(addr: usize) -> Addr {
Addr(addr as u64)
}
}
impl<T> From<*const T> for Addr {
fn from(addr: *const T) -> Addr {
Addr(addr as u64)
}
}
impl<T> From<*mut T> for Addr {
fn from(addr: *mut T) -> Addr {
Addr(addr as u64)
}
}
impl Into<u64> for Addr {
fn into(self) -> u64 {
self.0
}
}
fn is_false(value: &bool) -> bool {
!*value
}
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash)]
pub struct RegVal(pub u64);
impl_hex_serde!(RegVal, u64);
impl From<u64> for RegVal {
fn from(addr: u64) -> RegVal {
RegVal(addr)
}
}
impl From<i32> for RegVal {
fn from(addr: i32) -> RegVal {
RegVal(addr as u64)
}
}
impl From<u32> for RegVal {
fn from(addr: u32) -> RegVal {
RegVal(addr as u64)
}
}
impl From<usize> for RegVal {
fn from(addr: usize) -> RegVal {
RegVal(addr as u64)
}
}
impl<T> From<*const T> for RegVal {
fn from(addr: *const T) -> RegVal {
RegVal(addr as u64)
}
}
impl<T> From<*mut T> for RegVal {
fn from(addr: *mut T) -> RegVal {
RegVal(addr as u64)
}
}
impl Into<u64> for RegVal {
fn into(self) -> u64 {
self.0
}
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct Thread {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<ThreadId>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub stacktrace: Option<Stacktrace>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub raw_stacktrace: Option<Stacktrace>,
#[serde(default, skip_serializing_if = "is_false")]
pub crashed: bool,
#[serde(default, skip_serializing_if = "is_false")]
pub current: bool,
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq, Eq)]
pub struct CError {
pub number: i32,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
}
impl From<i32> for CError {
fn from(number: i32) -> CError {
CError { number, name: None }
}
}
impl Into<i32> for CError {
fn into(self) -> i32 {
self.number
}
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq, Eq)]
pub struct MachException {
pub exception: i32,
pub code: u64,
pub subcode: u64,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq, Eq)]
pub struct PosixSignal {
pub number: i32,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub code: Option<i32>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub code_name: Option<String>,
}
impl From<i32> for PosixSignal {
fn from(number: i32) -> PosixSignal {
PosixSignal {
number,
code: None,
name: None,
code_name: None,
}
}
}
impl From<(i32, i32)> for PosixSignal {
fn from(tuple: (i32, i32)) -> PosixSignal {
let (number, code) = tuple;
PosixSignal {
number,
code: Some(code),
name: None,
code_name: None,
}
}
}
impl Into<i32> for PosixSignal {
fn into(self) -> i32 {
self.number
}
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct MechanismMeta {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub errno: Option<CError>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub signal: Option<PosixSignal>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub mach_exception: Option<MachException>,
}
impl MechanismMeta {
fn is_empty(&self) -> bool {
self.errno.is_none() && self.signal.is_none() && self.mach_exception.is_none()
}
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct Mechanism {
#[serde(rename = "type")]
pub ty: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(default, with = "url_serde", skip_serializing_if = "Option::is_none")]
pub help_link: Option<Url>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub handled: Option<bool>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub synthetic: Option<bool>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub data: Map<String, Value>,
#[serde(default, skip_serializing_if = "MechanismMeta::is_empty")]
pub meta: MechanismMeta,
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct Exception {
#[serde(rename = "type")]
pub ty: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub value: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub module: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub stacktrace: Option<Stacktrace>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub raw_stacktrace: Option<Stacktrace>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub thread_id: Option<ThreadId>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub mechanism: Option<Mechanism>,
}
#[derive(Debug, Fail)]
#[fail(display = "invalid level")]
pub struct ParseLevelError;
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum Level {
Debug,
Info,
Warning,
Error,
Fatal,
}
impl Default for Level {
fn default() -> Level {
Level::Info
}
}
impl str::FromStr for Level {
type Err = ParseLevelError;
fn from_str(string: &str) -> Result<Level, Self::Err> {
Ok(match string {
"debug" => Level::Debug,
"info" | "log" => Level::Info,
"warning" => Level::Warning,
"error" => Level::Error,
"fatal" => Level::Fatal,
_ => return Err(ParseLevelError),
})
}
}
impl fmt::Display for Level {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Level::Debug => write!(f, "debug"),
Level::Info => write!(f, "info"),
Level::Warning => write!(f, "warning"),
Level::Error => write!(f, "error"),
Level::Fatal => write!(f, "fatal"),
}
}
}
impl Level {
pub fn is_debug(&self) -> bool {
*self == Level::Debug
}
pub fn is_info(&self) -> bool {
*self == Level::Info
}
pub fn is_warning(&self) -> bool {
*self == Level::Warning
}
pub fn is_error(&self) -> bool {
*self == Level::Error
}
pub fn is_fatal(&self) -> bool {
*self == Level::Fatal
}
}
impl_str_serde!(Level);
mod breadcrumb {
use super::*;
pub fn default_timestamp() -> DateTime<Utc> {
Utc::now()
}
pub fn default_type() -> String {
"default".to_string()
}
pub fn is_default_type(ty: &str) -> bool {
ty == "default"
}
pub fn default_level() -> Level {
Level::Info
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct Breadcrumb {
#[serde(default = "breadcrumb::default_timestamp", with = "ts_seconds_float")]
pub timestamp: DateTime<Utc>,
#[serde(
rename = "type",
default = "breadcrumb::default_type",
skip_serializing_if = "breadcrumb::is_default_type"
)]
pub ty: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub category: Option<String>,
#[serde(
default = "breadcrumb::default_level",
skip_serializing_if = "Level::is_info"
)]
pub level: Level,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub data: Map<String, Value>,
}
impl Default for Breadcrumb {
fn default() -> Breadcrumb {
Breadcrumb {
timestamp: breadcrumb::default_timestamp(),
ty: breadcrumb::default_type(),
category: Default::default(),
level: breadcrumb::default_level(),
message: Default::default(),
data: Default::default(),
}
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash)]
pub enum IpAddress {
Auto,
Exact(IpAddr),
}
impl PartialEq<IpAddr> for IpAddress {
fn eq(&self, other: &IpAddr) -> bool {
match *self {
IpAddress::Auto => false,
IpAddress::Exact(ref addr) => addr == other,
}
}
}
impl cmp::PartialOrd<IpAddr> for IpAddress {
fn partial_cmp(&self, other: &IpAddr) -> Option<cmp::Ordering> {
match *self {
IpAddress::Auto => None,
IpAddress::Exact(ref addr) => addr.partial_cmp(other),
}
}
}
impl Default for IpAddress {
fn default() -> IpAddress {
IpAddress::Auto
}
}
impl fmt::Display for IpAddress {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
IpAddress::Auto => write!(f, "{{{{auto}}}}"),
IpAddress::Exact(ref addr) => write!(f, "{}", addr),
}
}
}
impl From<IpAddr> for IpAddress {
fn from(addr: IpAddr) -> IpAddress {
IpAddress::Exact(addr)
}
}
impl str::FromStr for IpAddress {
type Err = AddrParseError;
fn from_str(string: &str) -> Result<IpAddress, AddrParseError> {
match string {
"{{auto}}" => Ok(IpAddress::Auto),
other => other.parse().map(IpAddress::Exact),
}
}
}
impl_str_serde!(IpAddress);
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct User {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub email: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub ip_address: Option<IpAddress>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub username: Option<String>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct Request {
#[serde(default, with = "url_serde", skip_serializing_if = "Option::is_none")]
pub url: Option<Url>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub method: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub data: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub query_string: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub cookies: Option<String>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub headers: Map<String, String>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub env: Map<String, String>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SystemSdkInfo {
pub sdk_name: String,
pub version_major: u32,
pub version_minor: u32,
pub version_patchlevel: u32,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum DebugImage {
Apple(AppleDebugImage),
Symbolic(SymbolicDebugImage),
Proguard(ProguardDebugImage),
}
impl DebugImage {
pub fn type_name(&self) -> &str {
match *self {
DebugImage::Apple(..) => "apple",
DebugImage::Symbolic(..) => "symbolic",
DebugImage::Proguard(..) => "proguard",
}
}
}
macro_rules! into_debug_image {
($kind:ident, $ty:ty) => {
impl From<$ty> for DebugImage {
fn from(data: $ty) -> DebugImage {
DebugImage::$kind(data)
}
}
};
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct AppleDebugImage {
pub name: String,
pub arch: Option<String>,
pub cpu_type: Option<u32>,
pub cpu_subtype: Option<u32>,
pub image_addr: Addr,
pub image_size: u64,
#[serde(default, skip_serializing_if = "Addr::is_null")]
pub image_vmaddr: Addr,
pub uuid: Uuid,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SymbolicDebugImage {
pub name: String,
pub arch: Option<String>,
pub image_addr: Addr,
pub image_size: u64,
#[serde(default, skip_serializing_if = "Addr::is_null")]
pub image_vmaddr: Addr,
pub id: DebugId,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ProguardDebugImage {
pub uuid: Uuid,
}
into_debug_image!(Apple, AppleDebugImage);
into_debug_image!(Symbolic, SymbolicDebugImage);
into_debug_image!(Proguard, ProguardDebugImage);
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq)]
pub struct DebugMeta {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub sdk_info: Option<SystemSdkInfo>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub images: Vec<DebugImage>,
}
impl DebugMeta {
pub fn is_empty(&self) -> bool {
self.sdk_info.is_none() && self.images.is_empty()
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ClientSdkInfo {
pub name: String,
pub version: String,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub integrations: Vec<String>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub packages: Vec<ClientSdkPackage>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ClientSdkPackage {
pub name: String,
pub version: String,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum Context {
Device(Box<DeviceContext>),
Os(Box<OsContext>),
Runtime(Box<RuntimeContext>),
App(Box<AppContext>),
Browser(Box<BrowserContext>),
#[serde(rename = "unknown")]
Other(Map<String, Value>),
}
impl Context {
pub fn type_name(&self) -> &str {
match *self {
Context::Device(..) => "device",
Context::Os(..) => "os",
Context::Runtime(..) => "runtime",
Context::App(..) => "app",
Context::Browser(..) => "browser",
Context::Other(..) => "unknown",
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Hash)]
#[serde(rename_all = "lowercase")]
pub enum Orientation {
Portrait,
Landscape,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
pub struct DeviceContext {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub family: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub model: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub model_id: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub arch: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub battery_level: Option<f32>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub orientation: Option<Orientation>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub simulator: Option<bool>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub memory_size: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub free_memory: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub usable_memory: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub storage_size: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub free_storage: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub external_storage_size: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub external_free_storage: Option<u64>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub boot_time: Option<DateTime<Utc>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub timezone: Option<String>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
pub struct OsContext {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub build: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub kernel_version: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub rooted: Option<bool>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
pub struct RuntimeContext {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
pub struct AppContext {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub app_start_time: Option<DateTime<Utc>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub device_app_hash: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub build_type: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub app_identifier: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub app_name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub app_version: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub app_build: Option<String>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default, PartialEq)]
pub struct BrowserContext {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
#[serde(flatten)]
pub other: Map<String, Value>,
}
macro_rules! into_context {
($kind:ident, $ty:ty) => {
impl From<$ty> for Context {
fn from(data: $ty) -> Self {
Context::$kind(Box::new(data))
}
}
};
}
into_context!(App, AppContext);
into_context!(Device, DeviceContext);
into_context!(Os, OsContext);
into_context!(Runtime, RuntimeContext);
into_context!(Browser, BrowserContext);
mod event {
use super::*;
pub fn default_id() -> Uuid {
Uuid::new_v4()
}
pub fn serialize_id<S: Serializer>(uuid: &Uuid, serializer: S) -> Result<S::Ok, S::Error> {
serializer.serialize_some(&uuid.to_simple_ref().to_string())
}
pub fn default_level() -> Level {
Level::Error
}
pub fn default_platform() -> Cow<'static, str> {
Cow::Borrowed("other")
}
pub fn is_default_platform(value: &str) -> bool {
value == "other"
}
static DEFAULT_FINGERPRINT: &[Cow<'static, str>] = &[Cow::Borrowed("{{ default }}")];
pub fn default_fingerprint<'a>() -> Cow<'a, [Cow<'a, str>]> {
Cow::Borrowed(DEFAULT_FINGERPRINT)
}
#[cfg_attr(feature = "cargo-clippy", allow(ptr_arg))]
pub fn is_default_fingerprint<'a>(fp: &[Cow<'a, str>]) -> bool {
fp.len() == 1 && ((&fp)[0] == "{{ default }}" || (&fp)[0] == "{{default}}")
}
pub fn default_timestamp() -> DateTime<Utc> {
Utc::now()
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct Event<'a> {
#[serde(default = "event::default_id", serialize_with = "event::serialize_id")]
pub event_id: Uuid,
#[serde(
default = "event::default_level",
skip_serializing_if = "Level::is_error"
)]
pub level: Level,
#[serde(
default = "event::default_fingerprint",
skip_serializing_if = "event::is_default_fingerprint"
)]
pub fingerprint: Cow<'a, [Cow<'a, str>]>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub culprit: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub transaction: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub logentry: Option<LogEntry>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub logger: Option<String>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub modules: Map<String, String>,
#[serde(
default = "event::default_platform",
skip_serializing_if = "event::is_default_platform"
)]
pub platform: Cow<'a, str>,
#[serde(default = "event::default_timestamp", with = "ts_seconds_float")]
pub timestamp: DateTime<Utc>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub server_name: Option<Cow<'a, str>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub release: Option<Cow<'a, str>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub dist: Option<Cow<'a, str>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub environment: Option<Cow<'a, str>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub user: Option<User>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub request: Option<Request>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub contexts: Map<String, Context>,
#[serde(default, skip_serializing_if = "Values::is_empty")]
pub breadcrumbs: Values<Breadcrumb>,
#[serde(default, skip_serializing_if = "Values::is_empty")]
pub exception: Values<Exception>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub stacktrace: Option<Stacktrace>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub template: Option<TemplateInfo>,
#[serde(default, skip_serializing_if = "Values::is_empty")]
pub threads: Values<Thread>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub tags: Map<String, String>,
#[serde(default, skip_serializing_if = "Map::is_empty")]
pub extra: Map<String, Value>,
#[serde(default, skip_serializing_if = "DebugMeta::is_empty")]
pub debug_meta: Cow<'a, DebugMeta>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub sdk: Option<Cow<'a, ClientSdkInfo>>,
}
impl<'a> Default for Event<'a> {
fn default() -> Self {
Event {
event_id: event::default_id(),
level: event::default_level(),
fingerprint: event::default_fingerprint(),
culprit: Default::default(),
transaction: Default::default(),
message: Default::default(),
logentry: Default::default(),
logger: Default::default(),
modules: Default::default(),
platform: event::default_platform(),
timestamp: event::default_timestamp(),
server_name: Default::default(),
release: Default::default(),
dist: Default::default(),
environment: Default::default(),
user: Default::default(),
request: Default::default(),
contexts: Default::default(),
breadcrumbs: Default::default(),
exception: Default::default(),
stacktrace: Default::default(),
template: Default::default(),
threads: Default::default(),
tags: Default::default(),
extra: Default::default(),
debug_meta: Default::default(),
sdk: Default::default(),
}
}
}
impl<'a> Event<'a> {
pub fn new() -> Event<'a> {
Default::default()
}
pub fn into_owned(self) -> Event<'static> {
Event {
event_id: self.event_id,
level: self.level,
fingerprint: Cow::Owned(
self.fingerprint
.iter()
.map(|x| Cow::Owned(x.to_string()))
.collect(),
),
culprit: self.culprit,
transaction: self.transaction,
message: self.message,
logentry: self.logentry,
logger: self.logger,
modules: self.modules,
platform: Cow::Owned(self.platform.into_owned()),
timestamp: self.timestamp,
server_name: self.server_name.map(|x| Cow::Owned(x.into_owned())),
release: self.release.map(|x| Cow::Owned(x.into_owned())),
dist: self.dist.map(|x| Cow::Owned(x.into_owned())),
environment: self.environment.map(|x| Cow::Owned(x.into_owned())),
user: self.user,
request: self.request,
contexts: self.contexts,
breadcrumbs: self.breadcrumbs,
exception: self.exception,
stacktrace: self.stacktrace,
template: self.template,
threads: self.threads,
tags: self.tags,
extra: self.extra,
debug_meta: Cow::Owned(self.debug_meta.into_owned()),
sdk: self.sdk.map(|x| Cow::Owned(x.into_owned())),
}
}
}
impl<'a> fmt::Display for Event<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Event(id: {}, ts: {})", self.event_id, self.timestamp)
}
}