Indented with src/scripts/indent-emp.
This commit is contained in:
parent
5f263a7753
commit
9b7adfbecc
437 changed files with 52211 additions and 51052 deletions
|
@ -54,123 +54,121 @@
|
|||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
static void fillcache(struct empfile *ep, int start);
|
||||
static void fillcache(struct empfile *ep, int start);
|
||||
|
||||
int
|
||||
ef_open(int type, int mode, int how)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
static int block;
|
||||
int size;
|
||||
register struct empfile *ep;
|
||||
static int block;
|
||||
int size;
|
||||
|
||||
#if defined(_WIN32)
|
||||
mode |= _O_BINARY;
|
||||
#endif
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if ((ep->fd = open(ep->file, mode, 0660)) < 0) {
|
||||
logerror("%s: open failed", ep->file);
|
||||
return 0;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if ((ep->fd = open(ep->file, mode, 0660)) < 0) {
|
||||
logerror("%s: open failed", ep->file);
|
||||
return 0;
|
||||
}
|
||||
if (block == 0)
|
||||
block = blksize(ep->fd);
|
||||
ep->baseid = 0;
|
||||
ep->cids = 0;
|
||||
ep->mode = mode;
|
||||
ep->flags |= how;
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (ep->flags & EFF_MEM)
|
||||
ep->csize = ep->fids;
|
||||
else
|
||||
ep->csize = block / ep->size;
|
||||
size = ep->csize * ep->size;
|
||||
ep->cache = (s_char *)malloc(size);
|
||||
if ((ep->cache == 0) && (size != 0)) {
|
||||
logerror("ef_open: %s malloc(%d) failed\n", ep->file, size);
|
||||
return 0;
|
||||
}
|
||||
if (ep->flags & EFF_MEM) {
|
||||
if (read(ep->fd, ep->cache, size) != size) {
|
||||
logerror("ef_open: read(%s) failed\n", ep->file);
|
||||
return 0;
|
||||
}
|
||||
if (block == 0)
|
||||
block = blksize(ep->fd);
|
||||
ep->baseid = 0;
|
||||
ep->cids = 0;
|
||||
ep->mode = mode;
|
||||
ep->flags |= how;
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (ep->flags & EFF_MEM)
|
||||
ep->csize = ep->fids;
|
||||
else
|
||||
ep->csize = block / ep->size;
|
||||
size = ep->csize * ep->size;
|
||||
ep->cache = (s_char *)malloc(size);
|
||||
if ((ep->cache == 0) && (size !=0)) {
|
||||
logerror("ef_open: %s malloc(%d) failed\n", ep->file, size);
|
||||
return 0;
|
||||
}
|
||||
if (ep->flags & EFF_MEM) {
|
||||
if (read(ep->fd, ep->cache, size) != size) {
|
||||
logerror("ef_open: read(%s) failed\n", ep->file);
|
||||
return 0;
|
||||
}
|
||||
ep->cids = size / ep->size;
|
||||
}
|
||||
return 1;
|
||||
ep->cids = size / ep->size;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
ef_close(int type)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
int r;
|
||||
register struct empfile *ep;
|
||||
int r;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (ep->cache == 0) {
|
||||
/* no cache implies never opened */
|
||||
return 0;
|
||||
}
|
||||
ef_flush(type);
|
||||
ep->flags &= ~EFF_MEM;
|
||||
free(ep->cache);
|
||||
ep->cache = 0;
|
||||
if ((r = close(ep->fd)) < 0) {
|
||||
logerror("ef_close: %s close(%d) -> %d",
|
||||
ep->name, ep->fd, r);
|
||||
}
|
||||
return 1;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (ep->cache == 0) {
|
||||
/* no cache implies never opened */
|
||||
return 0;
|
||||
}
|
||||
ef_flush(type);
|
||||
ep->flags &= ~EFF_MEM;
|
||||
free(ep->cache);
|
||||
ep->cache = 0;
|
||||
if ((r = close(ep->fd)) < 0) {
|
||||
logerror("ef_close: %s close(%d) -> %d", ep->name, ep->fd, r);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
ef_flush(int type)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
int size;
|
||||
int r;
|
||||
register struct empfile *ep;
|
||||
int size;
|
||||
int r;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (ep->cache == 0) {
|
||||
/* no cache implies never opened */
|
||||
return 0;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (ep->cache == 0) {
|
||||
/* no cache implies never opened */
|
||||
return 0;
|
||||
}
|
||||
size = ep->csize * ep->size;
|
||||
if (ep->mode > 0 && (ep->flags & EFF_MEM)) {
|
||||
if ((r = lseek(ep->fd, 0L, 0)) < 0) {
|
||||
logerror("ef_flush: %s cache lseek(%d, 0L, 0) -> %d",
|
||||
ep->name, ep->fd, r);
|
||||
return 0;
|
||||
}
|
||||
size = ep->csize * ep->size;
|
||||
if (ep->mode > 0 && (ep->flags & EFF_MEM)) {
|
||||
if ((r = lseek(ep->fd, 0L, 0)) < 0) {
|
||||
logerror("ef_flush: %s cache lseek(%d, 0L, 0) -> %d",
|
||||
ep->name, ep->fd, r);
|
||||
return 0;
|
||||
}
|
||||
if (write(ep->fd, ep->cache, size) != size) {
|
||||
logerror("ef_flush: %s cache write(%d, %x, %d) -> %d",
|
||||
ep->name, ep->fd, ep->cache, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (write(ep->fd, ep->cache, size) != size) {
|
||||
logerror("ef_flush: %s cache write(%d, %x, %d) -> %d",
|
||||
ep->name, ep->fd, ep->cache, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
/*ef_zapcache(type);*/
|
||||
return 1;
|
||||
}
|
||||
/*ef_zapcache(type); */
|
||||
return 1;
|
||||
}
|
||||
|
||||
s_char *
|
||||
ef_ptr(int type, int id)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
register struct empfile *ep;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0 || id >= ep->fids)
|
||||
return 0;
|
||||
if ((ep->flags & EFF_MEM) == 0) {
|
||||
logerror("ef_ptr: (%s) only valid for EFF_MEM entries",
|
||||
ep->file);
|
||||
return 0;
|
||||
}
|
||||
return (s_char *) (ep->cache + ep->size * id);
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0 || id >= ep->fids)
|
||||
return 0;
|
||||
if ((ep->flags & EFF_MEM) == 0) {
|
||||
logerror("ef_ptr: (%s) only valid for EFF_MEM entries", ep->file);
|
||||
return 0;
|
||||
}
|
||||
return (s_char *)(ep->cache + ep->size * id);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -180,44 +178,44 @@ ef_ptr(int type, int id)
|
|||
int
|
||||
ef_read(int type, int id, caddr_t ptr)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
caddr_t from;
|
||||
register struct empfile *ep;
|
||||
caddr_t from;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0)
|
||||
return 0;
|
||||
if (ep->flags & EFF_MEM) {
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
from = ep->cache + (id * ep->size);
|
||||
} else {
|
||||
if (id >= ep->fids) {
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0)
|
||||
return 0;
|
||||
if (ep->flags & EFF_MEM) {
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
from = ep->cache + (id * ep->size);
|
||||
} else {
|
||||
if (id >= ep->fids) {
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
}
|
||||
if (ep->baseid + ep->cids <= id || ep->baseid > id)
|
||||
fillcache(ep, id);
|
||||
from = ep->cache + (id - ep->baseid) * ep->size;
|
||||
}
|
||||
bcopy(from, ptr, ep->size);
|
||||
if (ep->baseid + ep->cids <= id || ep->baseid > id)
|
||||
fillcache(ep, id);
|
||||
from = ep->cache + (id - ep->baseid) * ep->size;
|
||||
}
|
||||
bcopy(from, ptr, ep->size);
|
||||
|
||||
if (ep->postread)
|
||||
ep->postread(id, ptr);
|
||||
return 1;
|
||||
if (ep->postread)
|
||||
ep->postread(id, ptr);
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void
|
||||
fillcache(struct empfile *ep, int start)
|
||||
{
|
||||
int n;
|
||||
int n;
|
||||
|
||||
ep->baseid = start;
|
||||
lseek(ep->fd, start * ep->size, 0);
|
||||
n = read(ep->fd, ep->cache, ep->csize * ep->size);
|
||||
ep->cids = n / ep->size;
|
||||
ep->baseid = start;
|
||||
lseek(ep->fd, start * ep->size, 0);
|
||||
n = read(ep->fd, ep->cache, ep->csize * ep->size);
|
||||
ep->cids = n / ep->size;
|
||||
}
|
||||
|
||||
#ifdef notdef
|
||||
|
@ -228,33 +226,33 @@ fillcache(struct empfile *ep, int start)
|
|||
int
|
||||
ef_nbread(int type, int id, caddr_t ptr)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
int r;
|
||||
register struct empfile *ep;
|
||||
int r;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0)
|
||||
return 0;
|
||||
if (id >= ep->fids) {
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_nbread: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if ((r = read(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_nbread: %s #%d read(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
ef_zapcache(type);
|
||||
if (ep->postread)
|
||||
ep->postread(id, ptr);
|
||||
return 1;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id < 0)
|
||||
return 0;
|
||||
if (id >= ep->fids) {
|
||||
ep->fids = fsize(ep->fd) / ep->size;
|
||||
if (id >= ep->fids)
|
||||
return 0;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_nbread: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if ((r = read(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_nbread: %s #%d read(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
ef_zapcache(type);
|
||||
if (ep->postread)
|
||||
ep->postread(id, ptr);
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -265,49 +263,51 @@ ef_nbread(int type, int id, caddr_t ptr)
|
|||
int
|
||||
ef_write(int type, int id, caddr_t ptr)
|
||||
{
|
||||
register int r;
|
||||
register struct empfile *ep;
|
||||
s_char *to;
|
||||
register int r;
|
||||
register struct empfile *ep;
|
||||
s_char *to;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id > 65536) {
|
||||
/* largest unit id; this may bite us in large games */
|
||||
logerror("ef_write: type %d id %d is too large!\n", type, id);
|
||||
return 0;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id > 65536) {
|
||||
/* largest unit id; this may bite us in large games */
|
||||
logerror("ef_write: type %d id %d is too large!\n", type, id);
|
||||
return 0;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_write: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (ep->prewrite)
|
||||
ep->prewrite(id, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_write: %s #%d write(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (id >= ep->baseid && id < ep->baseid + ep->cids) {
|
||||
/* update the cache if necessary */
|
||||
to = ep->cache + (id - ep->baseid) * ep->size;
|
||||
bcopy(ptr, to, ep->size);
|
||||
}
|
||||
if (id > ep->fids) {
|
||||
logerror("WARNING ef_write: expanded %s by more than one id",
|
||||
ep->name);
|
||||
log_last_commands();
|
||||
}
|
||||
if (id >= ep->fids) {
|
||||
if (ep->flags & EFF_MEM) {
|
||||
logerror
|
||||
("file %s went beyond %d items; won't be able toread item w/o restart",
|
||||
ep->name, ep->fids);
|
||||
} else {
|
||||
/* write expanded file; ep->fids = last id + 1 */
|
||||
ep->fids = id + 1;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_write: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (ep->prewrite)
|
||||
ep->prewrite(id, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_write: %s #%d write(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (id >= ep->baseid && id < ep->baseid + ep->cids) {
|
||||
/* update the cache if necessary */
|
||||
to = ep->cache + (id - ep->baseid) * ep->size;
|
||||
bcopy(ptr, to, ep->size);
|
||||
}
|
||||
if (id > ep->fids) {
|
||||
logerror("WARNING ef_write: expanded %s by more than one id",
|
||||
ep->name);
|
||||
log_last_commands();
|
||||
}
|
||||
if (id >= ep->fids) {
|
||||
if (ep->flags & EFF_MEM) {
|
||||
logerror("file %s went beyond %d items; won't be able toread item w/o restart", ep->name, ep->fids);
|
||||
} else {
|
||||
/* write expanded file; ep->fids = last id + 1 */
|
||||
ep->fids = id + 1;
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef notdef
|
||||
|
@ -318,177 +318,178 @@ ef_write(int type, int id, caddr_t ptr)
|
|||
int
|
||||
ef_nbwrite(int type, int id, caddr_t ptr)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
register int r;
|
||||
register struct empfile *ep;
|
||||
register int r;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id > 65536) {
|
||||
/* largest unit id; this may bite us in large games */
|
||||
logerror("ef_nbwrite: %s id %d is too large!\n", ep->name, id);
|
||||
return 0;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_nbwrite: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (ep->prewrite)
|
||||
ep->prewrite(id, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_nbwrite: %s #%d write(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
ef_zapcache(type);
|
||||
if (id >= ep->fids) {
|
||||
/* write expanded file; ep->fids = last id + 1 */
|
||||
ep->fids = id + 1;
|
||||
}
|
||||
return 1;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
if (id > 65536) {
|
||||
/* largest unit id; this may bite us in large games */
|
||||
logerror("ef_nbwrite: %s id %d is too large!\n", ep->name, id);
|
||||
return 0;
|
||||
}
|
||||
if ((r = lseek(ep->fd, id * ep->size, 0)) < 0) {
|
||||
logerror("ef_nbwrite: %s #%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, id, ep->fd, id * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
if (ep->prewrite)
|
||||
ep->prewrite(id, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_nbwrite: %s #%d write(%d, %x, %d) -> %d",
|
||||
ep->name, id, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
ef_zapcache(type);
|
||||
if (id >= ep->fids) {
|
||||
/* write expanded file; ep->fids = last id + 1 */
|
||||
ep->fids = id + 1;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
ef_extend(int type, int count)
|
||||
{
|
||||
register struct empfile *ep;
|
||||
char *ptr;
|
||||
int cur, max;
|
||||
int mode, how;
|
||||
int r;
|
||||
register struct empfile *ep;
|
||||
char *ptr;
|
||||
int cur, max;
|
||||
int mode, how;
|
||||
int r;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
max = ep->fids + count;
|
||||
cur = ep->fids;
|
||||
ptr = (s_char *)calloc(1, ep->size);
|
||||
if ((r = lseek(ep->fd, ep->fids * ep->size, 0)) < 0) {
|
||||
logerror("ef_extend: %s +#%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, count, ep->fd, ep->fids * ep->size, r);
|
||||
return 0;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ep = &empfile[type];
|
||||
max = ep->fids + count;
|
||||
cur = ep->fids;
|
||||
ptr = (s_char *)calloc(1, ep->size);
|
||||
if ((r = lseek(ep->fd, ep->fids * ep->size, 0)) < 0) {
|
||||
logerror("ef_extend: %s +#%d lseek(%d, %d, 0) -> %d",
|
||||
ep->name, count, ep->fd, ep->fids * ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
for (cur = ep->fids; cur < max; cur++) {
|
||||
if (ep->init)
|
||||
ep->init(cur, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_extend: %s +#%d write(%d, %x, %d) -> %d",
|
||||
ep->name, count, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
for (cur = ep->fids; cur < max; cur++) {
|
||||
if (ep->init)
|
||||
ep->init(cur, ptr);
|
||||
if ((r = write(ep->fd, ptr, ep->size)) != ep->size) {
|
||||
logerror("ef_extend: %s +#%d write(%d, %x, %d) -> %d",
|
||||
ep->name, count, ep->fd, ptr, ep->size, r);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
free(ptr);
|
||||
if (ep->flags & EFF_MEM) {
|
||||
/* XXX this will cause problems if there are ef_ptrs (to the
|
||||
* old allocated structure) active when we do the re-open */
|
||||
mode = ep->mode;
|
||||
how = ep->flags;
|
||||
ef_close(type);
|
||||
ef_open(type, mode, how);
|
||||
} else {
|
||||
ep->fids += count;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
free(ptr);
|
||||
if (ep->flags & EFF_MEM) {
|
||||
/* XXX this will cause problems if there are ef_ptrs (to the
|
||||
* old allocated structure) active when we do the re-open */
|
||||
mode = ep->mode;
|
||||
how = ep->flags;
|
||||
ef_close(type);
|
||||
ef_open(type, mode, how);
|
||||
} else {
|
||||
ep->fids += count;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
void
|
||||
ef_zapcache(int type)
|
||||
{
|
||||
register struct empfile *ep = &empfile[type];
|
||||
if ((ep->flags & EFF_MEM) == 0) {
|
||||
ep->cids = 0;
|
||||
ep->baseid = -1;
|
||||
}
|
||||
register struct empfile *ep = &empfile[type];
|
||||
if ((ep->flags & EFF_MEM) == 0) {
|
||||
ep->cids = 0;
|
||||
ep->baseid = -1;
|
||||
}
|
||||
}
|
||||
|
||||
struct castr *
|
||||
ef_cadef(int type)
|
||||
{
|
||||
return empfile[type].cadef;
|
||||
return empfile[type].cadef;
|
||||
}
|
||||
|
||||
int
|
||||
ef_nelem(int type)
|
||||
{
|
||||
return empfile[type].fids;
|
||||
return empfile[type].fids;
|
||||
}
|
||||
|
||||
int
|
||||
ef_flags(int type)
|
||||
{
|
||||
return empfile[type].flags;
|
||||
return empfile[type].flags;
|
||||
}
|
||||
|
||||
int
|
||||
ef_lock(int type)
|
||||
{
|
||||
return file_lock(empfile[type].fd);
|
||||
return file_lock(empfile[type].fd);
|
||||
}
|
||||
|
||||
int
|
||||
ef_unlock(int type)
|
||||
{
|
||||
return file_unlock(empfile[type].fd);
|
||||
return file_unlock(empfile[type].fd);
|
||||
}
|
||||
|
||||
time_t
|
||||
ef_mtime(int type)
|
||||
{
|
||||
extern time_t fdate(int fd);
|
||||
extern time_t fdate(int fd);
|
||||
|
||||
if (empfile[type].fd <= 0)
|
||||
return 0;
|
||||
return fdate(empfile[type].fd);
|
||||
if (empfile[type].fd <= 0)
|
||||
return 0;
|
||||
return fdate(empfile[type].fd);
|
||||
}
|
||||
|
||||
int
|
||||
ef_vars(int type, register s_char *sp, u_char **nvp, u_char **vp, u_short **ap)
|
||||
ef_vars(int type, register s_char *sp, u_char **nvp, u_char **vp,
|
||||
u_short **ap)
|
||||
{
|
||||
register struct empfile *ef;
|
||||
register struct empfile *ef;
|
||||
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ef = &empfile[type];
|
||||
if ((ef->flags & EFF_COM) == 0)
|
||||
return -1;
|
||||
*nvp = (u_char *) (sp + ef->varoffs[0]);
|
||||
*vp = (u_char *) (sp + ef->varoffs[1]);
|
||||
*ap = (u_short *) (sp + ef->varoffs[2]);
|
||||
return ef->maxvars;
|
||||
if (ef_check(type) < 0)
|
||||
return 0;
|
||||
ef = &empfile[type];
|
||||
if ((ef->flags & EFF_COM) == 0)
|
||||
return -1;
|
||||
*nvp = (u_char *)(sp + ef->varoffs[0]);
|
||||
*vp = (u_char *)(sp + ef->varoffs[1]);
|
||||
*ap = (u_short *)(sp + ef->varoffs[2]);
|
||||
return ef->maxvars;
|
||||
}
|
||||
|
||||
int
|
||||
ef_byname(s_char *name)
|
||||
{
|
||||
register struct empfile *ef;
|
||||
register int i;
|
||||
int len;
|
||||
register struct empfile *ef;
|
||||
register int i;
|
||||
int len;
|
||||
|
||||
len = strlen(name);
|
||||
for (i=0; i<EF_MAX; i++) {
|
||||
ef = &empfile[i];
|
||||
if (strncmp(ef->name, name, min(len, strlen(ef->name))) == 0)
|
||||
return i;
|
||||
}
|
||||
return -1;
|
||||
len = strlen(name);
|
||||
for (i = 0; i < EF_MAX; i++) {
|
||||
ef = &empfile[i];
|
||||
if (strncmp(ef->name, name, min(len, strlen(ef->name))) == 0)
|
||||
return i;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
s_char *
|
||||
ef_nameof(int type)
|
||||
{
|
||||
if (type < 0 || type >= EF_MAX)
|
||||
return "bad item type";
|
||||
return empfile[type].name;
|
||||
if (type < 0 || type >= EF_MAX)
|
||||
return "bad item type";
|
||||
return empfile[type].name;
|
||||
}
|
||||
|
||||
int
|
||||
ef_check(int type)
|
||||
{
|
||||
if (type < 0 || type >= EF_MAX) {
|
||||
logerror("ef_ptr: bad EF_type %d\n", type);
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
if (type < 0 || type >= EF_MAX) {
|
||||
logerror("ef_ptr: bad EF_type %d\n", type);
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue