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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: system_path.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:51:20  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_UTILS___SYSTEM_PATH__HPP
  10. #define GUI_UTILS___SYSTEM_PATH__HPP
  11. /*  $Id: system_path.hpp,v 1000.2 2004/06/01 19:51:20 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software / database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software / database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Robert G. Smith
  37.  *
  38.  * File Description:
  39.  *    CSystemPath -- System dependent functions needed by CGBenchApp, the main
  40.  *                   application class for GBENCH
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/gui.hpp>
  44. /** @addtogroup GUI_UTILS
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. class NCBI_GUIUTILS_EXPORT CSystemPath
  50. {
  51. public:
  52.     // Utility function to hide the platform specifics of locating our
  53.     // standard directories and files.  This function is responsible for
  54.     // resolving '<std>', '<home>', and '<res>' correctly.
  55.     static string  ResolvePath(const string& path, const string& rel_name);
  56.     // Utility function to hide the platform specifics of locating our
  57.     // standard directories.  This function is responsible for resolving
  58.     // '<std>', '<home>', and '<res>' correctly, and further ensures that
  59.     // the relevant final name already exists as a file or directory.
  60.     // The 'path' parameter here contains a delimited set of directories
  61.     // to search in order.
  62.     static string  ResolvePathExisting(const string& path,
  63.                                        const string& delim = ",");
  64.     // Call the two paramter ResolvePath after splitting the path.
  65.     static string  ResolvePath(const string& path);
  66.     
  67.     // the applicaton installation directory.  Usually the parent of the
  68.     // App Path.
  69.     // corresponds to the <std> alias above.
  70.     static string  GetStdPath(void);
  71.     // the user-specified home directory
  72.     // corresponds to the <home> alias above.
  73.     static string  GetHomePath(void);
  74.     // the user-specified home directory
  75.     // corresponds to the <res> alias above.
  76.     static string  GetResourcePath(void);
  77. };
  78. END_NCBI_SCOPE
  79. /* @} */
  80. /*
  81.  * ===========================================================================
  82.  * $Log: system_path.hpp,v $
  83.  * Revision 1000.2  2004/06/01 19:51:20  gouriano
  84.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  85.  *
  86.  * Revision 1.5  2004/05/20 12:24:26  dicuccio
  87.  * Corrected comments.  Added resolver API for standard '<res>' alias mapping
  88.  *
  89.  * Revision 1.4  2004/05/03 12:41:10  dicuccio
  90.  * Split library into gui_utils and gui_objutils.  Added #include for gui/gui.hpp
  91.  *
  92.  * Revision 1.3  2004/04/16 14:26:30  dicuccio
  93.  * Added doxygen module tag.  Update include guard to reflect real location
  94.  *
  95.  * Revision 1.2  2004/02/18 17:15:40  dicuccio
  96.  * Use correct export specifier
  97.  *
  98.  * Revision 1.1  2004/02/17 20:35:18  rsmith
  99.  * moved core/settings.[ch]pp and core/system_path.[ch]pp to config and utils, respectively.
  100.  *
  101.  * Revision 1.4  2003/10/14 16:21:12  dicuccio
  102.  * Added ResolvePathExisting() to search a set of paths to find the first
  103.  * available one
  104.  *
  105.  * Revision 1.3  2003/08/25 17:57:12  rsmith
  106.  * add member ResolvePath that splits and resolves a single string.
  107.  *
  108.  * Revision 1.2  2003/07/30 13:08:48  dicuccio
  109.  * Added export specifier
  110.  *
  111.  * Revision 1.1  2003/07/30 12:52:12  dicuccio
  112.  * Moved 'gbench_system.[h,c]pp' to 'system_path.[h,c]pp'
  113.  *
  114.  * Revision 1.2  2003/07/30 12:26:19  dicuccio
  115.  * Changed name of system path accessor class
  116.  *
  117.  * Revision 1.1  2003/06/16 13:50:12  rsmith
  118.  * initial checkin. Resolve paths in a system independent manner.
  119.  *
  120.  */
  121. #endif // GUI_UTILS___SYSTEM_PATH__HPP