1998-08-07 Martin Baulig <martin@home-of-linux.org> * glibtop.h (_glibtop): New fields `error_method', `sysdeps' and `required'. I added an improved error handling: the client can tell the libraries which fields are absolutely required for each features and if it fails to set one of them, this will create an error which is handled depending upon the `error_method'. * include/glibtop/open.h: Define some constants for `error_method'. * lib/sysdeps.c (glibtop_get_sysdeps_r): No longer actually call any sysdeps function, it now simply copies `server->sysdeps'. (_glibtop_init_hook_s): Added. List of functions to be called during `glibtop_init_s' set to `glibtop_init_<no-suid-feature>_s'. * include/glibtop/sysdeps.h (<glibtop/union.h>): Removed. (glibtop_init_func_t): New typedef. (_glibtop_init_hook_s): Added. * sysdeps/linux/*.c (glibtop_init_<feature>_s): New functions. (glibtop_get_proc_*): Zero is now a valid pid. * sysdeps/kernel/*.c (glibtop_init_<feature>_s): New functions. (glibtop_get_proc_*): Zero is now a valid pid. 1998-08-06 Martin Baulig <martin@home-of-linux.org>
88 lines
2.8 KiB
C
88 lines
2.8 KiB
C
/* $Id$ */
|
|
|
|
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
This file is part of the Gnome Top Library.
|
|
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
|
|
|
The Gnome Top Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The Gnome Top Library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <glibtop.h>
|
|
#include <glibtop/parameter.h>
|
|
|
|
#define _write_data(ptr,size) \
|
|
if ((data_ptr == NULL) || (data_size < size)) return -size; \
|
|
if (ptr == NULL) { strcpy (data_ptr, ""); return 1; } \
|
|
memcpy (data_ptr, ptr, size); \
|
|
return size;
|
|
|
|
#define _check_data(size) \
|
|
if ((data_ptr == NULL) || (data_size != size)) { \
|
|
glibtop_error_r (server, "glibtop_set_parameter (%d): " \
|
|
"Expected %lu bytes but got %lu.", \
|
|
parameter, size, data_size); \
|
|
return; \
|
|
}
|
|
|
|
#define _strlen(ptr) (ptr ? strlen (ptr) : 0)
|
|
|
|
size_t
|
|
glibtop_get_parameter_l (glibtop *server, const unsigned parameter,
|
|
void *data_ptr, size_t data_size)
|
|
{
|
|
switch (parameter) {
|
|
case GLIBTOP_PARAM_METHOD:
|
|
_write_data (&server->method,
|
|
sizeof (server->method));
|
|
case GLIBTOP_PARAM_FEATURES:
|
|
_write_data (&server->features,
|
|
sizeof (server->features));
|
|
case GLIBTOP_PARAM_COMMAND:
|
|
_write_data (server->server_command,
|
|
_strlen(server->server_command));
|
|
case GLIBTOP_PARAM_HOST:
|
|
_write_data (server->server_host,
|
|
_strlen(server->server_host));
|
|
case GLIBTOP_PARAM_PORT:
|
|
_write_data (&server->server_port,
|
|
sizeof (server->server_port));
|
|
case GLIBTOP_PARAM_ERROR_METHOD:
|
|
_write_data (&server->error_method,
|
|
sizeof (server->error_method));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
glibtop_set_parameter_l (glibtop *server, const unsigned parameter,
|
|
const void *data_ptr, size_t data_size)
|
|
{
|
|
switch (parameter) {
|
|
case GLIBTOP_PARAM_METHOD:
|
|
_check_data (sizeof (server->method));
|
|
memcpy (&server->method, data_ptr, data_size);
|
|
break;
|
|
case GLIBTOP_PARAM_FEATURES:
|
|
_check_data (sizeof (server->features));
|
|
memcpy (&server->features, data_ptr, data_size);
|
|
break;
|
|
case GLIBTOP_PARAM_ERROR_METHOD:
|
|
_check_data (sizeof (server->error_method));
|
|
memcpy (&server->error_method, data_ptr, data_size);
|
|
break;
|
|
}
|
|
}
|