Delete multiactledPi.c

This commit is contained in:
manuelkamp 2021-12-21 23:02:28 +01:00 committed by GitHub
parent 9bbf7fccb1
commit 94cfb5d9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 384 deletions

View File

@ -1,384 +0,0 @@
/**************************************************************************
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* For more information, please refer to <http://unlicense.org/>
*
* A disk activity light for the Raspberry Pi, using an LED connected to a GPIO pin.
* Based on hddled.c - http://members.optusnet.com.au/foonly/whirlpool/code/hddled.c -
* This program uses the pigpio library.
*
*
* To compile:
* gcc -Wall -O3 -pthread -lpigpio -lrt -o multiactledPi multiactledPi.c
*
* Options:
* -d, --detach Detach from terminal (become a daemon)
* -h, --hd=VALUE GPIO disk activity pin (using BCM_GPIO numbering scheme) where LED is connected (default: 12)
* -t, --tx=VALUE GPIO transmit activity pin (using BCM_GPIO numbering scheme) here LED is connected (default: 7)
* -r, --rx=VALUE GPIO receive activity pin (using BCM_GPIO numbering scheme) here LED is connected (default: 8)
* -R, --refresh=VALUE Refresh interval (default: 20 ms)
*
* Default LED Pins - BCM_GPIO 12, 7, and 8 are physical pins 32, 26, and 24 on the Pi's 40-pin header, respectively..
* Note: Pins 7 and 8 are also used for the SPI interface. If you have SPI add-ons connected,
* you'll have to use the -t and -r options to change them to other, unused pins.
*
* GPIO pin ----|>|----[330]----+
* LED |
* ===
* Ground
*/
#define VMSTAT "/proc/vmstat"
#define NETDEVICES "/proc/net/dev"
#define _GNU_SOURCE
#include <argp.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <pigpio.h>
static unsigned int o_refresh = 20; /* milliseconds */
static unsigned int o_gpiopin_hd = 12; /* BCM numbering scheme */
static unsigned int o_gpiopin_tx = 7;
static unsigned int o_gpiopin_rx = 8;
static int o_detach = 0;
static volatile sig_atomic_t running = 1;
static char *line = NULL;
static size_t len = 0;
/* Update the TX LED */
void tx_led(int on) {
static int tx_current = 1; /* Ensure the LED turns off on first call */
if (tx_current == on)
return;
if (on) {
gpioWrite( o_gpiopin_tx, PI_HIGH );
} else {
gpioWrite( o_gpiopin_tx, PI_LOW );
}
tx_current = on;
}
/* Update the RX LED */
void rx_led(int on) {
static int rx_current = 1; /* Ensure the LED turns off on first call */
if (rx_current == on)
return;
if (on) {
gpioWrite( o_gpiopin_rx, PI_HIGH );
} else {
gpioWrite( o_gpiopin_rx, PI_LOW );
}
rx_current = on;
}
/* Update the LED */
void hd_led(int on) {
static int hd_current = 1; /* Ensure the LED turns off on first call */
if (hd_current == on)
return;
if (on) {
gpioWrite( o_gpiopin_hd, PI_HIGH );
} else {
gpioWrite( o_gpiopin_hd, PI_LOW );
}
hd_current = on;
}
/* Reread the vmstat file */
int diskact(FILE *vmstat) {
static unsigned int prev_pgpgin, prev_pgpgout;
unsigned int pgpgin, pgpgout;
int found_pgpgin, found_pgpgout;
int result;
/* Reload the vmstat file */
result = TEMP_FAILURE_RETRY(fseek(vmstat, 0L, SEEK_SET));
if (result) {
perror("Could not rewind " VMSTAT);
return result;
}
/* Clear glibc's buffer */
result = TEMP_FAILURE_RETRY(fflush(vmstat));
if (result) {
perror("Could not flush input stream");
return result;
}
/* Extract the I/O stats */
found_pgpgin = found_pgpgout = 0;
while (getline(&line, &len, vmstat) != -1 && errno != EINTR) {
if (sscanf(line, "pgpgin %u", &pgpgin))
found_pgpgin++;
else if (sscanf(line, "pgpgout %u", &pgpgout))
found_pgpgout++;
if (found_pgpgin && found_pgpgout)
break;
}
if (!found_pgpgin || !found_pgpgout) {
fprintf(stderr, "Could not find required lines in " VMSTAT);
return -1;
}
/* Anything changed? */
result =
(prev_pgpgin != pgpgin) ||
(prev_pgpgout != pgpgout);
prev_pgpgin = pgpgin;
prev_pgpgout = pgpgout;
return result;
}
/* Reread the netdevices file */
int netact(FILE *netdevices) {
static unsigned int prev_inpackets, prev_outpackets;
unsigned int inpackets, outpackets;
unsigned int device_inpackets, device_outpackets;
int found_inpackets, found_outpackets;
int result;
char *ptr;
char device[32];
/* Go to the beginning of the netdevices file */
result = TEMP_FAILURE_RETRY(fseek(netdevices, 0L, SEEK_SET));
if (result) {
perror("Could not rewind " NETDEVICES);
return result;
}
/* Clear glibc's buffer */
result = TEMP_FAILURE_RETRY(fflush(netdevices));
if (result) {
perror("Could not flush input stream");
return result;
}
/* Extract the I/O stats */
inpackets = outpackets = 0;
found_inpackets = found_outpackets = 0;
device_inpackets = device_outpackets = 0;
while (getline(&line, &len, netdevices) != -1 && errno != EINTR) {
ptr = line;
while (*ptr == ' ') ptr++; // Skip leading spaces
if (sscanf(ptr, "%s %*u %u %*u %*u %*u %*u %*u %*u %*u %u %*u %*u %*u %*u %*u %*u", device, &device_inpackets, &device_outpackets)) {
if(strstr(device, "lo:")) continue; // Skip loopback interface
found_inpackets++;
found_outpackets++;
inpackets += device_inpackets;
outpackets += device_outpackets;
}
}
if (!found_inpackets || !found_outpackets) {
fprintf(stderr, "Could not find required lines in " NETDEVICES);
return -1;
}
/* Anything changed? */
if( prev_inpackets != inpackets )
rx_led( PI_HIGH );
else
rx_led( PI_LOW );
if( prev_outpackets != outpackets )
tx_led( PI_HIGH );
else
tx_led( PI_LOW );
prev_inpackets = inpackets;
prev_outpackets = outpackets;
return 0;
}
/* Signal handler -- break out of the main loop */
void shutdown(int sig) {
running = 0;
}
/* Argp parser function */
error_t parse_options(int key, char *arg, struct argp_state *state) {
switch (key) {
case 'd':
o_detach = 1;
break;
case 'R':
o_refresh = strtol(arg, NULL, 10);
if (o_refresh < 10)
argp_failure(state, EXIT_FAILURE, 0,
"refresh interval must be at least 10");
break;
case 'h':
o_gpiopin_hd = strtol(arg, NULL, 10);
if ((o_gpiopin_hd < 0) || (o_gpiopin_hd > 29))
argp_failure(state, EXIT_FAILURE, 0,
"pin number must be between 0 and 29");
break;
case 't':
o_gpiopin_tx = strtol(arg, NULL, 10);
if ((o_gpiopin_tx < 0) || (o_gpiopin_tx > 29))
argp_failure(state, EXIT_FAILURE, 0,
"pin number must be between 0 and 29");
break;
case 'r':
o_gpiopin_rx = strtol(arg, NULL, 10);
if ((o_gpiopin_rx < 0) || (o_gpiopin_rx > 29))
argp_failure(state, EXIT_FAILURE, 0,
"pin number must be between 0 and 29");
break;
}
return 0;
}
int main(int argc, char **argv) {
struct argp_option options[] = {
{ "detach", 'd', NULL, 0, "Detach from terminal" },
{ "hd", 'h', "VALUE", 0, "GPIO pin where LED is connected (disk activity) (default: BCM 4, physical pin 12 on the P1 header)" },
{ "tx" , 't', "VALUE", 0, "GPIO pin where LED is connected (transmit data) (default: BCM 7 physical pin 3 on the P1 header)" },
{ "rx", 'r', "VALUE", 0, "GPIO pin where LED is connected (receive data) (default: BCM 8 physical pin on the header)" },
{ "refresh", 'R', "VALUE", 0, "Refresh interval (default: 20 ms)" },
{ 0 },
};
struct argp parser = {
NULL, parse_options, NULL,
"Show disk and network activity using LEDs wired to GPIO pins.",
NULL, NULL, NULL
};
int status = EXIT_FAILURE;
FILE *vmstat = NULL;
FILE *netdevices = NULL;
struct timespec delay;
/* Parse the command-line */
parser.options = options;
if (argp_parse(&parser, argc, argv, ARGP_NO_ARGS, NULL, NULL))
goto out;
delay.tv_sec = o_refresh / 1000;
delay.tv_nsec = 1000000 * (o_refresh % 1000);
/* If we can't set up pigpio, then just bail */
if( gpioInitialise() < 0 ) {
fprintf( stderr, "Unable to setup the piGPIO library. STOP." );
return -1;
}
gpioSetMode( o_gpiopin_hd, PI_OUTPUT );
gpioSetMode( o_gpiopin_rx, PI_OUTPUT );
gpioSetMode( o_gpiopin_tx, PI_OUTPUT );
/* Open the vmstat file */
vmstat = fopen(VMSTAT, "r");
if (!vmstat) {
perror("Could not open " VMSTAT " for reading");
goto out;
}
/* Open the netdevices file */
netdevices = fopen(NETDEVICES, "r");
if (!netdevices) {
perror("Could not open " NETDEVICES " for reading");
goto out;
}
/* Ensure the LED is off */
hd_led(0);
tx_led(0);
rx_led(0);
/* Save the current I/O stat values */
if (diskact(vmstat) < 0)
goto out;
/* Detach from terminal? */
if (o_detach) {
pid_t child = fork();
if (child < 0) {
perror("Could not detach from terminal");
goto out;
}
if (child) {
/* I am the parent */
status = EXIT_SUCCESS;
goto out;
}
}
/* We catch these signals so we can clean up */
{
struct sigaction action;
memset(&action, 0, sizeof(action));
action.sa_handler = shutdown;
sigemptyset(&action.sa_mask);
action.sa_flags = 0; /* We block on usleep; don't use SA_RESTART */
sigaction(SIGHUP, &action, NULL);
sigaction(SIGINT, &action, NULL);
sigaction(SIGTERM, &action, NULL);
}
/* Loop until signal received */
while (running) {
int a;
if (nanosleep(&delay, NULL) < 0)
break;
a = diskact(vmstat);
if (a < 0)
break;
hd_led(a);
if( netact(netdevices) < 0 )
break;
}
/* Ensure the LED is off */
hd_led(0);
tx_led(0);
rx_led(0);
status = EXIT_SUCCESS;
out:
/* Halt any library functions */
gpioTerminate();
if (line) free(line);
if (vmstat) fclose(vmstat);
return status;
}