file_obsolete.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: file_obsolete.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:40:03  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: file_obsolete.cpp,v 1000.2 2004/06/01 19:40:03 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anatoliy Kuznetsov
  35.  *
  36.  * File Description:
  37.  *   Remove old files from the specified directory
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <util/file_obsolete.hpp>
  42. #include <corelib/ncbitime.hpp>
  43. #include <corelib/ncbifile.hpp>
  44. BEGIN_NCBI_SCOPE
  45. CFileObsolete::CFileObsolete(const string& path)
  46.     : m_Path(path)
  47. {
  48. }
  49. CFileObsolete::~CFileObsolete()
  50. {
  51. }
  52. bool CFileObsolete::OnRemove(const string& filename)
  53. {
  54.     return true;
  55. }
  56. void CFileObsolete::Remove(const string&  mask, 
  57.                            unsigned int   age,
  58.                            ETimeMode      tmode)
  59. {
  60.     CDir dir(m_Path);
  61.     if (!dir.Exists()) {
  62.         ERR_POST(Info << "Directory is not found or access denied:" << m_Path);
  63.         return;
  64.     }
  65.     CTime current(CTime::eCurrent);
  66.     time_t cutoff_time = current.GetTimeT();
  67.     if (cutoff_time < (time_t) age) {
  68.         cutoff_time = 0;
  69.     } else {
  70.         cutoff_time -= age;
  71.     }
  72.     CDir::TEntries  content(dir.GetEntries(mask));
  73.     ITERATE(CDir::TEntries, it, content) {
  74.         if (!(*it)->IsFile()) {
  75.             continue;
  76.         }
  77.         CTime modification;
  78.         CTime creation;
  79.         CTime access;
  80.         bool res = 
  81.             (*it)->GetTime(&modification, &creation, &access);
  82.         if (!res) {
  83.             continue;
  84.         }
  85.         time_t check_time = 0;
  86.         switch (tmode) {
  87.         case eLastModification:
  88.             check_time = modification.GetTimeT();
  89.             break;
  90.         case eLastAccess:
  91.             check_time = access.GetTimeT();
  92.             break;
  93.         default:
  94.             _ASSERT(0);
  95.             continue;
  96.         } // switch
  97.         if (check_time < cutoff_time) {  // Remove file
  98.             (*it)->Remove();
  99.         }
  100.     } // ITERATE
  101. }
  102. END_NCBI_SCOPE
  103. /*
  104.  * ===========================================================================
  105.  * $Log: file_obsolete.cpp,v $
  106.  * Revision 1000.2  2004/06/01 19:40:03  gouriano
  107.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  108.  *
  109.  * Revision 1.4  2004/05/17 21:06:02  gorelenk
  110.  * Added include of PCH ncbi_pch.hpp
  111.  *
  112.  * Revision 1.3  2004/01/09 17:57:15  lavr
  113.  * Resolve signed/unsigned comparison issues
  114.  * Avoid file removal should Remove() get bad "tmode"
  115.  *
  116.  * Revision 1.2  2003/12/05 18:50:23  kuznets
  117.  * Fixed potential overflow on unsigned int arithmetics
  118.  *
  119.  * Revision 1.1  2003/12/01 15:46:48  kuznets
  120.  * Initial revision
  121.  *
  122.  *
  123.  * ===========================================================================
  124.  */