store_swapin.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:5k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: store_swapin.c,v 1.17 1999/01/21 21:10:38 wessels Exp $
  3.  *
  4.  * DEBUG: section 20    Storage Manager Swapin Functions
  5.  * AUTHOR: Duane Wessels
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  18.  *
  19.  *  This program is free software; you can redistribute it and/or modify
  20.  *  it under the terms of the GNU General Public License as published by
  21.  *  the Free Software Foundation; either version 2 of the License, or
  22.  *  (at your option) any later version.
  23.  *  
  24.  *  This program is distributed in the hope that it will be useful,
  25.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  *  GNU General Public License for more details.
  28.  *  
  29.  *  You should have received a copy of the GNU General Public License
  30.  *  along with this program; if not, write to the Free Software
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. #include "squid.h"
  35. typedef struct swapin_ctrl_t {
  36.     StoreEntry *e;
  37.     char *path;
  38.     SIH *callback;
  39.     void *callback_data;
  40.     store_client *sc;
  41. } swapin_ctrl_t;
  42. /* start swapping in */
  43. /* callback_data will become the tag on which the stat/open can be aborted */
  44. void
  45. storeSwapInStart(StoreEntry * e, SIH * callback, void *callback_data)
  46. {
  47.     swapin_ctrl_t *ctrlp;
  48.     assert(e->mem_status == NOT_IN_MEMORY);
  49.     if (!EBIT_TEST(e->flags, ENTRY_VALIDATED)) {
  50. /* We're still reloading and haven't validated this entry yet */
  51. callback(-1, callback_data);
  52. return;
  53.     }
  54.     debug(20, 3) ("storeSwapInStart: called for %08X %s n",
  55. e->swap_file_number, storeKeyText(e->key));
  56.     assert(e->swap_status == SWAPOUT_WRITING || e->swap_status == SWAPOUT_DONE);
  57.     assert(e->swap_file_number >= 0);
  58.     assert(e->mem_obj != NULL);
  59.     ctrlp = xmalloc(sizeof(swapin_ctrl_t));
  60.     ctrlp->e = e;
  61.     ctrlp->callback = callback;
  62.     ctrlp->callback_data = callback_data;
  63.     if (EBIT_TEST(e->flags, ENTRY_VALIDATED))
  64. storeSwapInValidateComplete(ctrlp, 0, 0);
  65.     else
  66. storeValidate(e, storeSwapInValidateComplete, ctrlp, callback_data);
  67. }
  68. void
  69. storeSwapInValidateComplete(void *data, int retcode, int errcode)
  70. {
  71.     swapin_ctrl_t *ctrlp = (swapin_ctrl_t *) data;
  72.     StoreEntry *e;
  73.     if (retcode == -2 && errcode == -2) {
  74. xfree(ctrlp);
  75. return;
  76.     }
  77.     e = ctrlp->e;
  78.     assert(e->mem_status == NOT_IN_MEMORY);
  79.     if (!EBIT_TEST(e->flags, ENTRY_VALIDATED)) {
  80. /* Invoke a store abort that should free the memory object */
  81. (ctrlp->callback) (-1, ctrlp->callback_data);
  82. xfree(ctrlp);
  83. return;
  84.     }
  85.     ctrlp->path = xstrdup(storeSwapFullPath(e->swap_file_number, NULL));
  86.     debug(20, 3) ("storeSwapInValidateComplete: Opening %sn", ctrlp->path);
  87.     store_open_disk_fd++;
  88.     file_open(ctrlp->path,
  89. O_RDONLY,
  90. storeSwapInFileOpened,
  91. ctrlp,
  92. ctrlp->callback_data);
  93. }
  94. void
  95. storeSwapInFileOpened(void *data, int fd, int errcode)
  96. {
  97.     swapin_ctrl_t *ctrlp = data;
  98.     StoreEntry *e = ctrlp->e;
  99.     MemObject *mem = e->mem_obj;
  100.     struct stat sb;
  101.     if (fd == -2 && errcode == -2) {
  102. xfree(ctrlp->path);
  103. xfree(ctrlp);
  104. store_open_disk_fd--;
  105. return;
  106.     }
  107.     assert(mem != NULL);
  108.     assert(e->mem_status == NOT_IN_MEMORY);
  109.     assert(e->swap_status == SWAPOUT_WRITING || e->swap_status == SWAPOUT_DONE);
  110.     if (fd < 0) {
  111. debug(20, 3) ("storeSwapInFileOpened: Failedn"
  112.     "tFile:t'%s'nt URL:t'%s'n",
  113.     ctrlp->path, storeUrl(e));
  114. storeEntryDump(e, 3);
  115. store_open_disk_fd--;
  116.     } else if (e->swap_status != SWAPOUT_DONE) {
  117. (void) 0;
  118.     } else if (fstat(fd, &sb) < 0) {
  119. debug(20, 1) ("storeSwapInFileOpened: fstat() FD %d: %sn", fd, xstrerror());
  120. file_close(fd);
  121. store_open_disk_fd--;
  122. fd = -1;
  123.     } else if (sb.st_size == 0 || sb.st_size != e->swap_file_sz) {
  124. debug(20, 1) ("storeSwapInFileOpened: %s: Size mismatch: %d(fstat) != %d(object)n", ctrlp->path, (int) sb.st_size, e->swap_file_sz);
  125. file_close(fd);
  126. store_open_disk_fd--;
  127. fd = -1;
  128.     }
  129.     if (fd < 0) {
  130. storeReleaseRequest(e);
  131.     } else {
  132. debug(20, 5) ("storeSwapInFileOpened: initialized '%s' for '%s'n",
  133.     ctrlp->path, storeUrl(e));
  134.     }
  135.     (ctrlp->callback) (fd, ctrlp->callback_data);
  136.     xfree(ctrlp->path);
  137.     xfree(ctrlp);
  138. }