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
// // Sysinfo // // Copyright (c) 2017 Guillaume Gomez // use crate::sys::{Component, Disk, Networks, Process, Processor}; use crate::{ DiskType, DiskUsage, LoadAvg, NetworksIter, Pid, ProcessStatus, RefreshKind, Signal, User, }; use std::collections::HashMap; use std::ffi::OsStr; use std::fmt::Debug; use std::path::Path; /// Contains all the methods of the [`Disk`][crate::Disk] struct. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{:?}: {:?}", disk.get_name(), disk.get_type()); /// } /// ``` pub trait DiskExt: Debug { /// Returns the disk type. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{:?}", disk.get_type()); /// } /// ``` fn get_type(&self) -> DiskType; /// Returns the disk name. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{:?}", disk.get_name()); /// } /// ``` fn get_name(&self) -> &OsStr; /// Returns the file system used on this disk (so for example: `EXT4`, `NTFS`, etc...). /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{:?}", disk.get_file_system()); /// } /// ``` fn get_file_system(&self) -> &[u8]; /// Returns the mount point of the disk (`/` for example). /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{:?}", disk.get_mount_point()); /// } /// ``` fn get_mount_point(&self) -> &Path; /// Returns the total disk size, in bytes. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{}", disk.get_total_space()); /// } /// ``` fn get_total_space(&self) -> u64; /// Returns the available disk size, in bytes. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new(); /// for disk in s.get_disks() { /// println!("{}", disk.get_available_space()); /// } /// ``` fn get_available_space(&self) -> u64; /// Updates the disk' information. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// for disk in s.get_disks_mut() { /// disk.refresh(); /// } /// ``` fn refresh(&mut self) -> bool; } /// Contains all the methods of the [`Process`][crate::Process] struct. pub trait ProcessExt: Debug { /// Creates a new process only containing the given information. /// /// On windows, the `start_time` argument is ignored. #[doc(hidden)] fn new(pid: Pid, parent: Option<Pid>, start_time: u64) -> Self; /// Sends the given `signal` to the process. /// /// ```no_run /// use sysinfo::{ProcessExt, Signal, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// process.kill(Signal::Kill); /// } /// ``` fn kill(&self, signal: Signal) -> bool; /// Returns the name of the process. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.name()); /// } /// ``` fn name(&self) -> &str; /// Returns the command line. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{:?}", process.cmd()); /// } /// ``` fn cmd(&self) -> &[String]; /// Returns the path to the process. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.exe().display()); /// } /// ``` fn exe(&self) -> &Path; /// Returns the pid of the process. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.pid()); /// } /// ``` fn pid(&self) -> Pid; /// Returns the environment of the process. /// /// Always empty on Windows, except for current process. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{:?}", process.environ()); /// } /// ``` fn environ(&self) -> &[String]; /// Returns the current working directory. /// /// Always empty on Windows. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.cwd().display()); /// } /// ``` fn cwd(&self) -> &Path; /// Returns the path of the root directory. /// /// Always empty on Windows. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.root().display()); /// } /// ``` fn root(&self) -> &Path; /// Returns the memory usage (in kB). /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{} kB", process.memory()); /// } /// ``` fn memory(&self) -> u64; /// Returns the virtual memory usage (in kB). /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{} kB", process.virtual_memory()); /// } /// ``` fn virtual_memory(&self) -> u64; /// Returns the parent pid. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{:?}", process.parent()); /// } /// ``` fn parent(&self) -> Option<Pid>; /// Returns the status of the processus. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{:?}", process.status()); /// } /// ``` fn status(&self) -> ProcessStatus; /// Returns the time of process launch (in seconds). /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("Running since {} seconds", process.start_time()); /// } /// ``` fn start_time(&self) -> u64; /// Returns the total CPU usage (in %). /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// println!("{}%", process.cpu_usage()); /// } /// ``` fn cpu_usage(&self) -> f32; /// Returns number of bytes read and written to disk. /// /// /!\\ On Windows, this method actually returns **ALL** I/O read and written bytes. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new(); /// if let Some(process) = s.get_process(1337) { /// let disk_usage = process.disk_usage(); /// println!("read bytes : new/total => {}/{}", /// disk_usage.read_bytes, /// disk_usage.total_read_bytes, /// ); /// println!("written bytes: new/total => {}/{}", /// disk_usage.written_bytes, /// disk_usage.total_written_bytes, /// ); /// } /// ``` fn disk_usage(&self) -> DiskUsage; } /// Contains all the methods of the [`Processor`][crate::Processor] struct. pub trait ProcessorExt: Debug { /// Returns this processor's usage. /// /// Note: You'll need to refresh it at least twice (diff between the first and the second is /// how CPU usage is computed) at first if you want to have a non-zero value. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}%", processor.get_cpu_usage()); /// } /// ``` fn get_cpu_usage(&self) -> f32; /// Returns this processor's name. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}", processor.get_name()); /// } /// ``` fn get_name(&self) -> &str; /// Returns the processor's vendor id. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}", processor.get_vendor_id()); /// } /// ``` fn get_vendor_id(&self) -> &str; /// Returns the processor's brand. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}", processor.get_brand()); /// } /// ``` fn get_brand(&self) -> &str; /// Returns the processor's frequency. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}", processor.get_frequency()); /// } /// ``` fn get_frequency(&self) -> u64; } /// Contains all the methods of the [`System`][crate::System] type. pub trait SystemExt: Sized + Debug + Default { /// Creates a new [`System`] instance with nothing loaded except the processors list. If you /// want to load components, network interfaces or the disks, you'll have to use the /// `refresh_*_list` methods. [`SystemExt::refresh_networks_list`] for example. /// /// Use the [`refresh_all`] method to update its internal information (or any of the `refresh_` /// method). /// /// [`System`]: crate::System /// [`refresh_all`]: #method.refresh_all /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// ``` fn new() -> Self { Self::new_with_specifics(RefreshKind::new()) } /// Creates a new [`System`] instance with everything loaded. /// /// It is an equivalent of [`SystemExt::new_with_specifics`]`(`[`RefreshKind::everything`]`())`. /// /// [`System`]: crate::System /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// ``` fn new_all() -> Self { Self::new_with_specifics(RefreshKind::everything()) } /// Creates a new [`System`] instance and refresh the data corresponding to the /// given [`RefreshKind`]. /// /// [`System`]: crate::System /// /// ``` /// use sysinfo::{RefreshKind, System, SystemExt}; /// /// // We want everything except disks. /// let mut system = System::new_with_specifics(RefreshKind::everything().without_disks_list()); /// /// assert_eq!(system.get_disks().len(), 0); /// assert!(system.get_processes().len() > 0); /// /// // If you want the disks list afterwards, just call the corresponding /// // "refresh_disks_list": /// system.refresh_disks_list(); /// let disks = system.get_disks(); /// ``` fn new_with_specifics(refreshes: RefreshKind) -> Self; /// Refreshes according to the given [`RefreshKind`]. It calls the corresponding /// "refresh_" methods. /// /// ``` /// use sysinfo::{RefreshKind, System, SystemExt}; /// /// let mut s = System::new_all(); /// /// // Let's just update networks and processes: /// s.refresh_specifics(RefreshKind::new().with_networks().with_processes()); /// ``` fn refresh_specifics(&mut self, refreshes: RefreshKind) { if refreshes.memory() { self.refresh_memory(); } if refreshes.cpu() { self.refresh_cpu(); } if refreshes.components_list() { self.refresh_components_list(); } else if refreshes.components() { self.refresh_components(); } if refreshes.networks_list() { self.refresh_networks_list(); } else if refreshes.networks() { self.refresh_networks(); } if refreshes.processes() { self.refresh_processes(); } if refreshes.disks_list() { self.refresh_disks_list(); } else if refreshes.disks() { self.refresh_disks(); } if refreshes.users_list() { self.refresh_users_list(); } } /// Refreshes system information (RAM, swap, CPU usage and components' temperature). /// /// If you want some more specific refreshes, you might be interested into looking at /// [`refresh_memory`], [`refresh_cpu`] and [`refresh_components`]. /// /// [`refresh_memory`]: SystemExt::refresh_memory /// [`refresh_cpu`]: SystemExt::refresh_memory /// [`refresh_components`]: SystemExt::refresh_components /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_system(); /// ``` fn refresh_system(&mut self) { self.refresh_memory(); self.refresh_cpu(); self.refresh_components(); } /// Refreshes RAM and SWAP usage. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_memory(); /// ``` fn refresh_memory(&mut self); /// Refreshes CPU usage. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_cpu(); /// ``` fn refresh_cpu(&mut self); /// Refreshes components' temperature. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_components(); /// ``` fn refresh_components(&mut self) { for component in self.get_components_mut() { component.refresh(); } } /// Refreshes components list. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new(); /// s.refresh_components_list(); /// ``` fn refresh_components_list(&mut self); /// Gets all processes and updates their information. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_processes(); /// ``` fn refresh_processes(&mut self); /// Refreshes *only* the process corresponding to `pid`. Returns `false` if the process doesn't /// exist. If it isn't listed yet, it'll be added. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_process(1337); /// ``` fn refresh_process(&mut self, pid: Pid) -> bool; /// Refreshes the listed disks' information. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_disks(); /// ``` fn refresh_disks(&mut self) { for disk in self.get_disks_mut() { disk.refresh(); } } /// The disk list will be emptied then completely recomputed. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_disks_list(); /// ``` fn refresh_disks_list(&mut self); /// Refreshes users list. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_users_list(); /// ``` fn refresh_users_list(&mut self); /// Refreshes networks data. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_networks(); /// ``` /// /// It is a shortcut for: /// /// ```no_run /// use sysinfo::{NetworksExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// let networks = s.get_networks_mut(); /// networks.refresh(); /// ``` fn refresh_networks(&mut self) { self.get_networks_mut().refresh(); } /// The network list will be updated: removing not existing anymore interfaces and adding new /// ones. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_networks_list(); /// ``` /// /// This is a shortcut for: /// /// ```no_run /// use sysinfo::{NetworksExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// let networks = s.get_networks_mut(); /// networks.refresh_networks_list(); /// ``` fn refresh_networks_list(&mut self) { self.get_networks_mut().refresh_networks_list(); } /// Refreshes all system, processes, disks and network interfaces information. /// /// Please note that it doesn't recompute disks list, components list, network interfaces /// list nor users list. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let mut s = System::new_all(); /// s.refresh_all(); /// ``` fn refresh_all(&mut self) { self.refresh_system(); self.refresh_processes(); self.refresh_disks(); self.refresh_networks(); } /// Returns the process list. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new_all(); /// for (pid, process) in s.get_processes() { /// println!("{} {}", pid, process.name()); /// } /// ``` fn get_processes(&self) -> &HashMap<Pid, Process>; /// Returns the process corresponding to the given pid or `None` if no such process exists. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new_all(); /// if let Some(process) = s.get_process(1337) { /// println!("{}", process.name()); /// } /// ``` fn get_process(&self, pid: Pid) -> Option<&Process>; /// Returns a list of process containing the given `name`. /// /// ```no_run /// use sysinfo::{ProcessExt, System, SystemExt}; /// /// let s = System::new_all(); /// for process in s.get_process_by_name("htop") { /// println!("{} {}", process.pid(), process.name()); /// } /// ``` fn get_process_by_name(&self, name: &str) -> Vec<&Process> { let mut ret = vec![]; for val in self.get_processes().values() { if val.name().contains(name) { ret.push(val); } } ret } /// Returns "global" processors information (aka the addition of all the processors). /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// println!("{}%", s.get_global_processor_info().get_cpu_usage()); /// ``` fn get_global_processor_info(&self) -> &Processor; /// Returns the list of the processors. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// for processor in s.get_processors() { /// println!("{}%", processor.get_cpu_usage()); /// } /// ``` fn get_processors(&self) -> &[Processor]; /// Returns the number of physical cores on the processor or `None` if it couldn't get it. /// /// In case there are multiple CPUs, it will combine the physical core count of all the CPUs. /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{ProcessorExt, System, SystemExt}; /// /// let s = System::new(); /// println!("{:?}", s.get_physical_core_count()); /// ``` fn get_physical_core_count(&self) -> Option<usize>; /// Returns the RAM size in kB. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_total_memory()); /// ``` fn get_total_memory(&self) -> u64; /// Returns the amount of free RAM in kB. /// /// Generally, "free" memory refers to unallocated memory whereas "available" memory refers to /// memory that is available for (re)use. /// /// Side note: Windows doesn't report "free" memory so this method returns the same value /// as [`get_available_memory`](#tymethod.get_available_memory). /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_free_memory()); /// ``` fn get_free_memory(&self) -> u64; /// Returns the amount of available RAM in kB. /// /// Generally, "free" memory refers to unallocated memory whereas "available" memory refers to /// memory that is available for (re)use. /// /// Side note: Windows doesn't report "free" memory so /// [`get_free_memory`](#tymethod.get_free_memory) returns the same value as this method. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_available_memory()); /// ``` fn get_available_memory(&self) -> u64; /// Returns the amound of used RAM in kB. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_used_memory()); /// ``` fn get_used_memory(&self) -> u64; /// Returns the SWAP size in kB. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_total_swap()); /// ``` fn get_total_swap(&self) -> u64; /// Returns the amount of free SWAP in kB. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_free_swap()); /// ``` fn get_free_swap(&self) -> u64; /// Returns the amount of used SWAP in kB. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("{} kB", s.get_used_swap()); /// ``` fn get_used_swap(&self) -> u64; /// Returns the components list. /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let s = System::new_all(); /// for component in s.get_components() { /// println!("{}: {}°C", component.get_label(), component.get_temperature()); /// } /// ``` fn get_components(&self) -> &[Component]; /// Returns a mutable components list. /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// for component in s.get_components_mut() { /// component.refresh(); /// } /// ``` fn get_components_mut(&mut self) -> &mut [Component]; /// Returns the disks list. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let s = System::new_all(); /// for disk in s.get_disks() { /// println!("{:?}", disk.get_name()); /// } /// ``` fn get_disks(&self) -> &[Disk]; /// Returns the users list. /// /// ```no_run /// use sysinfo::{System, SystemExt, UserExt}; /// /// let mut s = System::new_all(); /// for user in s.get_users() { /// println!("{} is in {} groups", user.get_name(), user.get_groups().len()); /// } /// ``` fn get_users(&self) -> &[User]; /// Returns the disks list. /// /// ```no_run /// use sysinfo::{DiskExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// for disk in s.get_disks_mut() { /// disk.refresh(); /// } /// ``` fn get_disks_mut(&mut self) -> &mut [Disk]; /// Returns the network interfaces object. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, data) in networks { /// println!( /// "[{}] in: {}, out: {}", /// interface_name, /// data.get_received(), /// data.get_transmitted(), /// ); /// } /// ``` fn get_networks(&self) -> &Networks; /// Returns a mutable access to network interfaces. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// let networks = s.get_networks_mut(); /// networks.refresh_networks_list(); /// ``` fn get_networks_mut(&mut self) -> &mut Networks; /// Returns system uptime (in seconds). /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// println!("System running since {} seconds", s.get_uptime()); /// ``` fn get_uptime(&self) -> u64; /// Returns the time (in seconds) when the system booted since UNIX epoch. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("System booted at {} seconds", s.get_boot_time()); /// ``` fn get_boot_time(&self) -> u64; /// Returns the system load average value. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new_all(); /// let load_avg = s.get_load_average(); /// println!( /// "one minute: {}%, five minutes: {}%, fifteen minutes: {}%", /// load_avg.one, /// load_avg.five, /// load_avg.fifteen, /// ); /// ``` fn get_load_average(&self) -> LoadAvg; /// Returns the system name. /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("OS: {:?}", s.get_name()); /// ``` fn get_name(&self) -> Option<String>; /// Returns the system's kernel version. /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("kernel version: {:?}", s.get_kernel_version()); /// ``` fn get_kernel_version(&self) -> Option<String>; /// Returns the system version (e.g. for MacOS this will return 11.1 rather than the kernel version). /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("OS version: {:?}", s.get_os_version()); /// ``` fn get_os_version(&self) -> Option<String>; /// Returns the system long os version (e.g "MacOS 11.2 BigSur"). /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("Long OS Version: {:?}", s.get_long_os_version()); /// ``` fn get_long_os_version(&self) -> Option<String>; /// Returns the system hostname based off DNS /// /// **Important**: this information is computed every time this function is called. /// /// ```no_run /// use sysinfo::{System, SystemExt}; /// /// let s = System::new(); /// println!("Hostname: {:?}", s.get_host_name()); /// ``` fn get_host_name(&self) -> Option<String>; } /// Getting volume of received and transmitted data. pub trait NetworkExt: Debug { /// Returns the number of received bytes since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {} B", network.get_received()); /// } /// ``` fn get_received(&self) -> u64; /// Returns the total number of received bytes. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {} B", network.get_total_received()); /// } /// ``` fn get_total_received(&self) -> u64; /// Returns the number of transmitted bytes since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {} B", network.get_transmitted()); /// } /// ``` fn get_transmitted(&self) -> u64; /// Returns the total number of transmitted bytes. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {} B", network.get_total_transmitted()); /// } /// ``` fn get_total_transmitted(&self) -> u64; /// Returns the number of incoming packets since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {}", network.get_packets_received()); /// } /// ``` fn get_packets_received(&self) -> u64; /// Returns the total number of incoming packets. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {}", network.get_total_packets_received()); /// } /// ``` fn get_total_packets_received(&self) -> u64; /// Returns the number of outcoming packets since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {}", network.get_packets_transmitted()); /// } /// ``` fn get_packets_transmitted(&self) -> u64; /// Returns the total number of outcoming packets. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {}", network.get_total_packets_transmitted()); /// } /// ``` fn get_total_packets_transmitted(&self) -> u64; /// Returns the number of incoming errors since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {}", network.get_errors_on_received()); /// } /// ``` fn get_errors_on_received(&self) -> u64; /// Returns the total number of incoming errors. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {}", network.get_total_errors_on_received()); /// } /// ``` fn get_total_errors_on_received(&self) -> u64; /// Returns the number of outcoming errors since the last refresh. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {}", network.get_errors_on_transmitted()); /// } /// ``` fn get_errors_on_transmitted(&self) -> u64; /// Returns the total number of outcoming errors. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("out: {}", network.get_total_errors_on_transmitted()); /// } /// ``` fn get_total_errors_on_transmitted(&self) -> u64; } /// Interacting with network interfaces. pub trait NetworksExt: Debug { /// Returns an iterator over the network interfaces. /// /// ```no_run /// use sysinfo::{NetworkExt, NetworksExt, System, SystemExt}; /// /// let s = System::new_all(); /// let networks = s.get_networks(); /// for (interface_name, network) in networks { /// println!("in: {} B", network.get_received()); /// } /// ``` fn iter(&self) -> NetworksIter; /// Refreshes the network interfaces list. /// /// ```no_run /// use sysinfo::{NetworksExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// let networks = s.get_networks_mut(); /// networks.refresh_networks_list(); /// ``` fn refresh_networks_list(&mut self); /// Refreshes the network interfaces' content. /// /// ```no_run /// use sysinfo::{NetworksExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// let networks = s.get_networks_mut(); /// networks.refresh(); /// ``` fn refresh(&mut self); } /// Getting a component temperature information. pub trait ComponentExt: Debug { /// Returns the temperature of the component (in celsius degree). /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let s = System::new_all(); /// for component in s.get_components() { /// println!("{}°C", component.get_temperature()); /// } /// ``` fn get_temperature(&self) -> f32; /// Returns the maximum temperature of the component (in celsius degree). /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let s = System::new_all(); /// for component in s.get_components() { /// println!("{}°C", component.get_max()); /// } /// ``` fn get_max(&self) -> f32; /// Returns the highest temperature before the component halts (in celsius degree). /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let s = System::new_all(); /// for component in s.get_components() { /// println!("{:?}°C", component.get_critical()); /// } /// ``` fn get_critical(&self) -> Option<f32>; /// Returns the label of the component. /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let s = System::new_all(); /// for component in s.get_components() { /// println!("{}", component.get_label()); /// } /// ``` fn get_label(&self) -> &str; /// Refreshes component. /// /// ```no_run /// use sysinfo::{ComponentExt, System, SystemExt}; /// /// let mut s = System::new_all(); /// for component in s.get_components_mut() { /// component.refresh(); /// } /// ``` fn refresh(&mut self); } /// Getting information for a user. /// /// It is returned from [`SystemExt::get_users`]. /// /// ```no_run /// use sysinfo::{System, SystemExt, UserExt}; /// /// let mut s = System::new_all(); /// for user in s.get_users() { /// println!("{} is in {} groups", user.get_name(), user.get_groups().len()); /// } /// ``` pub trait UserExt: Debug { /// Returns the name of the user. /// /// ```no_run /// use sysinfo::{System, SystemExt, UserExt}; /// /// let mut s = System::new_all(); /// for user in s.get_users() { /// println!("{}", user.get_name()); /// } /// ``` fn get_name(&self) -> &str; /// Returns the groups of the user. /// /// ```no_run /// use sysinfo::{System, SystemExt, UserExt}; /// /// let mut s = System::new_all(); /// for user in s.get_users() { /// println!("{} is in {:?}", user.get_name(), user.get_groups()); /// } /// ``` fn get_groups(&self) -> &[String]; }