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
//! Ceph has a command system defined
//! in https://github.com/ceph/ceph/blob/master/src/mon/MonCommands.h
//! The cli commands mostly use this json based system.  This allows you to
//! make the exact
//! same calls without having to shell out with std::process::Command.
//! Many of the commands defined in this file have a simulate parameter to
//! allow you to test without actually calling Ceph.
extern crate serde_json;

use crate::ceph::Rados;
use crate::error::{RadosError, RadosResult};
use crate::CephVersion;
use std::collections::HashMap;
use std::fmt;
use std::str::FromStr;
use uuid::Uuid;

#[derive(Deserialize, Debug)]
pub struct CephMon {
    pub rank: i64,
    pub name: String,
    pub addr: String,
}

#[derive(Deserialize, Debug)]
pub struct CrushNode {
    pub id: i64,
    pub name: String,
    #[serde(rename = "type")]
    pub crush_type: String,
    pub type_id: i64,
    pub children: Option<Vec<i64>>,
    pub crush_weight: Option<f64>,
    pub depth: Option<i64>,
    pub exists: Option<i64>,
    pub status: Option<String>,
    pub reweight: Option<f64>,
    pub primary_affinity: Option<f64>,
}

#[derive(Deserialize, Debug)]
pub struct CrushTree {
    pub nodes: Vec<CrushNode>,
    pub stray: Vec<String>,
}

#[derive(Deserialize, Debug, Clone)]
#[serde(untagged)]
pub enum Mem {
    MemNum {
        mem_swap_kb: u64,
        mem_total_kb: u64,
    },
    MemStr {
        mem_swap_kb: String,
        mem_total_kb: String,
    },
}

#[derive(Deserialize, Debug)]
/// Manager Metadata
pub struct MgrMetadata {
    #[serde(alias = "name")]
    pub id: String,
    pub addr: Option<String>, //nautilous
    pub addrs: Option<String>,
    pub arch: String,
    pub ceph_release: Option<String>,
    pub ceph_version: String,
    pub ceph_version_short: Option<String>,
    pub cpu: String,
    pub distro: String,
    pub distro_description: String,
    pub distro_version: String,
    pub hostname: String,
    pub kernel_description: String,
    pub kernel_version: String,
    #[serde(flatten)]
    pub mem: Mem,
    pub os: String,
    // other metadata not captured through the above attributes
    #[serde(flatten)]
    other_meta: Option<HashMap<String, String>>,
}

#[derive(Deserialize, Debug, Clone)]
#[serde(rename_all = "lowercase")]
pub enum ObjectStoreType {
    Bluestore,
    Filestore,
}

#[derive(Deserialize, Debug, Clone)]
#[serde(untagged, rename_all = "lowercase")]
pub enum ObjectStoreMeta {
    Bluestore {
        bluefs: String,
        bluefs_db_access_mode: String,
        bluefs_db_block_size: String,
        bluefs_db_dev: Option<String>, //Not in Nautilous
        bluefs_db_dev_node: String,
        bluefs_db_driver: String,
        bluefs_db_model: Option<String>, //Not in Nautilous
        bluefs_db_partition_path: String,
        bluefs_db_rotational: String,
        bluefs_db_serial: Option<String>, //Not in Nautilous
        bluefs_db_size: String,
        bluefs_db_support_discard: Option<String>, //Nautilous
        bluefs_db_type: String,
        bluefs_single_shared_device: String,
        bluefs_slow_access_mode: Option<String>, //Not in Nautilous
        bluefs_slow_block_size: Option<String>,  //Not in Nautilous
        bluefs_slow_dev: Option<String>,         //Not in Nautilous
        bluefs_slow_dev_node: Option<String>,    //Not in Nautilous
        bluefs_slow_driver: Option<String>,      //Not in Nautilous
        bluefs_slow_model: Option<String>,       //Not in Nautilous
        bluefs_slow_partition_path: Option<String>, //Not in Nautilous
        bluefs_slow_rotational: Option<String>,  //Not in Nautilous
        bluefs_slow_size: Option<String>,        //Not in Nautilous
        bluefs_slow_type: Option<String>,        //Not in Nautilous
        bluefs_wal_access_mode: Option<String>,  //Not in Nautilous
        bluefs_wal_block_size: Option<String>,   //Not in Nautilous
        bluefs_wal_dev: Option<String>,          //Not in Nautilous
        bluefs_wal_dev_node: Option<String>,     //Not in Nautilous
        bluefs_wal_driver: Option<String>,       //Not in Nautilous
        bluefs_wal_model: Option<String>,        //Not in Nautilous
        bluefs_wal_partition_path: Option<String>, //Not in Nautilous
        bluefs_wal_rotational: Option<String>,   //Not in Nautilous
        bluefs_wal_serial: Option<String>,       //Not in Nautilous
        bluefs_wal_size: Option<String>,         //Not in Nautilous
        bluefs_wal_type: Option<String>,         //Not in Nautilous
        bluestore_bdev_access_mode: String,
        bluestore_bdev_block_size: String,
        bluestore_bdev_dev: Option<String>, //Not in Nautilous
        bluestore_bdev_dev_node: String,
        bluestore_bdev_driver: String,
        bluestore_bdev_model: Option<String>, //Not in Nautilous
        bluestore_bdev_partition_path: String,
        bluestore_bdev_rotational: String,
        bluestore_bdev_size: String,
        bluestore_bdev_support_discard: Option<String>, //Nautilous
        bluestore_bdev_type: String,
    },
    Filestore {
        backend_filestore_dev_node: String,
        backend_filestore_partition_path: String,
        filestore_backend: String,
        filestore_f_type: String,
    },
}

#[derive(Deserialize, Debug, Clone)]
pub struct OsdMetadata {
    pub id: u64,
    pub arch: String,
    pub back_addr: String,
    pub back_iface: Option<String>,   //not in Jewel
    pub ceph_release: Option<String>, //Nautilous
    pub ceph_version: String,
    pub ceph_version_short: Option<String>, //Nautilous
    pub cpu: String,
    pub default_device_class: Option<String>, //not in Jewel
    pub device_ids: Option<String>,           //Nautilous
    pub devices: Option<String>,              //Nautilous
    pub distro: String,
    pub distro_description: String,
    pub distro_version: String,
    pub front_addr: String,
    pub front_iface: Option<String>, //not in Jewel
    pub hb_back_addr: String,
    pub hb_front_addr: String,
    pub hostname: String,
    pub journal_rotational: Option<String>, //not in Jewel
    pub kernel_description: String,
    pub kernel_version: String,
    pub mem_swap_kb: String,
    pub mem_total_kb: String,
    pub os: String,
    pub osd_data: String,
    pub osd_journal: Option<String>, //not usually in bluestore
    pub osd_objectstore: ObjectStoreType,
    pub rotational: Option<String>, //Not in Jewel
    #[serde(flatten)]
    pub objectstore_meta: ObjectStoreMeta,
    // other metadata not captured through the above attributes
    #[serde(flatten)]
    other_meta: Option<HashMap<String, String>>,
}

#[derive(Deserialize, Debug, Clone)]
pub struct PgState {
    pub name: String,
    pub num: u64,
}

#[derive(Deserialize, Debug, Clone)]
pub struct PgSummary {
    pub num_pg_by_state: Vec<PgState>,
    pub num_pgs: u64,
    pub num_bytes: u64,
    pub total_bytes: Option<u64>,          //Nautilous
    pub total_avail_bytes: Option<u64>,    //Nautilous
    pub total_used_bytes: Option<u64>,     //Nautilous
    pub total_used_raw_bytes: Option<u64>, //Nautilous
    pub raw_bytes_used: Option<u64>,
    pub raw_bytes_avail: Option<u64>,
    pub raw_bytes: Option<u64>,
    pub read_bytes_sec: Option<u64>,
    pub write_bytes_sec: Option<u64>,
    pub io_sec: Option<u64>,
    pub version: Option<u64>, //Jewel
    pub degraded_objects: Option<u64>,
    pub degraded_total: Option<u64>,
    pub degraded_ratio: Option<f64>,
    pub misplaced_objects: Option<u64>,
    pub misplaced_total: Option<u64>,
    pub misplaced_ratio: Option<f64>,
    pub recovering_objects_per_sec: Option<u64>,
    pub recovering_bytes_per_sec: Option<u64>,
    pub recovering_keys_per_sec: Option<u64>,
    pub num_objects_recovered: Option<u64>,
    pub num_bytes_recovered: Option<u64>,
    pub num_keys_recovered: Option<u64>,
    // other metadata not captured through the above attributes
    #[serde(flatten)]
    other_meta: Option<HashMap<String, String>>,
}

#[derive(Deserialize, Debug, Clone)]
#[serde(untagged)]
pub enum PgStat {
    Wrapped {
        pg_ready: bool,
        pg_summary: PgSummary,
    },
    UnWrapped {
        #[serde(flatten)]
        pg_summary: PgSummary,
    },
}

#[derive(Deserialize, Debug)]
pub struct MgrStandby {
    pub gid: u64,
    pub name: String,
    pub available_modules: Vec<String>,
}

#[derive(Deserialize, Debug)]
pub struct MgrDump {
    pub epoch: u64,
    pub active_gid: u64,
    pub active_name: String,
    pub active_addr: String,
    pub available: bool,
    pub standbys: Vec<MgrStandby>,
    pub modules: Vec<String>,
    pub available_modules: Vec<String>,
}

#[derive(Deserialize, Debug)]
pub struct MonDump {
    pub epoch: i64,
    pub fsid: String,
    pub modified: String,
    pub created: String,
    pub mons: Vec<CephMon>,
    pub quorum: Vec<i64>,
}

#[derive(Deserialize, Debug)]
pub struct MonStatus {
    pub name: String,
    pub rank: u64,
    pub state: MonState,
    pub election_epoch: u64,
    pub quorum: Vec<u64>,
    pub outside_quorum: Vec<String>,
    pub extra_probe_peers: Vec<ExtraProbePeer>,
    pub sync_provider: Vec<u64>,
    pub monmap: MonMap,
}

#[derive(Deserialize, Debug)]
#[serde(untagged)]
pub enum ExtraProbePeer {
    Present { addrvec: Vec<AddrVec> },
    Absent(String),
}

#[derive(Deserialize, Debug)]
pub struct AddrVec {
    r#type: String,
    addr: String,
    nonce: i32,
}

#[derive(Deserialize, Debug)]
pub struct MonMap {
    pub epoch: u64,
    pub fsid: Uuid,
    pub modified: String,
    pub created: String,
    pub mons: Vec<Mon>,
}

#[derive(Deserialize, Debug)]
pub struct Mon {
    pub rank: u64,
    pub name: String,
    pub addr: String,
}

#[derive(Deserialize, Debug)]
pub enum HealthStatus {
    #[serde(rename = "HEALTH_ERR")]
    Err,
    #[serde(rename = "HEALTH_WARN")]
    Warn,
    #[serde(rename = "HEALTH_OK")]
    Ok,
}

#[derive(Deserialize, Debug)]
pub struct ClusterHealth {
    pub health: Health,
    pub timechecks: TimeChecks,
    pub summary: Vec<String>,
    pub overall_status: HealthStatus,
    pub detail: Vec<String>,
}

#[derive(Deserialize, Debug)]
pub struct Health {
    pub health_services: Vec<ServiceHealth>,
}

#[derive(Deserialize, Debug)]
pub struct TimeChecks {
    pub epoch: u64,
    pub round: u64,
    pub round_status: RoundStatus,
    pub mons: Vec<MonTimeChecks>,
}

#[derive(Deserialize, Debug)]
pub struct MonTimeChecks {
    pub name: String,
    pub skew: f64,
    pub latency: f64,
    pub health: HealthStatus,
}

#[derive(Deserialize, Debug)]
pub struct ServiceHealth {
    pub mons: Vec<MonHealth>,
}

#[derive(Deserialize, Debug)]
pub struct MonHealth {
    pub name: String,
    pub kb_total: u64,
    pub kb_used: u64,
    pub kb_avail: u64,
    pub avail_percent: u8,
    pub last_updated: String,
    pub store_stats: StoreStats,
    pub health: HealthStatus,
}

#[derive(Deserialize, Debug)]
pub struct StoreStats {
    pub bytes_total: u64,
    pub bytes_sst: u64,
    pub bytes_log: u64,
    pub bytes_misc: u64,
    pub last_updated: String,
}

#[derive(Deserialize, Debug)]
pub enum RoundStatus {
    #[serde(rename = "finished")]
    Finished,
    #[serde(rename = "on-going")]
    OnGoing,
}

#[derive(Deserialize, Debug)]
pub enum MonState {
    #[serde(rename = "probing")]
    Probing,
    #[serde(rename = "synchronizing")]
    Synchronizing,
    #[serde(rename = "electing")]
    Electing,
    #[serde(rename = "leader")]
    Leader,
    #[serde(rename = "peon")]
    Peon,
    #[serde(rename = "shutdown")]
    Shutdown,
}

#[derive(Deserialize, Debug, Serialize)]
pub enum OsdOption {
    #[serde(rename = "full")]
    Full,
    #[serde(rename = "pause")]
    Pause,
    #[serde(rename = "noup")]
    NoUp,
    #[serde(rename = "nodown")]
    NoDown,
    #[serde(rename = "noout")]
    NoOut,
    #[serde(rename = "noin")]
    NoIn,
    #[serde(rename = "nobackfill")]
    NoBackfill,
    #[serde(rename = "norebalance")]
    NoRebalance,
    #[serde(rename = "norecover")]
    NoRecover,
    #[serde(rename = "noscrub")]
    NoScrub,
    #[serde(rename = "nodeep-scrub")]
    NoDeepScrub,
    #[serde(rename = "notieragent")]
    NoTierAgent,
    #[serde(rename = "sortbitwise")]
    SortBitwise,
    #[serde(rename = "recovery_deletes")]
    RecoveryDeletes,
    #[serde(rename = "require_jewel_osds")]
    RequireJewelOsds,
    #[serde(rename = "require_kraken_osds")]
    RequireKrakenOsds,
}

impl fmt::Display for OsdOption {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            OsdOption::Full => write!(f, "full"),
            OsdOption::Pause => write!(f, "pause"),
            OsdOption::NoUp => write!(f, "noup"),
            OsdOption::NoDown => write!(f, "nodown"),
            OsdOption::NoOut => write!(f, "noout"),
            OsdOption::NoIn => write!(f, "noin"),
            OsdOption::NoBackfill => write!(f, "nobackfill"),
            OsdOption::NoRebalance => write!(f, "norebalance"),
            OsdOption::NoRecover => write!(f, "norecover"),
            OsdOption::NoScrub => write!(f, "noscrub"),
            OsdOption::NoDeepScrub => write!(f, "nodeep-scrub"),
            OsdOption::NoTierAgent => write!(f, "notieragent"),
            OsdOption::SortBitwise => write!(f, "sortbitwise"),
            OsdOption::RecoveryDeletes => write!(f, "recovery_deletes"),
            OsdOption::RequireJewelOsds => write!(f, "require_jewel_osds"),
            OsdOption::RequireKrakenOsds => write!(f, "require_kraken_osds"),
        }
    }
}

impl AsRef<str> for OsdOption {
    fn as_ref(&self) -> &str {
        match *self {
            OsdOption::Full => "full",
            OsdOption::Pause => "pause",
            OsdOption::NoUp => "noup",
            OsdOption::NoDown => "nodown",
            OsdOption::NoOut => "noout",
            OsdOption::NoIn => "noin",
            OsdOption::NoBackfill => "nobackfill",
            OsdOption::NoRebalance => "norebalance",
            OsdOption::NoRecover => "norecover",
            OsdOption::NoScrub => "noscrub",
            OsdOption::NoDeepScrub => "nodeep-scrub",
            OsdOption::NoTierAgent => "notieragent",
            OsdOption::SortBitwise => "sortbitwise",
            OsdOption::RecoveryDeletes => "recovery_deletes",
            OsdOption::RequireJewelOsds => "require_jewel_osds",
            OsdOption::RequireKrakenOsds => "require_kraken_osds",
        }
    }
}

#[derive(Deserialize, Debug, Serialize)]
pub enum PoolOption {
    #[serde(rename = "size")]
    Size,
    #[serde(rename = "min_size")]
    MinSize,
    #[serde(rename = "crash_replay_interval")]
    CrashReplayInterval,
    #[serde(rename = "pg_num")]
    PgNum,
    #[serde(rename = "pgp_num")]
    PgpNum,
    #[serde(rename = "crush_rule")]
    CrushRule,
    #[serde(rename = "hashpspool")]
    HashPsPool,
    #[serde(rename = "nodelete")]
    NoDelete,
    #[serde(rename = "nopgchange")]
    NoPgChange,
    #[serde(rename = "nosizechange")]
    NoSizeChange,
    #[serde(rename = "write_fadvice_dontneed")]
    WriteFadviceDontNeed,
    #[serde(rename = "noscrub")]
    NoScrub,
    #[serde(rename = "nodeep-scrub")]
    NoDeepScrub,
    #[serde(rename = "hit_set_type")]
    HitSetType,
    #[serde(rename = "hit_set_period")]
    HitSetPeriod,
    #[serde(rename = "hit_set_count")]
    HitSetCount,
    #[serde(rename = "hit_set_fpp")]
    HitSetFpp,
    #[serde(rename = "use_gmt_hitset")]
    UseGmtHitset,
    #[serde(rename = "target_max_bytes")]
    TargetMaxBytes,
    #[serde(rename = "target_max_objects")]
    TargetMaxObjects,
    #[serde(rename = "cache_target_dirty_ratio")]
    CacheTargetDirtyRatio,
    #[serde(rename = "cache_target_dirty_high_ratio")]
    CacheTargetDirtyHighRatio,
    #[serde(rename = "cache_target_full_ratio")]
    CacheTargetFullRatio,
    #[serde(rename = "cache_min_flush_age")]
    CacheMinFlushAge,
    #[serde(rename = "cachem_min_evict_age")]
    CacheMinEvictAge,
    #[serde(rename = "auid")]
    Auid,
    #[serde(rename = "min_read_recency_for_promote")]
    MinReadRecencyForPromote,
    #[serde(rename = "min_write_recency_for_promote")]
    MinWriteRecencyForPromte,
    #[serde(rename = "fast_read")]
    FastRead,
    #[serde(rename = "hit_set_decay_rate")]
    HitSetGradeDecayRate,
    #[serde(rename = "hit_set_search_last_n")]
    HitSetSearchLastN,
    #[serde(rename = "scrub_min_interval")]
    ScrubMinInterval,
    #[serde(rename = "scrub_max_interval")]
    ScrubMaxInterval,
    #[serde(rename = "deep_scrub_interval")]
    DeepScrubInterval,
    #[serde(rename = "recovery_priority")]
    RecoveryPriority,
    #[serde(rename = "recovery_op_priority")]
    RecoveryOpPriority,
    #[serde(rename = "scrub_priority")]
    ScrubPriority,
    #[serde(rename = "compression_mode")]
    CompressionMode,
    #[serde(rename = "compression_algorithm")]
    CompressionAlgorithm,
    #[serde(rename = "compression_required_ratio")]
    CompressionRequiredRatio,
    #[serde(rename = "compression_max_blob_size")]
    CompressionMaxBlobSize,
    #[serde(rename = "compression_min_blob_size")]
    CompressionMinBlobSize,
    #[serde(rename = "csum_type")]
    CsumType,
    #[serde(rename = "csum_min_block")]
    CsumMinBlock,
    #[serde(rename = "csum_max_block")]
    CsumMaxBlock,
    #[serde(rename = "allow_ec_overwrites")]
    AllocEcOverwrites,
}

impl fmt::Display for PoolOption {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            PoolOption::Size => write!(f, "size"),
            PoolOption::MinSize => write!(f, "min_size"),
            PoolOption::CrashReplayInterval => write!(f, "crash_replay_interval"),
            PoolOption::PgNum => write!(f, "pg_num"),
            PoolOption::PgpNum => write!(f, "pgp_num"),
            PoolOption::CrushRule => write!(f, "crush_rule"),
            PoolOption::HashPsPool => write!(f, "hashpspool"),
            PoolOption::NoDelete => write!(f, "nodelete"),
            PoolOption::NoPgChange => write!(f, "nopgchange"),
            PoolOption::NoSizeChange => write!(f, "nosizechange"),
            PoolOption::WriteFadviceDontNeed => write!(f, "write_fadvice_dontneed"),
            PoolOption::NoScrub => write!(f, "noscrub"),
            PoolOption::NoDeepScrub => write!(f, "nodeep-scrub"),
            PoolOption::HitSetType => write!(f, "hit_set_type"),
            PoolOption::HitSetPeriod => write!(f, "hit_set_period"),
            PoolOption::HitSetCount => write!(f, "hit_set_count"),
            PoolOption::HitSetFpp => write!(f, "hit_set_fpp"),
            PoolOption::UseGmtHitset => write!(f, "use_gmt_hitset"),
            PoolOption::TargetMaxBytes => write!(f, "target_max_bytes"),
            PoolOption::TargetMaxObjects => write!(f, "target_max_objects"),
            PoolOption::CacheTargetDirtyRatio => write!(f, "cache_target_dirty_ratio"),
            PoolOption::CacheTargetDirtyHighRatio => write!(f, "cache_target_dirty_high_ratio"),
            PoolOption::CacheTargetFullRatio => write!(f, "cache_target_full_ratio"),
            PoolOption::CacheMinFlushAge => write!(f, "cache_min_flush_age"),
            PoolOption::CacheMinEvictAge => write!(f, "cachem_min_evict_age"),
            PoolOption::Auid => write!(f, "auid"),
            PoolOption::MinReadRecencyForPromote => write!(f, "min_read_recency_for_promote"),
            PoolOption::MinWriteRecencyForPromte => write!(f, "min_write_recency_for_promote"),
            PoolOption::FastRead => write!(f, "fast_read"),
            PoolOption::HitSetGradeDecayRate => write!(f, "hit_set_decay_rate"),
            PoolOption::HitSetSearchLastN => write!(f, "hit_set_search_last_n"),
            PoolOption::ScrubMinInterval => write!(f, "scrub_min_interval"),
            PoolOption::ScrubMaxInterval => write!(f, "scrub_max_interval"),
            PoolOption::DeepScrubInterval => write!(f, "deep_scrub_interval"),
            PoolOption::RecoveryPriority => write!(f, "recovery_priority"),
            PoolOption::RecoveryOpPriority => write!(f, "recovery_op_priority"),
            PoolOption::ScrubPriority => write!(f, "scrub_priority"),
            PoolOption::CompressionMode => write!(f, "compression_mode"),
            PoolOption::CompressionAlgorithm => write!(f, "compression_algorithm"),
            PoolOption::CompressionRequiredRatio => write!(f, "compression_required_ratio"),
            PoolOption::CompressionMaxBlobSize => write!(f, "compression_max_blob_size"),
            PoolOption::CompressionMinBlobSize => write!(f, "compression_min_blob_size"),
            PoolOption::CsumType => write!(f, "csum_type"),
            PoolOption::CsumMinBlock => write!(f, "csum_min_block"),
            PoolOption::CsumMaxBlock => write!(f, "csum_max_block"),
            PoolOption::AllocEcOverwrites => write!(f, "allow_ec_overwrites"),
        }
    }
}

impl AsRef<str> for PoolOption {
    fn as_ref(&self) -> &str {
        match *self {
            PoolOption::Size => "size",
            PoolOption::MinSize => "min_size",
            PoolOption::CrashReplayInterval => "crash_replay_interval",
            PoolOption::PgNum => "pg_num",
            PoolOption::PgpNum => "pgp_num",
            PoolOption::CrushRule => "crush_rule",
            PoolOption::HashPsPool => "hashpspool",
            PoolOption::NoDelete => "nodelete",
            PoolOption::NoPgChange => "nopgchange",
            PoolOption::NoSizeChange => "nosizechange",
            PoolOption::WriteFadviceDontNeed => "write_fadvice_dontneed",
            PoolOption::NoScrub => "noscrub",
            PoolOption::NoDeepScrub => "nodeep-scrub",
            PoolOption::HitSetType => "hit_set_type",
            PoolOption::HitSetPeriod => "hit_set_period",
            PoolOption::HitSetCount => "hit_set_count",
            PoolOption::HitSetFpp => "hit_set_fpp",
            PoolOption::UseGmtHitset => "use_gmt_hitset",
            PoolOption::TargetMaxBytes => "target_max_bytes",
            PoolOption::TargetMaxObjects => "target_max_objects",
            PoolOption::CacheTargetDirtyRatio => "cache_target_dirty_ratio",
            PoolOption::CacheTargetDirtyHighRatio => "cache_target_dirty_high_ratio",
            PoolOption::CacheTargetFullRatio => "cache_target_full_ratio",
            PoolOption::CacheMinFlushAge => "cache_min_flush_age",
            PoolOption::CacheMinEvictAge => "cachem_min_evict_age",
            PoolOption::Auid => "auid",
            PoolOption::MinReadRecencyForPromote => "min_read_recency_for_promote",
            PoolOption::MinWriteRecencyForPromte => "min_write_recency_for_promote",
            PoolOption::FastRead => "fast_read",
            PoolOption::HitSetGradeDecayRate => "hit_set_decay_rate",
            PoolOption::HitSetSearchLastN => "hit_set_search_last_n",
            PoolOption::ScrubMinInterval => "scrub_min_interval",
            PoolOption::ScrubMaxInterval => "scrub_max_interval",
            PoolOption::DeepScrubInterval => "deep_scrub_interval",
            PoolOption::RecoveryPriority => "recovery_priority",
            PoolOption::RecoveryOpPriority => "recovery_op_priority",
            PoolOption::ScrubPriority => "scrub_priority",
            PoolOption::CompressionMode => "compression_mode",
            PoolOption::CompressionAlgorithm => "compression_algorithm",
            PoolOption::CompressionRequiredRatio => "compression_required_ratio",
            PoolOption::CompressionMaxBlobSize => "compression_max_blob_size",
            PoolOption::CompressionMinBlobSize => "compression_min_blob_size",
            PoolOption::CsumType => "csum_type",
            PoolOption::CsumMinBlock => "csum_min_block",
            PoolOption::CsumMaxBlock => "csum_max_block",
            PoolOption::AllocEcOverwrites => "allow_ec_overwrites",
        }
    }
}

impl fmt::Display for HealthStatus {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            HealthStatus::Err => write!(f, "HEALTH_ERR"),
            HealthStatus::Ok => write!(f, "HEALTH_OK"),
            HealthStatus::Warn => write!(f, "HEALTH_WARN"),
        }
    }
}

impl AsRef<str> for HealthStatus {
    fn as_ref(&self) -> &str {
        match *self {
            HealthStatus::Err => "HEALTH_ERR",
            HealthStatus::Ok => "HEALTH_OK",
            HealthStatus::Warn => "HEALTH_WARN",
        }
    }
}

impl fmt::Display for MonState {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            MonState::Probing => write!(f, "probing"),
            MonState::Synchronizing => write!(f, "synchronizing"),
            MonState::Electing => write!(f, "electing"),
            MonState::Leader => write!(f, "leader"),
            MonState::Peon => write!(f, "peon"),
            MonState::Shutdown => write!(f, "shutdown"),
        }
    }
}

impl AsRef<str> for MonState {
    fn as_ref(&self) -> &str {
        match *self {
            MonState::Probing => "probing",
            MonState::Synchronizing => "synchronizing",
            MonState::Electing => "electing",
            MonState::Leader => "leader",
            MonState::Peon => "peon",
            MonState::Shutdown => "shutdown",
        }
    }
}

impl fmt::Display for RoundStatus {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            RoundStatus::Finished => write!(f, "finished"),
            RoundStatus::OnGoing => write!(f, "on-going"),
        }
    }
}

impl AsRef<str> for RoundStatus {
    fn as_ref(&self) -> &str {
        match *self {
            RoundStatus::Finished => "finished",
            RoundStatus::OnGoing => "on-going",
        }
    }
}

pub fn cluster_health(cluster_handle: &Rados) -> RadosResult<ClusterHealth> {
    let cmd = json!({
        "prefix": "health",
        "format": "json"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Check with the monitor whether a given key exists
pub fn config_key_exists(cluster_handle: &Rados, key: &str) -> RadosResult<bool> {
    let cmd = json!({
        "prefix": "config-key exists",
        "key": key,
    });

    let result = match cluster_handle.ceph_mon_command_without_data(&cmd) {
        Ok(data) => data,
        Err(e) => {
            match e {
                RadosError::Error(e) => {
                    // Ceph returns ENOENT here but RadosError masks that
                    // by turning it into a string first
                    if e.contains("doesn't exist") {
                        return Ok(false);
                    } else {
                        return Err(RadosError::Error(e));
                    }
                }
                _ => return Err(e),
            }
        }
    };
    // I don't know why but config-key exists uses the status message
    // and not the regular output buffer
    match result.1 {
        Some(status) => {
            if status.contains("exists") {
                Ok(true)
            } else {
                Err(RadosError::Error(format!(
                    "Unable to parse config-key exists output: {}",
                    status,
                )))
            }
        }
        None => Err(RadosError::Error(format!(
            "Unable to parse config-key exists output: {:?}",
            result.1,
        ))),
    }
}

/// Ask the monitor for the value of the configuration key
pub fn config_key_get(cluster_handle: &Rados, key: &str) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "config-key get",
        "key": key,
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(val) => Ok(val.to_string()),
        None => Err(RadosError::Error(format!(
            "Unable to parse config-key get output: {:?}",
            return_data,
        ))),
    }
}

/// Remove a given configuration key from the monitor cluster
pub fn config_key_remove(cluster_handle: &Rados, key: &str, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "config-key rm",
        "key": key,
        "format": "json"
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// Set a given configuration key in the monitor cluster
pub fn config_key_set(
    cluster_handle: &Rados,
    key: &str,
    value: &str,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "config-key set",
        "key": key,
        "val": value,
        "format": "json"
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_out(cluster_handle: &Rados, osd_id: u64, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd out",
        "ids": [osd_id.to_string()]
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_crush_remove(cluster_handle: &Rados, osd_id: u64, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd crush remove",
        "name": format!("osd.{}", osd_id),
    });
    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// Get a list of all pools in the cluster
pub fn osd_pool_ls(cluster_handle: &Rados) -> RadosResult<Vec<String>> {
    let cmd = json!({
        "prefix": "osd pool ls",
        "format": "json",
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Query a ceph pool.
pub fn osd_pool_get(
    cluster_handle: &Rados,
    pool: &str,
    choice: &PoolOption,
) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "osd pool get",
        "pool": pool,
        "var": choice,
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(res) => Ok(res.into()),
        None => Err(RadosError::Error(format!(
            "Unable to parse osd pool get output: {:?}",
            return_data,
        ))),
    }
}

/// Set a pool value
pub fn osd_pool_set(
    cluster_handle: &Rados,
    pool: &str,
    key: &PoolOption,
    value: &str,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd pool set",
        "pool": pool,
        "var": key,
        "val": value,
    });
    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_set(
    cluster_handle: &Rados,
    key: &OsdOption,
    force: bool,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = if force {
        json!({
            "prefix": "osd set",
            "key": key,
            "sure": "--yes-i-really-mean-it",
        })
    } else {
        json!({
            "prefix": "osd set",
            "key": key,
        })
    };
    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_unset(cluster_handle: &Rados, key: &OsdOption, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd unset",
        "key": key,
    });
    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub enum CrushNodeStatus {
    Up,
    Down,
    In,
    Out,
    Destroyed,
}

impl CrushNodeStatus {
    pub fn to_string(&self) -> String {
        match self {
            CrushNodeStatus::Up => "up".to_string(),
            CrushNodeStatus::Down => "down".to_string(),
            CrushNodeStatus::In => "in".to_string(),
            CrushNodeStatus::Out => "out".to_string(),
            CrushNodeStatus::Destroyed => "destroyed".to_string(),
        }
    }
}

/// get a crush tree of all osds that have the given status
pub fn osd_tree_status(cluster_handle: &Rados, status: CrushNodeStatus) -> RadosResult<CrushTree> {
    let cmd = json!({
        "prefix": "osd tree",
        "states" : &[&status.to_string()],
        "format": "json-pretty"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

pub fn osd_tree(cluster_handle: &Rados) -> RadosResult<CrushTree> {
    let cmd = json!({
        "prefix": "osd tree",
        "format": "json"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

// Get cluster status
pub fn status(cluster_handle: &Rados) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "status",
        "format": "json"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(res) => Ok(res.into()),
        None => Err(RadosError::Error(format!(
            "Unable to parse status output: {:?}",
            return_data,
        ))),
    }
}

/// List all the monitors in the cluster and their current rank
pub fn mon_dump(cluster_handle: &Rados) -> RadosResult<MonDump> {
    let cmd = json!({
        "prefix": "mon dump",
        "format": "json"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

pub fn mon_getmap(cluster_handle: &Rados, epoch: Option<u64>) -> RadosResult<Vec<u8>> {
    let mut cmd = json!({
        "prefix": "mon getmap"
    });
    if let Some(epoch) = epoch {
        cmd["epoch"] = json!(epoch);
    }

    Ok(cluster_handle.ceph_mon_command_without_data(&cmd)?.0)
}

/// Get the mon quorum
pub fn mon_quorum(cluster_handle: &Rados) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "quorum_status",
        "format": "json"
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Get the mon status
pub fn mon_status(cluster_handle: &Rados) -> RadosResult<MonStatus> {
    let cmd = json!({
        "prefix": "mon_status",
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Show mon daemon version
pub fn version(cluster_handle: &Rados) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "version",
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(res) => Ok(res.to_string()),
        None => Err(RadosError::Error(format!(
            "Unable to parse version output: {:?}",
            return_data,
        ))),
    }
}

pub fn osd_pool_quota_get(cluster_handle: &Rados, pool: &str) -> RadosResult<u64> {
    let cmd = json!({
        "prefix": "osd pool get-quota",
        "pool": pool
    });
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(res) => Ok(u64::from_str(res)?),
        None => Err(RadosError::Error(format!(
            "Unable to parse osd pool quota-get output: {:?}",
            return_data,
        ))),
    }
}

pub fn auth_del(cluster_handle: &Rados, osd_id: u64, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "auth del",
        "entity": format!("osd.{}", osd_id)
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_rm(cluster_handle: &Rados, osd_id: u64, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd rm",
        "ids": [osd_id.to_string()]
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

pub fn osd_create(cluster_handle: &Rados, id: Option<u64>, simulate: bool) -> RadosResult<u64> {
    let cmd = match id {
        Some(osd_id) => json!({
            "prefix": "osd create",
            "id": format!("osd.{}", osd_id),
        }),
        None => json!({
            "prefix": "osd create"
        }),
    };

    if simulate {
        return Ok(0);
    }

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(num) => Ok(u64::from_str(num)?),
        None => Err(RadosError::Error(format!(
            "Unable to parse osd create output: {:?}",
            return_data,
        ))),
    }
}

// Add a new mgr to the cluster
pub fn mgr_auth_add(cluster_handle: &Rados, mgr_id: &str, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "auth add",
        "entity": format!("mgr.{}", mgr_id),
        "caps": ["mon", "allow profile mgr", "osd", "allow *", "mds", "allow *"],
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

// Add a new osd to the cluster
pub fn osd_auth_add(cluster_handle: &Rados, osd_id: u64, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "auth add",
        "entity": format!("osd.{}", osd_id),
        "caps": ["mon", "allow rwx", "osd", "allow *"],
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// Get a ceph-x key.  The id parameter can be either a number or a string
/// depending on the type of client so I went with string.
pub fn auth_get_key(cluster_handle: &Rados, client_type: &str, id: &str) -> RadosResult<String> {
    let cmd = json!({
        "prefix": "auth get-key",
        "entity": format!("{}.{}", client_type, id),
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    let mut l = return_data.lines();
    match l.next() {
        Some(key) => Ok(key.into()),
        None => Err(RadosError::Error(format!(
            "Unable to parse auth get-key: {:?}",
            return_data,
        ))),
    }
}

// ceph osd crush add {id-or-name} {weight}  [{bucket-type}={bucket-name} ...]
/// add or update crushmap position and weight for an osd
pub fn osd_crush_add(
    cluster_handle: &Rados,
    osd_id: u64,
    weight: f64,
    host: &str,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd crush add",
        "id": osd_id,
        "weight": weight,
        "args": [format!("host={}", host)]
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

// Luminous mgr commands below

/// dump the latest MgrMap
pub fn mgr_dump(cluster_handle: &Rados) -> RadosResult<MgrDump> {
    let cmd = json!({
        "prefix": "mgr dump",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Treat the named manager daemon as failed
pub fn mgr_fail(cluster_handle: &Rados, mgr_id: &str, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "mgr fail",
        "name": mgr_id,
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// List active mgr modules
pub fn mgr_list_modules(cluster_handle: &Rados) -> RadosResult<Vec<String>> {
    let cmd = json!({
        "prefix": "mgr module ls",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// List service endpoints provided by mgr modules
pub fn mgr_list_services(cluster_handle: &Rados) -> RadosResult<Vec<String>> {
    let cmd = json!({
        "prefix": "mgr services",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// Enable a mgr module
pub fn mgr_enable_module(
    cluster_handle: &Rados,
    module: &str,
    force: bool,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = if force {
        json!({
            "prefix": "mgr module enable",
            "module": module,
            "force": "--force",
        })
    } else {
        json!({
            "prefix": "mgr module enable",
            "module": module,
        })
    };

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// Disable a mgr module
pub fn mgr_disable_module(cluster_handle: &Rados, module: &str, simulate: bool) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "mgr module disable",
        "module": module,
    });

    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// dump metadata for all daemons.  Note this only works for Luminous+
pub fn mgr_metadata(cluster_handle: &Rados) -> RadosResult<Vec<MgrMetadata>> {
    let vrsn: CephVersion = version(cluster_handle)?.parse()?;
    if vrsn < CephVersion::Luminous {
        return Err(RadosError::MinVersion(CephVersion::Luminous, vrsn));
    }
    let cmd = json!({
        "prefix": "mgr metadata",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// dump metadata for all osds
pub fn osd_metadata(cluster_handle: &Rados) -> RadosResult<Vec<OsdMetadata>> {
    let cmd = json!({
        "prefix": "osd metadata",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// get osd metadata for a specific osd id
pub fn osd_metadata_by_id(cluster_handle: &Rados, osd_id: u64) -> RadosResult<OsdMetadata> {
    let cmd = json!({
        "prefix": "osd metadata",
        "id": osd_id,
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    trace!("{:?}", return_data);
    Ok(serde_json::from_str(&return_data)?)
}

/// reweight an osd in the CRUSH map
pub fn osd_crush_reweight(
    cluster_handle: &Rados,
    osd_id: u64,
    weight: f64,
    simulate: bool,
) -> RadosResult<()> {
    let cmd = json!({
        "prefix": "osd crush reweight",
        "name":  format!("osd.{}", osd_id),
        "weight": weight,
    });
    if !simulate {
        cluster_handle.ceph_mon_command_without_data(&cmd)?;
    }
    Ok(())
}

/// check if a single osd is safe to destroy/remove
pub fn osd_safe_to_destroy(cluster_handle: &Rados, osd_id: u64) -> bool {
    let cmd = json!({
        "prefix": "osd safe-to-destroy",
        "ids": [osd_id.to_string()]
    });
    match cluster_handle.ceph_mon_command_without_data(&cmd) {
        Err(_) => false,
        Ok(_) => true,
    }
}

/// count ceph-mgr daemons by metadata field property
pub fn mgr_count_metadata(
    cluster_handle: &Rados,
    property: &str,
) -> RadosResult<HashMap<String, u64>> {
    let cmd = json!({
        "prefix": "mgr count-metadata",
        "name": property,
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

/// check running versions of ceph-mgr daemons
pub fn mgr_versions(cluster_handle: &Rados) -> RadosResult<HashMap<String, u64>> {
    let cmd = json!({
        "prefix": "mgr versions",
    });

    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}

pub fn pg_stat(cluster_handle: &Rados) -> RadosResult<PgStat> {
    let cmd = json!({ "prefix": "pg stat", "format": "json"});
    let result = cluster_handle.ceph_mon_command_without_data(&cmd)?;
    let return_data = String::from_utf8(result.0)?;
    Ok(serde_json::from_str(&return_data)?)
}