ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/holofile.c
(Generate patch)

Comparing ray/src/hd/holofile.c (file contents):
Revision 3.54 by greg, Wed Oct 22 02:06:34 2003 UTC vs.
Revision 3.55 by schorsch, Thu Jan 1 11:21:55 2004 UTC

# Line 12 | Line 12 | static const char      RCSid[] = "$Id$";
12   #include <string.h>
13  
14   #include "platform.h"
15 + #include "rtprocess.h"
16  
17   #include "holo.h"
18  
# Line 63 | Line 64 | static struct fraglist {
64  
65   static int      nhdfragls;      /* size of hdfragl array */
66  
67 + static HOLO *hdalloc(HDGRID *hproto);
68 + static char *hdrealloc(char *ptr, unsigned siz, char *rout);
69 + static void hdattach(int fd, int wr);
70 + static void hdrelease(int fd);
71 + static void hdmarkdirty(HOLO *hp, int i);
72 + static unsigned int hdmemuse(int all);
73 + static int hdfilord(const void *hb1, const void *hb2);
74 + static off_t hdallocfrag(int fd, uint32 nrays);
75 + static int hdsyncbeam(HOLO *hp, int i);
76 + static int hdlrulist(HDBEAMI *hb, int nents, int n, HOLO *hp);
77 + static int hdfreecache(int pct, HOLO *honly);
78  
79 +
80 +
81   HOLO *
82 < hdalloc(hproto)         /* allocate and set holodeck section based on grid */
83 < HDGRID  *hproto;
82 > hdalloc(                /* allocate and set holodeck section based on grid */
83 >        HDGRID  *hproto
84 > )
85   {
86          HOLO    hdhead;
87          register HOLO   *hp;
# Line 99 | Line 114 | HDGRID *hproto;
114  
115  
116   char *
117 < hdrealloc(ptr, siz, rout)       /* (re)allocate memory, retry then error */
118 < char    *ptr;
119 < unsigned        siz;
120 < char    *rout;
117 > hdrealloc(      /* (re)allocate memory, retry then error */
118 >        char    *ptr,
119 >        unsigned        siz,
120 >        char    *rout
121 > )
122   {
123          register char   *newp;
124                                          /* call malloc/realloc */
# Line 122 | Line 138 | char   *rout;
138   }
139  
140  
141 < hdattach(fd, wr)        /* start tracking file fragments for some section */
142 < register int    fd;
143 < int     wr;
141 > void
142 > hdattach(       /* start tracking file fragments for some section */
143 >        register int    fd,
144 >        int     wr
145 > )
146   {
147          if (fd >= nhdfragls) {
148                  hdfragl = (struct fraglist *)hdrealloc((char *)hdfragl,
# Line 143 | Line 161 | int    wr;
161   /* Do we need a routine to locate file fragments given known occupants? */
162  
163  
164 < hdrelease(fd)           /* stop tracking file fragments for some section */
165 < register int    fd;
164 > void
165 > hdrelease(              /* stop tracking file fragments for some section */
166 >        register int    fd
167 > )
168   {
169          if ((fd < 0) | (fd >= nhdfragls) || !hdfragl[fd].nlinks)
170                  return;
# Line 156 | Line 176 | register int   fd;
176   }
177  
178  
179 < HOLO *
180 < hdinit(fd, hproto)      /* initialize a holodeck section in a file */
181 < int     fd;                     /* corresponding file descriptor */
182 < HDGRID  *hproto;                /* holodeck section grid */
179 > extern HOLO *
180 > hdinit( /* initialize a holodeck section in a file */
181 >        int     fd,                     /* corresponding file descriptor */
182 >        HDGRID  *hproto         /* holodeck section grid */
183 > )
184   {
185          off_t   rtrunc;
186          off_t   fpos;
# Line 238 | Line 259 | HDGRID *hproto;                /* holodeck section grid */
259          return(hp);
260   memerr:
261          error(SYSTEM, "cannot allocate holodeck grid");
262 +        return NULL; /* pro forma return */
263   }
264  
265  
266 < hdmarkdirty(hp, i)              /* mark holodeck directory position dirty */
267 < register HOLO   *hp;
268 < int     i;
266 > void
267 > hdmarkdirty(            /* mark holodeck directory position dirty */
268 >        register HOLO   *hp,
269 >        int     i
270 > )
271   {
272          static BEAMI    smudge = {0, -1};
273          int     mindist, minpos;
# Line 293 | Line 317 | int    i;
317   }
318  
319  
320 < int
321 < hdsync(hp, all)                 /* update beams and directory on disk */
322 < register HOLO   *hp;
323 < int     all;
320 > extern int
321 > hdsync(                 /* update beams and directory on disk */
322 >        register HOLO   *hp,
323 >        int     all
324 > )
325   {
326          register int    j, n;
327  
# Line 326 | Line 351 | int    all;
351   }
352  
353  
354 < unsigned
355 < hdmemuse(all)           /* return memory usage (in bytes) */
356 < int     all;                    /* include overhead (painful) */
354 > unsigned int
355 > hdmemuse(               /* return memory usage (in bytes) */
356 >        int     all                     /* include overhead (painful) */
357 > )
358   {
359          long    total = 0;
360          register int    i, j;
# Line 355 | Line 381 | int    all;                    /* include overhead (painful) */
381   }
382  
383  
384 < off_t
385 < hdfilen(fd)             /* return file length for fd */
386 < int     fd;
384 > extern off_t
385 > hdfilen(                /* return file length for fd */
386 >        int     fd
387 > )
388   {
389          off_t   fpos, flen;
390  
# Line 374 | Line 401 | int    fd;
401   }
402  
403  
404 < off_t
405 < hdfiluse(fd, all)       /* compute file usage (in bytes) */
406 < int     fd;                     /* open file descriptor to check */
407 < int     all;                    /* include overhead and unflushed data */
404 > extern off_t
405 > hdfiluse(       /* compute file usage (in bytes) */
406 >        int     fd,                     /* open file descriptor to check */
407 >        int     all                     /* include overhead and unflushed data */
408 > )
409   {
410          off_t   total = 0;
411          register int    i, j;
# Line 400 | Line 428 | int    all;                    /* include overhead and unflushed data */
428   }
429  
430  
431 < RAYVAL *
432 < hdnewrays(hp, i, nr)    /* allocate space for add'l rays and return pointer */
433 < register HOLO   *hp;
434 < register int    i;
435 < int     nr;                     /* number of new rays desired */
431 > extern RAYVAL *
432 > hdnewrays(      /* allocate space for add'l rays and return pointer */
433 >        register HOLO   *hp,
434 >        register int    i,
435 >        int     nr                      /* number of new rays desired */
436 > )
437   {
438          RAYVAL  *p;
439          int     n;
# Line 444 | Line 473 | int    nr;                     /* number of new rays desired */
473   }
474  
475  
476 < BEAM *
477 < hdgetbeam(hp, i)        /* get beam (from file if necessary) */
478 < register HOLO   *hp;
479 < register int    i;
476 > extern BEAM *
477 > hdgetbeam(      /* get beam (from file if necessary) */
478 >        register HOLO   *hp,
479 >        register int    i
480 > )
481   {
482          register int    n;
483  
# Line 475 | Line 505 | register int   i;
505  
506  
507   int
508 < hdfilord(hb1, hb2)      /* order beams for quick loading */
509 < register HDBEAMI        *hb1, *hb2;
508 > hdfilord(       /* order beams for quick loading */
509 >        register const void     *hb1,
510 >        register const void     *hb2
511 > )
512   {
513          register off_t  c;
514                                  /* residents go first */
515 <        if (hb2->h->bl[hb2->b] != NULL)
516 <                return(hb1->h->bl[hb1->b] == NULL);
517 <        if (hb1->h->bl[hb1->b] != NULL)
515 >        if (((HDBEAMI*)hb2)->h->bl[((HDBEAMI*)hb2)->b] != NULL)
516 >                return(((HDBEAMI*)hb1)->h->bl[((HDBEAMI*)hb1)->b] == NULL);
517 >        if (((HDBEAMI*)hb1)->h->bl[((HDBEAMI*)hb1)->b] != NULL)
518                  return(-1);
519                                  /* otherwise sort by file descriptor */
520 <        if (hb1->h->fd != hb2->h->fd)
521 <                return(hb1->h->fd - hb2->h->fd);
520 >        if (((HDBEAMI*)hb1)->h->fd != ((HDBEAMI*)hb2)->h->fd)
521 >                return(((HDBEAMI*)hb1)->h->fd - ((HDBEAMI*)hb2)->h->fd);
522                                  /* then by position in file */
523 <        c = hb1->h->bi[hb1->b].fo - hb2->h->bi[hb2->b].fo;
523 >        c = ((HDBEAMI*)hb1)->h->bi[((HDBEAMI*)hb1)->b].fo
524 >                - ((HDBEAMI*)hb2)->h->bi[((HDBEAMI*)hb2)->b].fo;
525          return(c > 0 ? 1 : c < 0 ? -1 : 0);
526   }
527  
528  
529 < hdloadbeams(hb, n, bf)  /* load a list of beams in optimal order */
530 < register HDBEAMI        *hb;    /* list gets sorted by hdfilord() */
531 < int     n;                      /* list length */
532 < void    (*bf)();                /* callback function (optional) */
529 > extern void
530 > hdloadbeams(    /* load a list of beams in optimal order */
531 >        register HDBEAMI        *hb,    /* list gets sorted by hdfilord() */
532 >        int     n,                      /* list length */
533 >        void    (*bf)(BEAM *bp, HDBEAMI *hb)    /* callback function (optional) */
534 > )
535   {
536          unsigned        origcachesize, memuse;
537          int     bytesloaded, needbytes, bytes2free;
# Line 538 | Line 573 | void   (*bf)();                /* callback function (optional) */
573   }
574  
575  
576 < int
577 < hdfreefrag(hp, i)                       /* free a file fragment */
578 < HOLO    *hp;
579 < int     i;
576 > extern int
577 > hdfreefrag(                     /* free a file fragment */
578 >        HOLO    *hp,
579 >        int     i
580 > )
581   {
582          register BEAMI  *bi = &hp->bi[i];
583          register struct fraglist        *f;
# Line 617 | Line 653 | int    i;
653   }
654  
655  
656 < int
657 < hdfragOK(fd, listlen, listsiz)  /* get fragment list status for file */
658 < int     fd;
659 < int     *listlen;
660 < register int32  *listsiz;
656 > extern int
657 > hdfragOK(       /* get fragment list status for file */
658 >        int     fd,
659 >        int     *listlen,
660 >        register int32  *listsiz
661 > )
662   {
663          register struct fraglist        *f;
664          register int    i;
# Line 642 | Line 679 | register int32 *listsiz;
679  
680  
681   off_t
682 < hdallocfrag(fd, nrays)          /* allocate a file fragment */
683 < int     fd;
684 < uint32  nrays;
682 > hdallocfrag(            /* allocate a file fragment */
683 >        int     fd,
684 >        uint32  nrays
685 > )
686   {
687          register struct fraglist        *f;
688          register int    j;
# Line 671 | Line 709 | uint32 nrays;
709  
710  
711   int
712 < hdsyncbeam(hp, i)               /* sync beam in memory with beam on disk */
713 < register HOLO   *hp;
714 < register int    i;
712 > hdsyncbeam(             /* sync beam in memory with beam on disk */
713 >        register HOLO   *hp,
714 >        register int    i
715 > )
716   {
717          int     fragfreed;
718          uint32  nrays;
# Line 711 | Line 750 | register int   i;
750   }
751  
752  
753 < int
754 < hdfreebeam(hp, i)               /* free beam, writing if dirty */
755 < register HOLO   *hp;
756 < register int    i;
753 > extern int
754 > hdfreebeam(             /* free beam, writing if dirty */
755 >        register HOLO   *hp,
756 >        register int    i
757 > )
758   {
759          int     nchanged;
760  
# Line 752 | Line 792 | register int   i;
792   }
793  
794  
795 < int
796 < hdkillbeam(hp, i)               /* delete beam from holodeck */
797 < register HOLO   *hp;
798 < register int    i;
795 > extern int
796 > hdkillbeam(             /* delete beam from holodeck */
797 >        register HOLO   *hp,
798 >        register int    i
799 > )
800   {
801          int     nchanged;
802  
# Line 798 | Line 839 | register int   i;
839  
840  
841   int
842 < hdlrulist(hb, nents, n, hp)     /* add beams from holodeck to LRU list */
843 < register HDBEAMI        *hb;            /* beam list */
844 < int     nents;                          /* current list length */
845 < int     n;                              /* maximum list length */
846 < register HOLO   *hp;                    /* section we're adding from */
842 > hdlrulist(      /* add beams from holodeck to LRU list */
843 >        register HDBEAMI        *hb,            /* beam list */
844 >        int     nents,                          /* current list length */
845 >        int     n,                              /* maximum list length */
846 >        register HOLO   *hp                     /* section we're adding from */
847 > )
848   {
849          register int    i, j;
850                                          /* insert each beam from hp */
# Line 830 | Line 872 | register HOLO  *hp;                    /* section we're adding from */
872  
873  
874   int
875 < hdfreecache(pct, honly)         /* free up cache space, writing changes */
876 < int     pct;                            /* maximum percentage to free */
877 < register HOLO   *honly;                 /* NULL means check all */
875 > hdfreecache(            /* free up cache space, writing changes */
876 >        int     pct,                            /* maximum percentage to free */
877 >        register HOLO   *honly                  /* NULL means check all */
878 > )
879   {
880          HDBEAMI hb[FREEBEAMS];
881          int     freetarget;
# Line 873 | Line 916 | register HOLO  *honly;                 /* NULL means check all */
916   }
917  
918  
919 < hddone(hp)              /* clean up holodeck section and free */
920 < register HOLO   *hp;            /* NULL means clean up all */
919 > extern void
920 > hddone(         /* clean up holodeck section and free */
921 >        register HOLO   *hp             /* NULL means clean up all */
922 > )
923   {
924          register int    i;
925  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines