/******************************************************************** * Description: streamer_usr.c * User space part of "streamer", a HAL component that * can be used to stream data from a file onto HAL pins * at a specific realtime sample rate. * * Author: John Kasunich * License: GPL Version 2 * * Copyright (c) 2006 All rights reserved. * ********************************************************************/ /** This file, 'streamer_usr.c', is the user part of a HAL component that allows numbers stored in a file to be "streamed" onto HAL pins at a uniform realtime sample rate. When the realtime module is loaded, it creates a stream in shared memory. Then, the user space program 'hal_stream' is invoked. 'hal_stream' takes input from stdin and writes it to the stream, and the realtime part transfers the data from the stream to HAL pins. Invoking: halstreamer [chan_num] 'chan_num', if present, specifies the streamer channel to use. The default is channel zero. Since hal_stream takes its data from stdin, it will almost always either need to have stdin redirected from a file, or have data piped into it from some other program. */ /** This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. This 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. THE AUTHORS OF THIS LIBRARY ACCEPT ABSOLUTELY NO LIABILITY FOR ANY HARM OR LOSS RESULTING FROM ITS USE. IT IS _EXTREMELY_ UNWISE TO RELY ON SOFTWARE ALONE FOR SAFETY. Any machinery capable of harming persons must have provisions for completely removing power from all motors, etc, before persons enter any danger area. All machinery must be designed to comply with local and national safety codes, and the authors of this software can not, and do not, take any responsibility for such compliance. This code was written as part of the EMC HAL project. For more information, go to www.linuxcnc.org. */ #include #include #include #include #include #include #include #include #include #include #include "rtapi.h" /* RTAPI realtime OS API */ #include "hal.h" /* HAL public API decls */ #include "streamer.h" /*********************************************************************** * LOCAL FUNCTION DECLARATIONS * ************************************************************************/ /*********************************************************************** * GLOBAL VARIABLES * ************************************************************************/ int comp_id = -1; /* -1 means hal_init() not called yet */ int exitval = 1; /* program return code - 1 means error */ int ignore_sig = 0; /* used to flag critical regions */ int linenumber=0; /* used to print linenumber on errors */ char comp_name[HAL_NAME_LEN+1]; /* name for this instance of streamer */ /*********************************************************************** * MAIN PROGRAM * ************************************************************************/ /* signal handler */ static sig_atomic_t stop; static void quit(int sig) { if ( ignore_sig ) { return; } stop = 1; } #define BUF_SIZE 4000 int main(int argc, char **argv) { int n, channel, line=0; char *cp, *cp2; hal_stream_t stream; char buf[BUF_SIZE]; const char *errmsg; /* set return code to "fail", clear it later if all goes well */ exitval = 1; channel = 0; for ( n = 1 ; n < argc ; n++ ) { cp = argv[n]; if ( *cp != '-' ) { break; } switch ( *(++cp) ) { case 'c': if (( *(++cp) == '\0' ) && ( ++n < argc )) { cp = argv[n]; } channel = strtol(cp, &cp2, 10); if (( *cp2 ) || ( channel < 0 ) || ( channel >= MAX_STREAMERS )) { fprintf(stderr,"ERROR: invalid channel number '%s'\n", cp ); exit(1); } break; default: fprintf(stderr,"ERROR: unknown option '%s'\n", cp ); exit(1); break; } } if(n < argc) { int fd; if(argc > n+1) { fprintf(stderr, "ERROR: At most one filename may be specified\n"); exit(1); } // make stdin be the named file fd = open(argv[n], O_RDONLY); close(0); dup2(fd, 0); } /* register signal handlers - if the process is killed we need to call hal_exit() to free the shared memory */ signal(SIGINT, quit); signal(SIGTERM, quit); signal(SIGPIPE, SIG_IGN); /* connect to HAL */ /* create a unique module name, to allow for multiple streamers */ snprintf(comp_name, sizeof(comp_name), "halstreamer%d", getpid()); /* connect to the HAL */ ignore_sig = 1; comp_id = hal_init(comp_name); ignore_sig = 0; /* check result */ if (comp_id < 0) { fprintf(stderr, "ERROR: hal_init() failed: %d\n", comp_id ); goto out; } hal_ready(comp_id); /* open shmem for user/RT comms (stream) */ int r = hal_stream_attach(&stream, comp_id, STREAMER_SHMEM_KEY+channel, 0); if ( r < 0 ) { errno = -r; perror("hal_stream_attach"); goto out; } int num_pins = hal_stream_element_count(&stream); while ( fgets(buf, BUF_SIZE, stdin) ) { /* skip comment lines */ if ( buf[0] == '#' ) { line++; continue; } cp = buf; errmsg = NULL; union hal_stream_data data[num_pins]; for ( n = 0 ; n < num_pins ; n++ ) { union hal_stream_data *dptr = &data[n]; /* strip leading whitespace */ while ( isspace(*cp) ) { cp++; } switch ( hal_stream_element_type(&stream, n) ) { case HAL_FLOAT: dptr->f = strtod(cp, &cp2); break; case HAL_BIT: if ( *cp == '0' ) { dptr->b = 0; cp2 = cp + 1; } else if ( *cp == '1' ) { dptr->b = 1; cp2 = cp + 1; } else { errmsg = "bit value not 0 or 1"; cp2 = cp; } break; case HAL_U32: dptr->u = strtoul(cp, &cp2, 10); break; case HAL_S32: dptr->s = strtol(cp, &cp2, 10); break; default: /* better not happen */ goto out; } if ( errmsg == NULL ) { /* no error yet, check for other possibilities */ /* whitespace separates fields, and there is a newline at the end... so if there is not space or newline at the end of a field, something is wrong. */ if ( *cp2 == '\0' ) { errmsg = "premature end of line"; } else if ( ! isspace(*cp2) ) { errmsg = "bad character"; } } /* test for any error */ if ( errmsg != NULL ) { /* abort loop on error */ break; } /* advance pointers for next field */ dptr++; cp = cp2; } if ( errmsg != NULL ) { /* print message */ fprintf (stderr, "line %d, field %d: %s, skipping the line\n", line, n, errmsg ); /** TODO - decide whether to skip this line and continue, or abort the program. Right now it skips the line. */ } else { /* good data, keep it */ hal_stream_wait_writable(&stream, &stop); if(stop) break; hal_stream_write(&stream, data); } line++; } /* run was successful */ exitval = 0; out: ignore_sig = 1; hal_stream_detach(&stream); if ( comp_id >= 0 ) { hal_exit(comp_id); } return exitval; }