Remove dead code.
authorjbj <devnull@localhost>
Fri, 9 Jun 2000 19:33:52 +0000 (19:33 +0000)
committerjbj <devnull@localhost>
Fri, 9 Jun 2000 19:33:52 +0000 (19:33 +0000)
CVS patchset: 3823
CVS date: 2000/06/09 19:33:52

lib/misc.c
lib/misc.h
po/rpm.pot
rpmio/rpmio.c
rpmio/rpmio.h
rpmio/rpmio_internal.h

index 2c95892..89fa3f5 100644 (file)
@@ -218,158 +218,6 @@ int dosetenv(const char *name, const char *value, int overwrite)
     return putenv(a);
 }
 
-#ifdef DYING
-/* unameToUid(), uidTouname() and the group variants are really poorly
-   implemented. They really ought to use hash tables. I just made the
-   guess that most files would be owned by root or the same person/group
-   who owned the last file. Those two values are cached, everything else
-   is looked up via getpw() and getgr() functions.  If this performs
-   too poorly I'll have to implement it properly :-( */
-
-int unameToUid(const char * thisUname, uid_t * uid)
-{
-    /*@only@*/ static char * lastUname = NULL;
-    static int lastUnameLen = 0;
-    static int lastUnameAlloced;
-    static uid_t lastUid;
-    struct passwd * pwent;
-    int thisUnameLen;
-
-    if (!thisUname) {
-       lastUnameLen = 0;
-       return -1;
-    } else if (!strcmp(thisUname, "root")) {
-       *uid = 0;
-       return 0;
-    }
-
-    thisUnameLen = strlen(thisUname);
-    if (!lastUname || thisUnameLen != lastUnameLen ||
-       strcmp(thisUname, lastUname)) {
-       if (lastUnameAlloced < thisUnameLen + 1) {
-           lastUnameAlloced = thisUnameLen + 10;
-           lastUname = xrealloc(lastUname, lastUnameAlloced);  /* XXX memory leak */
-       }
-       strcpy(lastUname, thisUname);
-
-       pwent = getpwnam(thisUname);
-       if (!pwent) {
-           endpwent();
-           pwent = getpwnam(thisUname);
-           if (!pwent) return -1;
-       }
-
-       lastUid = pwent->pw_uid;
-    }
-
-    *uid = lastUid;
-
-    return 0;
-}
-
-int gnameToGid(const char * thisGname, gid_t * gid)
-{
-    /*@only@*/ static char * lastGname = NULL;
-    static int lastGnameLen = 0;
-    static int lastGnameAlloced;
-    static uid_t lastGid;
-    int thisGnameLen;
-    struct group * grent;
-
-    if (!thisGname) {
-       lastGnameLen = 0;
-       return -1;
-    } else if (!strcmp(thisGname, "root")) {
-       *gid = 0;
-       return 0;
-    }
-
-    thisGnameLen = strlen(thisGname);
-    if (!lastGname || thisGnameLen != lastGnameLen ||
-       strcmp(thisGname, lastGname)) {
-       if (lastGnameAlloced < thisGnameLen + 1) {
-           lastGnameAlloced = thisGnameLen + 10;
-           lastGname = xrealloc(lastGname, lastGnameAlloced);  /* XXX memory leak */
-       }
-       strcpy(lastGname, thisGname);
-
-       grent = getgrnam(thisGname);
-       if (!grent) {
-           endgrent();
-           grent = getgrnam(thisGname);
-           if (!grent) return -1;
-       }
-       lastGid = grent->gr_gid;
-    }
-
-    *gid = lastGid;
-
-    return 0;
-}
-
-char * uidToUname(uid_t uid)
-{
-    static int lastUid = -1;
-    /*@only@*/ static char * lastUname = NULL;
-    static int lastUnameLen = 0;
-    struct passwd * pwent;
-    int len;
-
-    if (uid == (uid_t) -1) {
-       lastUid = -1;
-       return NULL;
-    } else if (!uid) {
-       return "root";
-    } else if (uid == lastUid) {
-       return lastUname;
-    } else {
-       pwent = getpwuid(uid);
-       if (!pwent) return NULL;
-
-       lastUid = uid;
-       len = strlen(pwent->pw_name);
-       if (lastUnameLen < len + 1) {
-           lastUnameLen = len + 20;
-           lastUname = xrealloc(lastUname, lastUnameLen);
-       }
-       strcpy(lastUname, pwent->pw_name);
-
-       return lastUname;
-    }
-}
-
-char * gidToGname(gid_t gid)
-{
-    static int lastGid = -1;
-    /*@only@*/ static char * lastGname = NULL;
-    static int lastGnameLen = 0;
-    struct group * grent;
-    int len;
-
-    if (gid == (gid_t) -1) {
-       lastGid = -1;
-       return NULL;
-    } else if (!gid) {
-       return "root";
-    } else if (gid == lastGid) {
-       return lastGname;
-    } else {
-       grent = getgrgid(gid);
-       if (!grent) return NULL;
-
-       lastGid = gid;
-       len = strlen(grent->gr_name);
-       if (lastGnameLen < len + 1) {
-           lastGnameLen = len + 20;
-           lastGname = xrealloc(lastGname, lastGnameLen);
-       }
-       strcpy(lastGname, grent->gr_name);
-
-       return lastGname;
-    }
-}
-#endif /* DYING */
-
 int makeTempFile(const char * prefix, const char ** fnptr, FD_t * fdptr)
 {
     const char * tempfn = NULL;
index b2c4f27..a253e38 100644 (file)
@@ -24,17 +24,6 @@ int  rpmvercmp(const char * one, const char * two);
 int    dosetenv(const char *name, const char *value, int overwrite);
 int    doputenv(const char * str);
 
-#ifdef DYING
-/* These may be called w/ a NULL argument to flush the cache -- they return
-   -1 if the user can't be found */
-int    unameToUid(const char * thisUname, /*@out@*/ uid_t * uid);
-int    gnameToGid(const char * thisGname, /*@out@*/ gid_t * gid);
-
-/* Call w/ -1 to flush the cache, returns NULL if the user can't be found */
-/*@observer@*/ /*@null@*/ char * uidToUname(uid_t uid);
-/*@observer@*/ /*@null@*/ char * gidToGname(gid_t gid);
-#endif /* DYING */
-
 int    makeTempFile(const char * prefix, /*@out@*/ const char ** fnptr,
                        /*@out@*/ FD_t * fdptr);
 char * currentDirectory(void);         /* result needs to be freed */
index a3e5d08..87ae7f3 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-06-09 10:40-0400\n"
+"POT-Creation-Date: 2000-06-09 15:18-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2704,7 +2704,7 @@ msgstr ""
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:425 lib/misc.c:430 lib/misc.c:436
+#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
@@ -3749,59 +3749,59 @@ msgstr ""
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:808
+#: rpmio/rpmio.c:537
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:811
+#: rpmio/rpmio.c:540
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:814
+#: rpmio/rpmio.c:543
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:817
+#: rpmio/rpmio.c:546
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:820
+#: rpmio/rpmio.c:549
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:823
+#: rpmio/rpmio.c:552
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:826
+#: rpmio/rpmio.c:555
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:829
+#: rpmio/rpmio.c:558
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:832
+#: rpmio/rpmio.c:561
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:835
+#: rpmio/rpmio.c:564
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:838
+#: rpmio/rpmio.c:567
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:841
+#: rpmio/rpmio.c:570
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:845
+#: rpmio/rpmio.c:574
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1378
+#: rpmio/rpmio.c:1107
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
index 298b285..07017c2 100644 (file)
@@ -64,64 +64,6 @@ static int inet_aton(const char *cp, struct in_addr *inp)
 #include <rpmio_internal.h>
 #include "misc.h"
 
-#include <assert.h>
-
-#ifdef DYING
-typedef struct _FDSTACK_s {
-       FDIO_t          io;
-/*@dependent@*/ void * fp;
-       int             fdno;
-} FDSTACK_t;
-
-typedef struct {
-       int             count;
-       off_t           bytes;
-       time_t          msecs;
-} OPSTAT_t;
-
-typedef        struct {
-       struct timeval  create;
-       struct timeval  begin;
-       OPSTAT_t        ops[4];
-#define        FDSTAT_READ     0
-#define        FDSTAT_WRITE    1
-#define        FDSTAT_SEEK     2
-#define        FDSTAT_CLOSE    3
-} FDSTAT_t;
-
-struct _FD_s {
-/*@refs@*/ int         nrefs;
-       int             flags;
-#define        RPMIO_DEBUG_IO          0x40000000
-#define        RPMIO_DEBUG_REFS        0x20000000
-       int             magic;
-#define        FDMAGIC         0xbeefdead
-
-       int             nfps;
-       FDSTACK_t       fps[8];
-       int             urlType;        /* ufdio: */
-
-/*@dependent@*/ void * url;            /* ufdio: URL info */
-       int             rd_timeoutsecs; /* ufdRead: per FD_t timer */
-       ssize_t         bytesRemain;    /* ufdio: */
-       ssize_t         contentLength;  /* ufdio: */
-       int             persist;        /* ufdio: */
-       int             wr_chunked;     /* ufdio: */
-
-       int             syserrno;       /* last system errno encountered */
-/*@observer@*/ const void *errcookie;  /* gzdio/bzdio/ufdio: */
-
-       FDSTAT_t        *stats;         /* I/O statistics */
-
-       int             ftpFileDoneNeeded; /* ufdio: (FTP) */
-       unsigned int    firstFree;      /* fadio: */
-       long int        fileSize;       /* fadio: */
-       long int        fd_cpioPos;     /* cpio: */
-};
-
-#define        FDSANE(fd)      assert(fd && fd->magic == FDMAGIC)
-#endif /* DYING */
-
 #define FDNREFS(fd)    (fd ? ((FD_t)fd)->nrefs : -9)
 #define FDTO(fd)       (fd ? ((FD_t)fd)->rd_timeoutsecs : -99)
 #define FDCPIOPOS(fd)  (fd ? ((FD_t)fd)->fd_cpioPos : -99)
@@ -155,62 +97,6 @@ int _rpmio_debug = 0;
 #define DBGREFS(_f, _x)        DBG((_f), RPMIO_DEBUG_REFS, _x)
 
 /* =============================================================== */
-#ifdef DYING
-const FDIO_t fdGetIo(FD_t fd) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdGetIo(%p)\n", fd));
-#endif
-    FDSANE(fd);
-    return fd->fps[fd->nfps].io;
-}
-
-void fdSetIo(FD_t fd, FDIO_t io) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdSetIo(%p,%p) lvl %d \n", fd, io, (fd ? fd->nfps : -1)));
-#endif
-    FDSANE(fd);
-    fd->fps[fd->nfps].io = io;
-    return;
-}
-
-inline /*@dependent@*/ /*@null@*/ void * fdGetFp(FD_t fd) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdGetFp(%p) lvl %d\n", fd, (fd ? fd->nfps : -1)));
-#endif
-    FDSANE(fd);
-    return fd->fps[fd->nfps].fp;
-}
-
-static inline void fdSetFp(FD_t fd, /*@keep@*/ void * fp) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdSetFp(%p,%p) lvl %d\n", fd, fp, (fd ? fd->nfps : -1)));
-#endif
-    FDSANE(fd);
-    fd->fps[fd->nfps].fp = fp;
-}
-
-static inline int fdGetFdno(FD_t fd) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdGetFdno(%p) lvl %d\n", fd, (fd ? fd->nfps : -1)));
-#endif
-    FDSANE(fd);
-    return fd->fps[fd->nfps].fdno;
-}
-
-void fdSetFdno(FD_t fd, int fdno) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdSetFdno(%p,%d)\n", fd, fdno));
-#endif
-    FDSANE(fd);
-    fd->fps[fd->nfps].fdno = fdno;
-}
-
-void fdSetContentLength(FD_t fd, ssize_t contentLength)
-{
-    FDSANE(fd);
-    fd->contentLength = fd->bytesRemain = contentLength;
-}
-#endif /* DYING */
 
 static /*@observer@*/ const char * fdbg(FD_t fd)
 {
@@ -266,96 +152,6 @@ static /*@observer@*/ const char * fdbg(FD_t fd)
     return buf;
 }
 
-#ifdef DYING
-inline void fdPush(FD_t fd, FDIO_t io, void * fp, int fdno) {
-    FDSANE(fd);
-    if (fd->nfps >= (sizeof(fd->fps)/sizeof(fd->fps[0]) - 1))
-       return;
-    fd->nfps++;
-    fdSetIo(fd, io);
-    fdSetFp(fd, fp);
-    fdSetFdno(fd, fdno);
-DBGIO(0, (stderr, "==>\tfdPush(%p,%p,%p,%d) lvl %d %s\n", fd, io, fp, fdno, fd->nfps, fdbg(fd)));
-}
-
-inline void fdPop(FD_t fd) {
-    FDSANE(fd);
-    if (fd->nfps < 0) return;
-DBGIO(0, (stderr, "==>\tfdPop(%p) lvl %d io %p fp %p fdno %d %s\n", fd, fd->nfps, fdGetIo(fd), fdGetFp(fd), fdGetFdno(fd), fdbg(fd)));
-    fdSetIo(fd, NULL);
-    fdSetFp(fd, NULL);
-    fdSetFdno(fd, -1);
-    fd->nfps--;
-}
-
-static inline void fdstat_enter(FD_t fd, int opx)
-{
-    if (fd->stats == NULL) return;
-    fd->stats->ops[opx].count++;
-    gettimeofday(&fd->stats->begin, NULL);
-}
-
-static inline time_t tvsub(struct timeval *etv, struct timeval *btv) {
-    time_t secs, usecs;
-    if (!(etv && btv)) return 0;
-    secs = etv->tv_sec - btv->tv_sec;
-    usecs = etv->tv_usec - btv->tv_usec;
-    while (usecs < 0) {
-       secs++;
-       usecs += 1000000;
-    }
-    return ((secs * 1000) + (usecs/1000));
-}
-
-static inline void fdstat_exit(FD_t fd, int opx, ssize_t rc)
-{
-    struct timeval end;
-    if (rc == -1) fd->syserrno = errno;
-    if (fd->stats == NULL) return;
-    gettimeofday(&end, NULL);
-    if (rc >= 0) {
-       switch(opx) {
-       case FDSTAT_SEEK:
-           fd->stats->ops[opx].bytes = rc;
-           break;
-       default:
-           fd->stats->ops[opx].bytes += rc;
-           if (fd->bytesRemain > 0) fd->bytesRemain -= rc;
-           break;
-       }
-    }
-    fd->stats->ops[opx].msecs += tvsub(&end, &fd->stats->begin);
-    fd->stats->begin = end;    /* structure assignment */
-}
-
-static void fdstat_print(FD_t fd, const char * msg, FILE * fp) {
-    int opx;
-    if (fd->stats == NULL) return;
-    for (opx = 0; opx < 4; opx++) {
-       OPSTAT_t *ops = &fd->stats->ops[opx];
-       if (ops->count <= 0) continue;
-       switch (opx) {
-       case FDSTAT_READ:
-           if (msg) fprintf(fp, "%s:", msg);
-           fprintf(fp, "%8d reads, %8ld total bytes in %d.%03d secs\n",
-               ops->count, (long)ops->bytes,
-               (int)(ops->msecs/1000), (int)(ops->msecs%1000));
-           break;
-       case FDSTAT_WRITE:
-           if (msg) fprintf(fp, "%s:", msg);
-           fprintf(fp, "%8d writes, %8ld total bytes in %d.%03d secs\n",
-               ops->count, (long)ops->bytes,
-               (int)(ops->msecs/1000), (int)(ops->msecs%1000));
-           break;
-       case FDSTAT_SEEK:
-           break;
-       case FDSTAT_CLOSE:
-           break;
-       }
-    }
-}
-#endif /* DYING */
-
 /* =============================================================== */
 off_t fdSize(FD_t fd) {
     struct stat sb;
@@ -381,44 +177,6 @@ DBGIO(0, (stderr, "==>\tfdSize(%p) rc %ld\n", fd, (long)rc));
     return rc;
 }
 
-#ifdef DYING
-void fdSetSyserrno(FD_t fd, int syserrno, const void * errcookie) {
-    FDSANE(fd);
-    fd->syserrno = syserrno;
-    fd->errcookie = errcookie;
-}
-
-int fdGetRdTimeoutSecs(FD_t fd) {
-#ifdef NOISY
-DBGIO(0, (stderr, "==>\tfdGetRdTimeoutSecs(%p) timeout %d\n", fd, FDTO(fd)));
-#endif
-    FDSANE(fd);
-    return fd->rd_timeoutsecs;
-}
-
-#ifdef DYING
-int fdGetFtpFileDoneNeeded(FD_t fd) {
-    FDSANE(fd);
-    return fd->ftpFileDoneNeeded;
-}
-
-void fdSetFtpFileDoneNeeded(FD_t fd, int ftpFileDoneNeeded) {
-    FDSANE(fd);
-    fd->ftpFileDoneNeeded = ftpFileDoneNeeded;
-}
-#endif
-
-long int fdGetCpioPos(FD_t fd) {
-    FDSANE(fd);
-    return fd->fd_cpioPos;
-}
-
-void fdSetCpioPos(FD_t fd, long int cpioPos) {
-    FDSANE(fd);
-    fd->fd_cpioPos = cpioPos;
-}
-#endif /* DYING */
-
 FD_t fdDup(int fdno) {
     FD_t fd;
     int nfdno;
@@ -431,14 +189,6 @@ DBGIO(fd, (stderr, "==> fdDup(%d) fd %p %s\n", fdno, fd, fdbg(fd)));
     return fd;
 }
 
-#ifdef DYING
-static inline FD_t c2f(void * cookie) {
-       FD_t fd = (FD_t) cookie;
-       FDSANE(fd);
-       return fd;
-}
-#endif /* DYING */
-
 #ifdef USE_COOKIE_SEEK_POINTER
 static inline int fdSeekNot(void * cookie,  /*@unused@*/ _IO_off64_t *pos,  /*@unused@*/ int whence) {
 #else
@@ -538,15 +288,6 @@ static inline /*@null@*/ FD_t XfdNew(const char *msg, const char *file, unsigned
     return XfdLink(fd, msg, file, line);
 }
 
-#ifdef DYING
-static inline int fdFileno(void * cookie) {
-    FD_t fd;
-    if (cookie == NULL) return -2;
-    fd = c2f(cookie);
-    return fd->fps[0].fdno;    /* XXX WRONG but expedient */
-}
-#endif /* DYING */
-
 static inline ssize_t fdRead(void * cookie, /*@out@*/ char * buf, size_t count) {
     FD_t fd = c2f(cookie);
     ssize_t rc;
@@ -571,10 +312,6 @@ static inline ssize_t fdWrite(void * cookie, const char * buf, size_t count) {
     if (fd->wr_chunked) {
        char chunksize[20];
        sprintf(chunksize, "%x\r\n", (unsigned)count);
-#ifdef DYING
-if (_ftp_debug)
-fprintf(stderr, "-> %s", chunksize);
-#endif
        rc = write(fdno, chunksize, strlen(chunksize));
        if (rc == -1)   fd->syserrno = errno;
     }
@@ -586,10 +323,6 @@ fprintf(stderr, "-> %s", chunksize);
 
     if (fd->wr_chunked) {
        int ec;
-#ifdef DYING
-if (_ftp_debug)
-fprintf(stderr, "-> \r\n");
-#endif
        ec = write(fdno, "\r\n", sizeof("\r\n")-1);
        if (ec == -1)   fd->syserrno = errno;
     }
@@ -643,10 +376,6 @@ static inline /*@null@*/ FD_t fdOpen(const char *path, int flags, mode_t mode) {
     FD_t fd;
     int fdno;
 
-#ifdef DYING
-if (_rpmio_debug)
-fprintf(stderr, "*** fdOpen(%s,0x%x,0%o)\n", path, flags, (unsigned)mode);
-#endif
     fdno = open(path, flags, mode);
     if (fdno < 0) return NULL;
     fd = fdNew("open (fdOpen)");
@@ -1481,10 +1210,6 @@ static int ftpCmd(const char * cmd, const char * url, const char * arg2) {
 
     rc = ftpCommand(u, NULL, cmd, path, arg2, NULL);
     u->ctrl = fdFree(u->ctrl, "grab ctrl (ftpCmd)");
-#ifdef DYING
-if (_rpmio_debug)
-fprintf(stderr, "*** ftpCmd %s %s %s rc %d\n", cmd, path, arg2, rc);
-#endif
     return rc;
 }
 
@@ -1650,10 +1375,6 @@ static int httpReq(FD_t ctrl, const char * httpCmd, const char * httpArg)
 
 reopen:
     if (fdFileno(ctrl) >= 0 && (rc = fdWritable(ctrl, 0)) < 1) {
-#ifdef DYING
-if (_ftp_debug)
-fprintf(stderr, "*** httpReq closing ctrl fdno %d rc %d\n", fdFileno(ctrl), rc);
-#endif
        fdClose(ctrl);
     }
 
@@ -1712,10 +1433,6 @@ fprintf(stderr, "-> %s", req);
 
        if (rc) {
            if (!retrying) {    /* not HTTP_OK */
-#ifdef DYING
-if (_ftp_debug)
-fprintf(stderr, "*** httpReq ctrl %p reopening ...\n", ctrl);
-#endif
                retrying = 1;
                fdClose(ctrl);
                goto reopen;
@@ -2162,41 +1879,6 @@ static struct FDIO_s ufdio_s = {
 FDIO_t ufdio = /*@-compmempass@*/ &ufdio_s /*@=compmempass@*/ ;
 
 /* =============================================================== */
-/* Support for first fit File Allocation I/O.
- */
-long int fadGetFileSize(FD_t fd) {
-    FDSANE(fd);
-    return fd->fileSize;
-}
-
-void fadSetFileSize(FD_t fd, long int fileSize) {
-    FDSANE(fd);
-    fd->fileSize = fileSize;
-}
-
-unsigned int fadGetFirstFree(FD_t fd) {
-    FDSANE(fd);
-    return fd->firstFree;
-}
-
-void fadSetFirstFree(FD_t fd, unsigned int firstFree) {
-    FDSANE(fd);
-    fd->firstFree = firstFree;
-}
-
-/* =============================================================== */
-#ifdef DYING
-extern fdio_open_function_t fadOpen;
-static struct FDIO_s fadio_s = {
-  fdRead, fdWrite, fdSeek, fdClose, XfdLink, XfdFree, XfdNew, fdFileno,
-  fadOpen, NULL, fdGetFp,      NULL, NULL, NULL, NULL, NULL
-};
-FDIO_t fadio = /*@-compmempass@*/ &fadio_s /*@=compmempass@*/ ;
-#else
-extern FDIO_t fadio;
-#endif
-
-/* =============================================================== */
 /* Support for GZIP library.
  */
 #ifdef HAVE_ZLIB_H
index 406b5bf..edf3d0a 100644 (file)
@@ -126,49 +126,13 @@ DIR *     Opendir (const char * name);
 struct dirent *        Readdir (DIR * dir);
 int    Closedir(DIR * dir);
 
-/*@observer@*/ extern FDIO_t gzdio;
-
-#ifdef DYING
-void   fdPush  (FD_t fd, FDIO_t io, void * fp, int fdno);
-void   fdPop   (FD_t fd);
-
-/*@dependent@*/ /*@null@*/ void *      fdGetFp (FD_t fd);
-void   fdSetFdno(FD_t fd, int fdno);
-void   fdSetContentLength(FD_t fd, ssize_t contentLength);
-#endif
-
 off_t  fdSize  (FD_t fd);
 
-#ifdef DYING
-void   fdSetSyserrno(FD_t fd, int syserrno, const void * errcookie);
-
-/*@null@*/ const FDIO_t fdGetIo(FD_t fd);
-void   fdSetIo (FD_t fd, FDIO_t io);
-
-int    fdGetRdTimeoutSecs(FD_t fd);
-
-long int fdGetCpioPos(FD_t fd);
-void   fdSetCpioPos(FD_t fd, long int cpioPos);
-#endif /* DYING */
-
 /*@null@*/ FD_t fdDup(int fdno);
 #ifdef UNUSED
 /*@null@*/ FILE *fdFdopen( /*@only@*/ void * cookie, const char * mode);
 #endif
 
-/* XXX legacy interface used in rpm2html */
-#define        fdClose         fdio->close
-#define        fdOpen          fdio->_open
-
-/* XXX legacy interface used in gnorpm */
-#define        fdRead          fdio->read
-#define        fdWrite         fdio->write
-#define        fdFileno        fdio->_fileno
-
-#if 0
-#define        fdSeek          fdio->seek
-#endif
-
 #define        fdLink(_fd, _msg)       fdio->_fdref(_fd, _msg, __FILE__, __LINE__)
 #define        fdFree(_fd, _msg)       fdio->_fdderef(_fd, _msg, __FILE__, __LINE__)
 #define        fdNew(_msg)             fdio->_fdnew(_msg, __FILE__, __LINE__)
@@ -176,9 +140,6 @@ void        fdSetCpioPos(FD_t fd, long int cpioPos);
 int    fdWritable(FD_t fd, int secs);
 int    fdReadable(FD_t fd, int secs);
 
-/*@observer@*/ extern FDIO_t fdio;
-/*@observer@*/ extern FDIO_t fpio;
-
 /*
  * Support for FTP and HTTP I/O.
  */
@@ -202,63 +163,15 @@ int       ufdCopy(FD_t sfd, FD_t tfd);
 int    ufdGetFile( /*@killref@*/ FD_t sfd, FD_t tfd);
 /*@observer@*/ const char *const ftpStrerror(int errorNumber);
 
-#if 0
-#define        ufdRead         ufdio->read
-#define        ufdWrite        ufdio->write
-#define        ufdSeek         ufdio->seek
-#define        ufdClose        ufdio->close
-#define        ufdLink         ufdio->_fdref
-#define        ufdFree         ufdio->_fdderef
-#define        ufdNew          ufdio->_fdnew
-#define        ufdFileno       ufdio->_fileno
-#define        ufdOpen         ufdio->_open
-#define        ufdFopen        ufdio->_fopen
-#define        ufdFfileno      ufdio->_ffileno
-#define        ufdFflush       ufdio->_fflush
-#define        ufdMkdir        ufdio->_mkdir
-#define        ufdChdir        ufdio->_chdir
-#define        ufdRmdir        ufdio->_rmdir
-#define        ufdRename       ufdio->_rename
-#define        ufdUnlink       ufdio->_unlink
-#endif
-
 int    timedRead(FD_t fd, /*@out@*/ void * bufptr, int length);
 #define        timedRead       ufdio->read
 
+/*@observer@*/ extern FDIO_t fdio;
+/*@observer@*/ extern FDIO_t fpio;
 /*@observer@*/ extern FDIO_t ufdio;
-
-/*
- * Support for first fit File Allocation I/O.
- */
-
-long int fadGetFileSize(FD_t fd);
-void   fadSetFileSize(FD_t fd, long int fileSize);
-unsigned int fadGetFirstFree(FD_t fd);
-void   fadSetFirstFree(FD_t fd, unsigned int firstFree);
-
-/*@observer@*/ extern FDIO_t fadio;
-
-#ifdef HAVE_ZLIB_H
-/*
- * Support for GZIP library.
- */
-
-#include <zlib.h>
-
 /*@observer@*/ extern FDIO_t gzdio;
-
-#endif /* HAVE_ZLIB_H */
-
-#ifdef HAVE_BZLIB_H
-/*
- * Support for BZIP2 library.
- */
-
-#include <bzlib.h>
-
 /*@observer@*/ extern FDIO_t bzdio;
-
-#endif /* HAVE_BZLIB_H */
+/*@observer@*/ extern FDIO_t fadio;
 
 #ifdef __cplusplus
 }
index ea81b32..6a61f62 100644 (file)
@@ -221,4 +221,24 @@ static inline int fdFileno(void * cookie) {
     return fd->fps[0].fdno;
 }
 
+static inline long int fadGetFileSize(FD_t fd) {
+    FDSANE(fd);
+    return fd->fileSize;
+}
+
+static inline void fadSetFileSize(FD_t fd, long int fileSize) {
+    FDSANE(fd);
+    fd->fileSize = fileSize;
+}
+
+static inline unsigned int fadGetFirstFree(FD_t fd) {
+    FDSANE(fd);
+    return fd->firstFree;
+}
+
+static inline void fadSetFirstFree(FD_t fd, unsigned int firstFree) {
+    FDSANE(fd);
+    fd->firstFree = firstFree;
+}
+
 #endif /* H_RPMIO_INTERNAL */