Hamlib/src/event.c

139 wiersze
3.4 KiB
C

/* hamlib - Ham Radio Control Libraries
Copyright (C) 2000 Stephane Fillod and Frank Singleton
This file is part of the hamlib package.
$Id: event.c,v 1.1 2000-10-08 21:19:26 f4cfe Exp $
Hamlib 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 2 of the License, or
(at your option) any later version.
Hamlib 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 sane; see the file COPYING. If not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <signal.h>
#include <errno.h>
#include <hamlib/rig.h>
#include <hamlib/riglist.h>
#include "event.h"
static void sa_sigio(int signum, siginfo_t *si, void *data);
/* This one should be in an include file */
int foreach_opened_rig(int (*cfunc)(RIG *, void *),void *data);
/*
* add_trn_rig
* not exported in Hamlib API.
* Assumes rig->caps->transceive == RIG_TRN_ON
*/
int add_trn_rig(RIG *rig)
{
struct sigaction act;
int status;
/*
* FIXME: multiple open will register several time SIGIO hndlr
*/
act.sa_sigaction = sa_sigio;
sigemptyset(&act.sa_mask);
act.sa_flags = SA_SIGINFO;
status = sigaction(SIGIO, &act, NULL);
if (status < 0)
rig_debug(RIG_DEBUG_ERR,"rig_open sigaction failed: %s\n",
strerror(errno));
status = fcntl(rig->state.fd, F_SETOWN, getpid());
if (status < 0)
rig_debug(RIG_DEBUG_ERR,"rig_open fcntl SETOWN failed: %s\n",
strerror(errno));
status = fcntl(rig->state.fd, F_SETSIG, SIGIO);
if (status < 0)
rig_debug(RIG_DEBUG_ERR,"rig_open fcntl SETSIG failed: %s\n",
strerror(errno));
status = fcntl(rig->state.fd, F_SETFL, O_ASYNC);
if (status < 0)
rig_debug(RIG_DEBUG_ERR,"rig_open fcntl SETASYNC failed: %s\n",
strerror(errno));
return RIG_OK;
}
/*
* remove_trn_rig
* not exported in Hamlib API.
* Assumes rig->caps->transceive == RIG_TRN_ON
*/
int remove_trn_rig(RIG *rig)
{
return -RIG_ENIMPL;
}
/*
* This is used by sa_sigio, the SIGIO handler
* to find out which rig generated this event,
* and decode/process it.
*/
static int search_rig_and_decode(RIG *rig, void *data)
{
siginfo_t *si = (siginfo_t*)data;
int bytes;
#if 0
if (rig->state.fd != si->si_fd)
return -1;
#else
ioctl(rig->state.fd, FIONREAD, &bytes); /* get bytes in buffer */
if (bytes <= 0)
return -1;
#endif
/*
* Do not disturb, the backend is currently receiving data
*/
if (rig->state.hold_decode)
return -1;
if (rig->caps->decode_event)
rig->caps->decode_event(rig);
return 1; /* process each opened rig */
}
/*
* This is the SIGIO handler
*
* lookup in the list of open rigs,
* check the rig is not holding SIGIO,
* then call rig->caps->decode_event() (this is done by search_rig)
*/
static void sa_sigio(int signum, siginfo_t *si, void *data)
{
rig_debug(RIG_DEBUG_VERBOSE, "sa_sigio: activity detected\n");
foreach_opened_rig(search_rig_and_decode, si);
}