#include "uucp.h"
#include "uudefs.h"
#include "uuconf.h"
#include "sysdep.h"
#include "system.h"
#include <errno.h>
#include <ctype.h>
#if SPOOLDIR_HDB || SPOOLDIR_SVR4
#define MAP_STATUS 1
static const int aiMapstatus[] =
{
0, 13, 7, 6, 20, 4, 3, 2
};
#define CMAPENTRIES (sizeof (aiMapstatus) / sizeof (aiMapstatus[0]))
#else
#define MAP_STATUS 0
#endif
boolean
fsysdep_get_status (qsys, qret, pfnone)
const struct uuconf_system *qsys;
struct sstatus *qret;
boolean *pfnone;
{
char *zname;
FILE *e;
char *zline;
char *zend, *znext;
boolean fbad;
int istat;
if (pfnone != NULL)
*pfnone = FALSE;
zname = zsysdep_in_dir (".Status", qsys->uuconf_zname);
e = fopen (zname, "r");
if (e == NULL)
{
if (errno != ENOENT)
{
ulog (LOG_ERROR, "fopen (%s): %s", zname, strerror (errno));
ubuffree (zname);
return FALSE;
}
zline = NULL;
}
else
{
size_t cline;
zline = NULL;
cline = 0;
if (getline (&zline, &cline, e) <= 0)
{
xfree ((pointer) zline);
zline = NULL;
}
(void) fclose (e);
}
if (zline == NULL)
{
qret->ttype = STATUS_COMPLETE;
qret->cretries = 0;
qret->ilast = 0;
qret->cwait = 0;
qret->zstring = NULL;
if (pfnone != NULL)
*pfnone = TRUE;
ubuffree (zname);
return TRUE;
}
fbad = FALSE;
istat = (int) strtol (zline, &zend, 10);
if (zend == zline)
fbad = TRUE;
#if MAP_STATUS
{
int i;
for (i = 0; i < CMAPENTRIES; ++i)
{
if (aiMapstatus[i] == istat)
{
istat = i;
break;
}
}
}
#endif
if (istat < 0 || istat >= (int) STATUS_VALUES)
istat = (int) STATUS_COMPLETE;
qret->ttype = (enum tstatus_type) istat;
znext = zend;
qret->cretries = (int) strtol (znext, &zend, 10);
if (zend == znext)
fbad = TRUE;
znext = zend;
qret->ilast = strtol (znext, &zend, 10);
if (zend == znext)
fbad = TRUE;
znext = zend;
qret->cwait = (int) strtol (znext, &zend, 10);
if (zend == znext)
fbad = TRUE;
if (! fbad)
{
znext = zend;
while (isspace (BUCHAR (*znext)))
++znext;
if (*znext == '\0')
qret->zstring = NULL;
else
{
if (*znext == '"')
++znext;
qret->zstring = zbufcpy (znext);
zend = qret->zstring + strlen (qret->zstring);
while (zend != qret->zstring && *zend != ' ')
--zend;
if (zend != qret->zstring && zend[-1] == '"')
--zend;
if (zend != qret->zstring)
*zend = '\0';
else
{
ubuffree (qret->zstring);
qret->zstring = NULL;
}
}
}
xfree ((pointer) zline);
if (fbad)
{
ulog (LOG_ERROR, "%s: Bad status file format", zname);
ubuffree (zname);
return FALSE;
}
ubuffree (zname);
return TRUE;
}
boolean
fsysdep_set_status (qsys, qset)
const struct uuconf_system *qsys;
const struct sstatus *qset;
{
char *zname;
FILE *e;
int istat;
zname = zsysdep_in_dir (".Status", qsys->uuconf_zname);
e = esysdep_fopen (zname, TRUE, FALSE, TRUE);
ubuffree (zname);
if (e == NULL)
return FALSE;
istat = (int) qset->ttype;
#if MAP_STATUS
if (istat >= 0 && istat < CMAPENTRIES)
istat = aiMapstatus[istat];
#endif
fprintf (e, "%d %d %ld %d ", istat, qset->cretries, qset->ilast,
qset->cwait);
#if SPOOLDIR_SVR4
fprintf (e, "\"%s\"", azStatus[(int) qset->ttype]);
#else
fprintf (e, "%s", azStatus[(int) qset->ttype]);
#endif
fprintf (e, " %s\n", qsys->uuconf_zname);
if (fclose (e) != 0)
{
ulog (LOG_ERROR, "fclose: %s", strerror (errno));
return FALSE;
}
return TRUE;
}