1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
/*
* cook - file construction tool
* Copyright (C) 1992, 1993, 1994, 1997, 1998, 1999, 2001 Peter Miller;
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
*
* MANIFEST: functions to manipulate include file cache
*/
#include <ac/fcntl.h>
#include <ac/stdio.h>
#include <ac/string.h>
#include <cache.h>
#include <error_intl.h>
#include <mem.h>
#include <os_interface.h>
#include <progname.h>
#include <symtab.h>
#include <trace.h>
static int need_to_write;
static symtab_ty *symtab;
static void reap _((void *));
static void
reap(p)
void *p;
{
cache_ty *cp;
cp = p;
string_list_destructor(&cp->ingredients);
mem_free(cp);
}
/*
* NAME
* cache_initialize - start up cache
*
* SYNOPSIS
* void cache_initialize(void);
*
* DESCRIPTION
* The cache_initialize function is used to create the hash table.
*
* RETURNS
* void
*
* CAVEAT
* Assumes the str_initialize function has been called already.
*/
void
cache_initialize()
{
trace(("init\n"));
symtab = symtab_alloc(100);
symtab->reap = reap;
}
/*
* NAME
* cache_search - search for a variable
*
* SYNOPSIS
* int cache_search(string_ty *filename);
*
* DESCRIPTION
* The cache_search function is used to search for
* a filename in the cache.
*
* RETURNS
* If the variable has been defined, the function returns a non-zero value
* and the value is returned through the 'value' pointer.
* If the variable has not been defined, it returns zero,
* and 'value' is unaltered.
*
* CAVEAT
* The value returned from this function, when returned, is allocated
* in dynamic memory (it is a copy of the value remembered by this module).
* It is the responsibility of the caller to free it when finished with,
* by a string_list_destructor() call.
*/
cache_ty *
cache_search(filename)
string_ty *filename;
{
cache_ty *cp;
assert(symtab);
cp = symtab_query(symtab, filename);
if (!cp)
{
cp = mem_alloc(sizeof(cache_ty));
memset(&cp->st, 0, sizeof(cp->st));
string_list_constructor(&cp->ingredients);
symtab_assign(symtab, filename, cp);
}
return cp;
}
/*
* NAME
* build_filename - for cache file
*
* SYNOPSIS
* void build_filename(char *buffer);
*
* DESCRIPTION
* The build_filename function is used to build
* the name of the cache file.
*
* ARGUMENTS
* buffer - where to put the file name
*
* CAVEATS
* The cache file is in the current directory.
*/
static char *build_filename _((void));
static char *
build_filename()
{
static string_ty *s;
if (!s)
s = str_format(".%.11src", progname_get());
return s->str_text;
}
/*
* NAME
* fread_sane - a saner version of fread
*
* SYNOPSIS
* int fread_sane(FILE *fp, void *buf, size_t buflen);
*
* DESCRIPTION
* The fread_sane function is used to read from a standard stream.
*
* ARGUMENTS
* fp - the stream to read from
* buf - where to place the bytes read
* buflen - number of bytes to read
*
* RETURNS
* 0 on no error, -1 on any error
*
* CAVEATS
* This version considers it to be an error if end-of-file is reached.
*/
static int fread_sane _((FILE *, void *, size_t));
static int
fread_sane(fp, buf, buflen)
FILE *fp;
void *buf;
size_t buflen;
{
if (fread(buf, 1, buflen, fp) != buflen)
return -1;
return 0;
}
/*
* NAME
* cache_read_string - read a string from a file
*
* SYNOPSIS
* string_ty *cache_read_string(FILE *fp));
*
* DESCRIPTION
* The cache_read_string function is used to read a string
* from a file.
*
* ARGUMENTS
* fp - file to read string from
*
* RETURNS
* pointer to string if successful, 0 if not.
*
* CAVEATS
* Must be symmetric with cache_write string below.
*/
static string_ty *cache_read_string _((FILE *));
static string_ty *
cache_read_string(fp)
FILE *fp;
{
static size_t buflen;
static char *buf;
size_t len;
if (fread_sane(fp, &len, sizeof(len)))
return 0;
if (len > buflen)
{
buflen = (len + 0xFF) & ~0xFF;
buf = mem_change_size(buf, buflen);
}
if (fread_sane(fp, buf, len))
return 0;
return str_n_from_c(buf, len);
}
/*
* NAME
* cache_read_item - read a cache item from a file
*
* SYNOPSIS
* int cache_read_item(FILE *fp);
*
* DESCRIPTION
* The cache_read_item function is used to read an item from
* the cache file and installit into the cache.
*
* ARGUMENTS
* fp - the file to read the item from
*
* RETURNS
* 0 in success, -1 on any error
*
* CAVEATS
* Must be symmetric with cache_write_item below.
*/
static int cache_read_item _((FILE *));
static int
cache_read_item(fp)
FILE *fp;
{
string_ty *s;
cache_ty *cp;
size_t nitems;
size_t j;
s = cache_read_string(fp);
if (!s)
return -1;
cp = cache_search(s);
assert(cp);
if (fread_sane(fp, &cp->st, sizeof(cp->st)))
return -1;
if (fread_sane(fp, &nitems, sizeof(nitems)))
return -1;
for (j = 0; j < nitems; ++j)
{
s = cache_read_string(fp);
if (!s)
return -1;
string_list_append_unique(&cp->ingredients, s);
str_free(s);
}
return 0;
}
static void flock_shared _((int, char *));
static void
flock_shared(fd, fn)
int fd;
char *fn;
{
struct flock p;
memset(&p, 0, sizeof(p));
p.l_type = F_RDLCK;
p.l_whence = SEEK_SET;
p.l_start = 0;
p.l_len = 1;
if (fcntl(fd, F_SETLKW, &p))
{
sub_context_ty *scp;
scp = sub_context_new();
sub_errno_set(scp);
sub_var_set(scp, "File_Name", "%s", fn);
fatal_intl(scp, i18n("lock \"$filename\" shared: $errno"));
/* NOTREACHED */
}
}
static void flock_exclusive _((int, char *));
static void
flock_exclusive(fd, fn)
int fd;
char *fn;
{
struct flock p;
memset(&p, 0, sizeof(p));
p.l_type = F_WRLCK;
p.l_whence = SEEK_SET;
p.l_start = 0;
p.l_len = 1;
if (fcntl(fd, F_SETLKW, &p))
{
sub_context_ty *scp;
scp = sub_context_new();
sub_errno_set(scp);
sub_var_set(scp, "File_Name", "%s", fn);
fatal_intl(scp, i18n("lock \"$filename\" exclusive: $errno"));
/* NOTREACHED */
}
}
static void flock_release _((int, char *));
static void
flock_release(fd, fn)
int fd;
char *fn;
{
struct flock p;
memset(&p, 0, sizeof(p));
p.l_type = F_UNLCK;
p.l_whence = SEEK_SET;
p.l_start = 0;
p.l_len = 1;
if (fcntl(fd, F_SETLKW, &p))
{
sub_context_ty *scp;
scp = sub_context_new();
sub_errno_set(scp);
sub_var_set(scp,"File_Name", "%s", fn);
fatal_intl(scp, i18n("unlock \"$filename\": $errno"));
/* NOTREACHED */
}
}
/*
* NAME
* cache_read - read the cache file into the cache
*
* SYNOPSIS
* void cache_read(void);
*
* DESCRIPTION
* The cache_read function is used to read the cache file into the cache.
*
* CAVEATS
* If the cache file is not there, it is as iff the cache file
* contained an image of an empty cache. I.e. nothing happens,
* but it is not an error.
*/
void
cache_read()
{
str_hash_ty nitems;
str_hash_ty j;
FILE *fp;
char *filename;
/*
* open the cache file.
* if it's not there, quietly slink away
*/
filename = build_filename();
if (!os_exists(filename))
return;
fp = fopen_and_check(filename, "rb");
/*
* Take a shared lock: many processes may read simultaneously.
*/
flock_shared(fileno(fp), filename);
/*
* get the number of entries in the file
*/
if (fread_sane(fp, &nitems, sizeof(nitems)))
fatal_intl_read(filename);
/*
* read each entry in the file
*/
for (j = 0; j < nitems; ++j)
{
if (cache_read_item(fp))
fatal_intl_read(filename);
}
/*
* Release the file lock.
*/
flock_release(fileno(fp), filename);
/*
* all done
*/
fclose_and_check(fp, filename);
}
/*
* NAME
* fwrite_sane - a saner version of fwrite
*
* SYNOPSIS
* int fwrite_sane(FILE *fp, void *buf, size_t buflen);
*
* DESCRIPTION
* The fwrite_sane function is used to write data to a file.
*
* ARGUMENTS
* fp - file to write to
* buf - pointer to data to write
* buflen - number of bytes in data
*
* RETURNS
* 0 on success, -1 on any error
*/
static int fwrite_sane _((FILE *, void *, size_t));
static int
fwrite_sane(fp, buf, buflen)
FILE *fp;
void *buf;
size_t buflen;
{
if (fwrite(buf, 1, buflen, fp) != buflen)
return -1;
return 0;
}
/*
* NAME
* cache_write_string - write a string to a file
*
* SYNOPSIS
* int cache_write_string(FILE *fp, string_ty *s);
*
* DESCRIPTION
* The cache_write_string function is used to write a string to a file.
*
* ARGUMENTS
* fp - file to write
* s - string to be written
*
* RETURNS
* 0 on success, -1 on any error
*
* CAVEATS
* Must be symmetric with cache_read_string above.
*/
static int cache_write_string _((FILE *, string_ty *));
static int
cache_write_string(fp, s)
FILE *fp;
string_ty *s;
{
if (fwrite_sane(fp, &s->str_length, sizeof(s->str_length)))
return -1;
if (fwrite_sane(fp, s->str_text, s->str_length))
return -1;
return 0;
}
/*
* NAME
* cache_write_item - write cache item to cache file
*
* SYNOPSIS
* int cache_write_item(FILE *fp, cache_ty *cp);
*
* DESCRIPTION
* The cache_write_item function is used to write a cache
* item to a cache file.
*
* ARGUMENTS
* fp - file to write
* cp - pointer to cache item to write
*
* RETURNS
* 0 on success, -1 on any error
*
* CAVEATS
* Must be symmetric with cache_read_item above.
*/
static int cache_write_item _((FILE *, string_ty *, cache_ty *));
static int
cache_write_item(fp, key, cp)
FILE *fp;
string_ty *key;
cache_ty *cp;
{
size_t j;
if (cache_write_string(fp, key))
return -1;
if (fwrite_sane(fp, &cp->st, sizeof(cp->st)))
return -1;
if
(
fwrite_sane
(
fp,
&cp->ingredients.nstrings,
sizeof(cp->ingredients.nstrings)
)
)
return -1;
for (j = 0; j < cp->ingredients.nstrings; ++j)
if (cache_write_string(fp, cp->ingredients.string[j]))
return -1;
return 0;
}
static void walk _((symtab_ty *, string_ty *, void *, void *));
static void
walk(stp, key, data, arg)
symtab_ty *stp;
string_ty *key;
void *data;
void *arg;
{
cache_ty *cp;
FILE *fp;
cp = data;
fp = arg;
cache_write_item(fp, key, cp);
}
/*
* NAME
* cache_write - write cache to file
*
* SYNOPSIS
* void cache_write(void);
*
* DESCRIPTION
* The cache_write function is used to write the memory image
* of the cache into a disk file.
*
* CAVEATS
* The cache file is in the current directory.
*/
void
cache_write()
{
FILE *fp;
char *filename;
/*
* don't change the file if we don't have to
*/
if (!need_to_write)
return;
need_to_write = 0;
/*
* open the cache file
*/
filename = build_filename();
fp = fopen_and_check(filename, "wb");
/*
* Take an exclusive lock: only one process may take the lock at
* a time. (Potentially, we can miss updates if there are
* several parallel updates. We will simply do them again, next
* time.)
*/
flock_exclusive(fileno(fp), filename);
/*
* write the number of entries to the file
*/
if (fwrite_sane(fp, &symtab->hash_load, sizeof(symtab->hash_load)))
fatal_intl_write(filename);
/*
* write each cache entry to the file
*/
symtab_walk(symtab, walk, fp);
fflush_and_check(fp, filename);
/*
* Release the file lock.
*/
flock_release(fileno(fp), filename);
/*
* close the cache file
*/
fclose_and_check(fp, filename);
}
/*
* NAME
* cache_update_notify - cache has changed
*
* SYNOPSIS
* void cache_update_nitify(void);
*
* DESCRIPTION
* The cache_update_notify function is called whenever the contents
* of the cache is changed. This notifies the cache_write function
* that it needs to rewrite the cache file.
*/
void
cache_update_notify()
{
need_to_write = 1;
}
|