btop/src/btop_shared.hpp

77 lines
1.9 KiB
C++
Raw Normal View History

2021-05-11 09:46:41 +12:00
/* Copyright 2021 Aristocratos (jakob@qvantnet.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
indent = tab
tab-size = 4
*/
#pragma once
2021-05-11 09:46:41 +12:00
#include <string>
#include <vector>
#include <filesystem>
2021-06-20 10:49:13 +12:00
#include <atomic>
2021-05-20 09:21:56 +12:00
2021-06-20 10:49:13 +12:00
using std::string, std::vector;
2021-05-11 09:46:41 +12:00
namespace Global {
2021-06-21 08:07:04 +12:00
extern const string Version;
extern int coreCount;
2021-06-21 08:07:04 +12:00
extern string banner;
}
2021-06-05 11:41:24 +12:00
namespace Tools {
//* Platform specific function for system_uptime (seconds since last restart)
double system_uptime();
}
2021-06-26 09:58:19 +12:00
namespace Shared {
//* Initialize platform specific needed variables and check for errors
void init();
}
2021-05-15 04:54:37 +12:00
namespace Proc {
extern size_t numpids;
2021-06-20 10:49:13 +12:00
extern std::atomic<bool> stop;
extern std::atomic<bool> collecting;
//? Contains the valid sorting options for processes
extern vector<string> sort_vector;
2021-05-15 04:54:37 +12:00
2021-06-13 04:49:27 +12:00
//* Container for process information
struct proc_info {
size_t pid;
2021-06-05 11:41:24 +12:00
string name = "", cmd = "";
size_t threads = 0;
string user = "";
uint64_t mem = 0;
double cpu_p = 0.0, cpu_c = 0.0;
char state = '0';
2021-06-20 08:48:31 +12:00
uint64_t cpu_n = 0, p_nice = 0, ppid = 0;
2021-06-13 04:49:27 +12:00
string prefix = "";
};
2021-05-15 04:54:37 +12:00
//* Container for process info box
struct detail_container {
proc_info entry;
string elapsed, parent, status, io_read, io_write;
};
extern detail_container detailed;
extern vector<proc_info> current_procs;
2021-06-26 09:58:19 +12:00
//* Collects and sorts process information from /proc, saves and returns reference to Proc::current_procs;
vector<proc_info>& collect();
}