#include "less.h"
extern IFILE curr_ifile;
struct ifile {
struct ifile *h_next;
struct ifile *h_prev;
char *h_filename;
void *h_filestate;
int h_index;
int h_hold;
char h_opened;
struct scrpos h_scrpos;
};
#define int_ifile(h) ((struct ifile *)(h))
#define ext_ifile(h) ((IFILE)(h))
static struct ifile anchor = { &anchor, &anchor, NULL, NULL, 0, 0, '\0',
{ -1, 0 } };
static int ifiles = 0;
static void
incr_index(struct ifile *p, int incr)
{
for (; p != &anchor; p = p->h_next)
p->h_index += incr;
}
static void
link_ifile(struct ifile *p, struct ifile *prev)
{
if (prev == NULL)
prev = &anchor;
p->h_next = prev->h_next;
p->h_prev = prev;
prev->h_next->h_prev = p;
prev->h_next = p;
p->h_index = prev->h_index + 1;
incr_index(p->h_next, 1);
ifiles++;
}
static void
unlink_ifile(struct ifile *p)
{
p->h_next->h_prev = p->h_prev;
p->h_prev->h_next = p->h_next;
incr_index(p->h_next, -1);
ifiles--;
}
static struct ifile *
new_ifile(char *filename, struct ifile *prev)
{
struct ifile *p;
p = ecalloc(1, sizeof (struct ifile));
p->h_filename = estrdup(filename);
p->h_scrpos.pos = -1;
p->h_opened = 0;
p->h_hold = 0;
p->h_filestate = NULL;
link_ifile(p, prev);
return (p);
}
void
del_ifile(IFILE h)
{
struct ifile *p;
if (h == NULL)
return;
unmark(h);
if (h == curr_ifile)
curr_ifile = getoff_ifile(curr_ifile);
p = int_ifile(h);
unlink_ifile(p);
free(p->h_filename);
free(p);
}
IFILE
next_ifile(IFILE h)
{
struct ifile *p;
p = (h == NULL) ? &anchor : int_ifile(h);
if (p->h_next == &anchor)
return (NULL);
return (ext_ifile(p->h_next));
}
IFILE
prev_ifile(IFILE h)
{
struct ifile *p;
p = (h == NULL) ? &anchor : int_ifile(h);
if (p->h_prev == &anchor)
return (NULL);
return (ext_ifile(p->h_prev));
}
IFILE
getoff_ifile(IFILE ifile)
{
IFILE newifile;
if ((newifile = prev_ifile(ifile)) != NULL)
return (newifile);
if ((newifile = next_ifile(ifile)) != NULL)
return (newifile);
return (NULL);
}
int
nifile(void)
{
return (ifiles);
}
static struct ifile *
find_ifile(const char *filename)
{
struct ifile *p;
for (p = anchor.h_next; p != &anchor; p = p->h_next)
if (strcmp(filename, p->h_filename) == 0)
return (p);
return (NULL);
}
IFILE
get_ifile(char *filename, IFILE prev)
{
struct ifile *p;
if ((p = find_ifile(filename)) == NULL)
p = new_ifile(filename, int_ifile(prev));
return (ext_ifile(p));
}
char *
get_filename(IFILE ifile)
{
if (ifile == NULL)
return (NULL);
return (int_ifile(ifile)->h_filename);
}
int
get_index(IFILE ifile)
{
return (int_ifile(ifile)->h_index);
}
void
store_pos(IFILE ifile, struct scrpos *scrpos)
{
int_ifile(ifile)->h_scrpos = *scrpos;
}
void
get_pos(IFILE ifile, struct scrpos *scrpos)
{
*scrpos = int_ifile(ifile)->h_scrpos;
}
void
set_open(IFILE ifile)
{
int_ifile(ifile)->h_opened = 1;
}
int
opened(IFILE ifile)
{
return (int_ifile(ifile)->h_opened);
}
void
hold_ifile(IFILE ifile, int incr)
{
int_ifile(ifile)->h_hold += incr;
}
int
held_ifile(IFILE ifile)
{
return (int_ifile(ifile)->h_hold);
}
void *
get_filestate(IFILE ifile)
{
return (int_ifile(ifile)->h_filestate);
}
void
set_filestate(IFILE ifile, void *filestate)
{
int_ifile(ifile)->h_filestate = filestate;
}