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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: store_log.c,v 1.6 1998/07/22 20:54:02 wessels Exp $
  3.  *
  4.  * DEBUG: section 20    Storage Manager Logging 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. static char *storeLogTags[] =
  36. {
  37.     "CREATE",
  38.     "SWAPIN",
  39.     "SWAPOUT",
  40.     "RELEASE"
  41. };
  42. static int storelog_fd = -1;
  43. void
  44. storeLog(int tag, const StoreEntry * e)
  45. {
  46.     MemBuf mb;
  47.     MemObject *mem = e->mem_obj;
  48.     HttpReply *reply;
  49.     if (storelog_fd < 0)
  50. return;
  51.     if (mem == NULL)
  52. return;
  53.     if (mem->log_url == NULL) {
  54. debug(20, 1) ("storeLog: NULL log_url for %sn", mem->url);
  55. storeMemObjectDump(mem);
  56. mem->log_url = xstrdup(mem->url);
  57.     }
  58.     memBufDefInit(&mb);
  59.     reply = mem->reply;
  60.     memBufPrintf(&mb, "%9d.%03d %-7s %08X %4d %9d %9d %9d %s %d/%d %s %sn",
  61. (int) current_time.tv_sec,
  62. (int) current_time.tv_usec / 1000,
  63. storeLogTags[tag],
  64. e->swap_file_number,
  65. reply->sline.status,
  66. (int) reply->date,
  67. (int) reply->last_modified,
  68. (int) reply->expires,
  69. strBuf(reply->content_type) ? strBuf(reply->content_type) : "unknown",
  70. reply->content_length,
  71. (int) (mem->inmem_hi - mem->reply->hdr_sz),
  72. RequestMethodStr[mem->method],
  73. mem->log_url);
  74.     file_write_mbuf(storelog_fd, -1, mb, NULL, NULL);
  75. }
  76. void
  77. storeLogRotate(void)
  78. {
  79.     char *fname = NULL;
  80.     int i;
  81.     LOCAL_ARRAY(char, from, MAXPATHLEN);
  82.     LOCAL_ARRAY(char, to, MAXPATHLEN);
  83. #ifdef S_ISREG
  84.     struct stat sb;
  85. #endif
  86.     if (storelog_fd > -1) {
  87. file_close(storelog_fd);
  88. storelog_fd = -1;
  89.     }
  90.     if ((fname = Config.Log.store) == NULL)
  91. return;
  92.     if (strcmp(fname, "none") == 0)
  93. return;
  94. #ifdef S_ISREG
  95.     if (stat(fname, &sb) == 0)
  96. if (S_ISREG(sb.st_mode) == 0)
  97.     return;
  98. #endif
  99.     debug(20, 1) ("storeLogRotate: Rotating.n");
  100.     /* Rotate numbers 0 through N up one */
  101.     for (i = Config.Log.rotateNumber; i > 1;) {
  102. i--;
  103. snprintf(from, MAXPATHLEN, "%s.%d", fname, i - 1);
  104. snprintf(to, MAXPATHLEN, "%s.%d", fname, i);
  105. rename(from, to);
  106.     }
  107.     /* Rotate the current log to .0 */
  108.     if (Config.Log.rotateNumber > 0) {
  109. snprintf(to, MAXPATHLEN, "%s.%d", fname, 0);
  110. rename(fname, to);
  111.     }
  112.     storelog_fd = file_open(fname, O_WRONLY | O_CREAT, NULL, NULL, NULL);
  113.     if (storelog_fd < 0) {
  114. debug(50, 0) ("storeLogRotate: %s: %sn", fname, xstrerror());
  115. debug(20, 1) ("Store logging disabledn");
  116.     }
  117. }
  118. void
  119. storeLogClose(void)
  120. {
  121.     if (storelog_fd >= 0)
  122. file_close(storelog_fd);
  123. }
  124. void
  125. storeLogOpen(void)
  126. {
  127.     if (strcmp(Config.Log.store, "none") == 0)
  128. storelog_fd = -1;
  129.     else
  130. storelog_fd = file_open(Config.Log.store,
  131.     O_WRONLY | O_CREAT,
  132.     NULL,
  133.     NULL,
  134.     NULL);
  135.     if (storelog_fd < 0)
  136. debug(20, 1) ("Store logging disabledn");
  137. }