conky/src/top.h

134 lines
3.5 KiB
C

/*
*
* Conky, a system monitor, based on torsmo
*
* Any original torsmo code is licensed under the BSD license
*
* All code written since the fork of torsmo is licensed under the GPL
*
* Please see COPYING for details
*
* Copyright (c) 2005 Adi Zaimi, Dan Piponi <dan@tanelorn.demon.co.uk>,
* Dave Clark <clarkd@skynet.ca>
* Copyright (c) 2005-2021 Brenden Matthews, Philip Kovacs, et. al.
* (see AUTHORS)
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _top_h_
#define _top_h_
/* Ensure there's an operating system defined.
* compile with gcc -DOS ...
* There is *no* default because every OS has it's own way of revealing
* CPU/memory usage. */
/******************************************
* Includes *
******************************************/
#include "conky.h"
#include "text_object.h"
#define CPU_THRESHHOLD 0 /* threshold for the cpu diff to appear */
#include <assert.h>
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <math.h>
#include <signal.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <pwd.h>
#include <regex.h>
/******************************************
* Defines *
******************************************/
/* XXX: I shouldn't really use this BUFFER_LEN variable but scanf is so lame
* and it'll take me a while to write a replacement. */
#define BUFFER_LEN 1024
#define MAX_SP 10 // number of elements to sort
/******************************************
* Process class *
******************************************/
struct process {
struct process *next;
struct process *previous;
pid_t pid;
char *name;
char *basename;
uid_t uid;
float amount;
// User and kernel times are in hundredths of seconds
unsigned long user_time;
unsigned long total;
unsigned long kernel_time;
unsigned long previous_user_time;
unsigned long previous_kernel_time;
unsigned long total_cpu_time;
unsigned long previous_total_cpu_time;
unsigned long long vsize;
unsigned long long rss;
#ifdef BUILD_IOSTATS
unsigned long long read_bytes;
unsigned long long previous_read_bytes;
unsigned long long write_bytes;
unsigned long long previous_write_bytes;
float io_perc;
#endif
unsigned int time_stamp;
unsigned int counted;
unsigned int changed;
};
struct sorted_process {
struct sorted_process *greater;
struct sorted_process *less;
struct process *proc;
};
/* lookup a program by it's name */
struct process *get_process_by_name(const char *);
int parse_top_args(const char *s, const char *arg, struct text_object *obj);
int update_top(void);
void get_top_info(void);
extern struct process *first_process;
extern unsigned long g_time;
struct process *get_process(pid_t pid);
#endif /* _top_h_ */