home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / id-utils-3.2-src.tgz / tar.out / fsf / id-utils / libidu / idread.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  8KB  |  281 lines

  1. /* idread.c -- functions to read ID database files
  2.    Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  3.    Written by Greg McGary <gkm@gnu.ai.mit.edu>
  4.  
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 2, or (at your option)
  8.    any later version.
  9.  
  10.    This program is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.  
  15.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19.  
  20. #include <config.h>
  21. #include <stdio.h>
  22. #include "idfile.h"
  23. #include "xstddef.h"
  24. #include "hash.h"
  25. #include "error.h"
  26. #include "xobstack.h"
  27. #include "xmalloc.h"
  28. #include "xnls.h"
  29.  
  30. int fgets0 __P((char *buf0, int size, FILE *in_FILE));
  31.  
  32.  
  33. /****************************************************************************/
  34.  
  35. /* read_id_file opens the ID file, reads header fields into idh,
  36.    verifies the magic number and version, and reads the constituent
  37.    file names.  Any errors are considered fatal and cause an exit.  */
  38.  
  39. struct file_link **
  40. read_id_file (char const *id_file_name, struct idhead *idhp)
  41. {
  42.   struct file_link **flinkv = maybe_read_id_file (id_file_name, idhp);
  43.   if (flinkv)
  44.     return flinkv;
  45.   error (1, errno, _("can't open `%s'"), id_file_name);
  46.   return NULL;
  47. }
  48.  
  49. /* maybe_read_id_file does everything that read_id_file does, but is
  50.    tolerant of errors opening the ID file, returning NULL in this case
  51.    (this is called from mkid where an ID might or might not already
  52.    exist).  All other errors are considered fatal.  */
  53.  
  54. struct file_link **
  55. maybe_read_id_file (char const *id_file_name, struct idhead *idhp)
  56. {
  57.   obstack_init (&idhp->idh_file_link_obstack);
  58.   idhp->idh_FILE = fopen (id_file_name, "r");
  59.   if (idhp->idh_FILE == 0)
  60.     return 0;
  61.  
  62.   read_idhead (idhp);
  63.   if (idhp->idh_magic[0] != IDH_MAGIC_0 || idhp->idh_magic[1] != IDH_MAGIC_1)
  64.     error (1, 0, _("`%s' is not an ID file! (bad magic #)"), id_file_name);
  65.   if (idhp->idh_version != IDH_VERSION)
  66.     error (1, 0, _("`%s' is version %d, but I only grok version %d"),
  67.        id_file_name, idhp->idh_version, IDH_VERSION);
  68.  
  69.   fseek (idhp->idh_FILE, idhp->idh_flinks_offset, 0);
  70.   return deserialize_file_links (idhp);
  71. }
  72.  
  73.  
  74. /****************************************************************************/
  75.  
  76. /* Read and reconstruct a serialized file_link hierarchy.  */
  77.  
  78. struct file_link **
  79. deserialize_file_links (struct idhead *idhp)
  80. {
  81.   struct file_link **flinks_0 = MALLOC (struct file_link *, idhp->idh_file_links);
  82.   struct file_link **flinks = flinks_0;
  83.   struct file_link **members_0 = MALLOC (struct file_link *, idhp->idh_files + 1);
  84.   struct file_link **members = members_0;
  85.   struct file_link *flink;
  86.   struct file_link **slot;
  87.   int i;
  88.  
  89.   for (i = 0; i < idhp->idh_file_links; i++)
  90.     {
  91.       unsigned long parent_index;
  92.       int c;
  93.  
  94.       obstack_blank (&idhp->idh_file_link_obstack, offsetof (struct file_link, fl_name));
  95.       if (obstack_room (&idhp->idh_file_link_obstack) >= idhp->idh_max_link)
  96.     do
  97.       {
  98.         c = getc (idhp->idh_FILE);
  99.         obstack_1grow_fast (&idhp->idh_file_link_obstack, c);
  100.       }
  101.     while (c);
  102.       else
  103.     do
  104.       {
  105.         c = getc (idhp->idh_FILE);
  106.         obstack_1grow (&idhp->idh_file_link_obstack, c);
  107.       }
  108.     while (c);
  109.       flink = (struct file_link *) obstack_finish (&idhp->idh_file_link_obstack);
  110.       *flinks = flink;
  111.       io_read (idhp->idh_FILE, &flink->fl_flags, sizeof (flink->fl_flags), IO_TYPE_INT);
  112.       io_read (idhp->idh_FILE, &parent_index, FL_PARENT_INDEX_BYTES, IO_TYPE_INT);
  113.       flink->fl_parent = flinks_0[parent_index];
  114.       slot = (struct file_link **) hash_find_slot (&idhp->idh_file_link_table, flink);
  115.       if (HASH_VACANT (*slot))
  116.     hash_insert_at (&idhp->idh_file_link_table, flink, slot);
  117.       else
  118.     {
  119.       obstack_free (&idhp->idh_file_link_obstack, flink);
  120.       (*slot)->fl_flags = flink->fl_flags;
  121.       flink = *flinks = *slot;
  122.     }
  123.       flinks++;
  124.       if (flink->fl_flags & FL_MEMBER)
  125.     *members++ = flink;
  126.     }
  127.   free (flinks_0);
  128.   *members = 0;
  129.   return members_0;
  130. }
  131.  
  132.  
  133. /****************************************************************************/
  134.  
  135. int
  136. read_idhead (struct idhead *idhp)
  137. {
  138.   return io_idhead (idhp->idh_FILE, io_read, idhp);
  139. }
  140.  
  141. /* This is like fgets(3s), except that lines are delimited by NULs
  142.    rather than newlines.  Also, we return the number of characters
  143.    read rather than the address of buf0.  */
  144.  
  145. int
  146. fgets0 (char *buf0, int size, FILE * in_FILE)
  147. {
  148.   char *buf;
  149.   int c;
  150.   char *end;
  151.  
  152.   buf = buf0;
  153.   end = &buf[size];
  154.   while ((c = getc (in_FILE)) > 0 && buf < end)
  155.     *buf++ = c;
  156.   *buf = '\0';
  157.   return (buf - buf0);
  158. }
  159.  
  160. int
  161. io_read (FILE *input_FILE, void *addr, unsigned int size, int io_type)
  162. {
  163.   if (io_type == IO_TYPE_INT || size == 1)
  164.     {
  165.       switch (size)
  166.     {
  167.     case 4:
  168.       *(unsigned long *)addr = getc (input_FILE);
  169.       *(unsigned long *)addr += getc (input_FILE) << 010;
  170.       *(unsigned long *)addr += getc (input_FILE) << 020;
  171.       *(unsigned long *)addr += getc (input_FILE) << 030;
  172.       break;
  173.     case 3:
  174.       *(unsigned long *)addr = getc (input_FILE);
  175.       *(unsigned long *)addr += getc (input_FILE) << 010;
  176.       *(unsigned long *)addr += getc (input_FILE) << 020;
  177.       break;
  178.     case 2:
  179.       *(unsigned short *)addr = getc (input_FILE);
  180.       *(unsigned short *)addr += getc (input_FILE) << 010;
  181.       break;
  182.     case 1:
  183.       *(unsigned char *)addr = getc (input_FILE);
  184.       break;
  185.     default:
  186.       error (1, 0, _("unsupported size in io_read (): %d"), size);
  187.     }
  188.     }
  189.   else if (io_type == IO_TYPE_STR)
  190.     fgets0 (addr, size, input_FILE);
  191.   else if (io_type == IO_TYPE_FIX)
  192.     fread (addr, size, 1, input_FILE);
  193.   else
  194.     error (0, 0, _("unknown I/O type: %d"), io_type);
  195.   return size;
  196. }
  197.  
  198.  
  199. /****************************************************************************/
  200.  
  201. unsigned int
  202. token_flags (char const *buf)
  203. {
  204.   return *(unsigned char const *)&buf[strlen (buf) + 1];
  205. }
  206.  
  207. #define TOK_COUNT_ADDR(buf) ((unsigned char const *)(TOK_FLAGS_ADDR (buf) + 1))
  208. #define TOK_HITS_ADDR(buf) ((unsigned char const *)(TOK_COUNT_ADDR (buf) + 2))
  209.  
  210. unsigned short
  211. token_count (char const *buf)
  212. {
  213.   unsigned char const *flags = (unsigned char const *)&buf[strlen (buf) + 1];
  214.   unsigned char const *addr = flags + 1;
  215.   unsigned short count = *addr;
  216.   if (*flags & TOK_SHORT_COUNT)
  217.     count += (*++addr << 8);
  218.   return count;
  219. }
  220.  
  221. unsigned char const *
  222. token_hits_addr (char const *buf)
  223. {
  224.   unsigned char const *flags = (unsigned char const *)&buf[strlen (buf) + 1];
  225.   unsigned char const *addr = flags + 2;
  226.   if (*flags & TOK_SHORT_COUNT)
  227.     addr++;
  228.   return addr;
  229. }
  230.  
  231.  
  232.  
  233. /****************************************************************************/
  234.  
  235. int
  236. tree8_count_levels (unsigned int cardinality)
  237. {
  238.   int levels = 1;
  239.   cardinality--;
  240.   while (cardinality >>= 3)
  241.     ++levels;
  242.   return levels;
  243. }
  244.  
  245. int
  246. gets_past_00 (char *tok, FILE *input_FILE)
  247. {
  248.   int got = 0;
  249.   int c;
  250.   do
  251.     {
  252.       do
  253.     {
  254.       got++;
  255.       c = getc (input_FILE);
  256.       *tok++ = c;
  257.     }
  258.       while (c > 0);
  259.       got++;
  260.       c = getc (input_FILE);
  261.       *tok++ = c;
  262.     }
  263.   while (c > 0);
  264.   return got - 2;
  265. }
  266.  
  267. int
  268. skip_past_00 (FILE *input_FILE)
  269. {
  270.   int skipped = 0;
  271.   do
  272.     {
  273.       do
  274.     skipped++;
  275.       while (getc (input_FILE) > 0);
  276.       skipped++;
  277.     }
  278.   while (getc (input_FILE) > 0);
  279.   return skipped;
  280. }
  281.