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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: redirect.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/02/12 21:49:15  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CORE_001] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef MISC___CGI_REDIRECT__REDIRECT__HPP
  10. #define MISC___CGI_REDIRECT__REDIRECT__HPP
  11. /*  $Id: redirect.hpp,v 1000.0 2004/02/12 21:49:15 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.  * Author:  Vladimir Ivanov
  37.  *
  38.  *
  39.  */
  40. /// @cgi_redirect.hpp
  41. /// Define class CCgiRedirectApplication used to redirect CGI requests.
  42. #include <cgi/cgiapp.hpp>
  43. #include <html/page.hpp>
  44. /** @addtogroup CGIBase
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. /////////////////////////////////////////////////////////////////////////////
  50. ///
  51. /// CCgiRedirectApplication --
  52. ///
  53. /// Defines class for CGI redirection.
  54. ///
  55. /// CCgiRedirectApplication inherits its basic functionality from
  56. /// CCgiApplication and defines additional method for remapping CGI entries.
  57. ///
  58. /// The CCgiRedirectApplication class uses registry file to get settings,
  59. /// and rules to entries changing.
  60. ///
  61. /// Class map some registry entries to HTML page tags.
  62. /// The list of mapped tags:
  63. ///
  64. ///     _TITLE_   - Page title;
  65. ///     _HEADER_  - Main header;
  66. ///     _MESSAGE_ - Some additional message;
  67. ///     _BASEURL_ - New base URL to redirect to;
  68. ///     _URL_     - Full new URL with all parameters;
  69. ///     _TIMER_   - Wait time (in seconds) before redirecting
  70. ///                 (if this feature is implemented by template).
  71. ///
  72. ///     Also, all CGI variables will be mapped with its names.
  73. ///     So they can be used inside HTML forms to redirect requests by
  74. ///     GET/POST methods.
  75. ///
  76. /// For an explanation of the syntax of the Registry file, see the
  77. /// C++ Toolkit documentation.
  78. ///
  79. /// For an examples of the registry and template files, see 
  80. /// directory "/src/misc/cgi_redirect". It also contains standart
  81. /// CGI redirect application.
  82. class NCBI_XCGI_REDIRECT_EXPORT CCgiRedirectApplication:public CCgiApplication
  83. {
  84.     typedef CCgiApplication CParent;
  85. public:
  86.     virtual void Init(void);
  87.     virtual int  ProcessRequest(CCgiContext& ctx);
  88. public:
  89.     /// Remap CGI entries for the redirection.
  90.     ///
  91.     /// This default implementation uses registry file to obtain rules for
  92.     /// the entries' remapping (see details in this class's description)
  93.     /// New entries will be placed into "new_entries" according to these rules.
  94.     /// If there is no rule defined for an entry, then the entry will be copied
  95.     /// to "new_entries" as is, unchanged.
  96.     ///
  97.     /// @param ctx
  98.     ///   Current CGI context.
  99.     ///   Can be used to get original entries and server context. 
  100.     /// @param new_entries
  101.     ///   Storage for the new, remapped CGI entries. Initially, it is empty,
  102.     ///   and this method should fill it up. These entries will then be used
  103.     ///   instead of original entries to generate request(URL) for the redirection.
  104.     /// @return
  105.     ///   Reference to "new_entries" parameter.
  106.     /// @sa
  107.     ///   ProcessRequest()
  108.     virtual TCgiEntries& RemapEntries(CCgiContext& ctx, TCgiEntries& new_entries);
  109. protected:
  110.     const CHTMLPage& GetPage(void) const;
  111.     CHTMLPage&       GetPage(void);
  112. private:
  113.     CHTMLPage m_Page;  ///< HTML page used to send back the redirect information.
  114. };
  115. END_NCBI_SCOPE
  116. /* @} */
  117. /*
  118.  * ===========================================================================
  119.  * $Log: redirect.hpp,v $
  120.  * Revision 1000.0  2004/02/12 21:49:15  gouriano
  121.  * PRODUCTION: IMPORTED [CORE_001] Dev-tree R1.4
  122.  *
  123.  * Revision 1.4  2004/02/10 15:26:17  ivanov
  124.  * Added comments
  125.  *
  126.  * Revision 1.3  2004/02/09 19:37:45  ivanov
  127.  * Moved from "cgi/redirect" to "misc/cgi_redirect" directory
  128.  *
  129.  * Revision 1.2  2004/02/09 17:58:13  ivanov
  130.  * Added and changed comments (by Denis Vakatov)
  131.  *
  132.  * Revision 1.1  2004/02/09 17:10:19  ivanov
  133.  * Initial revision
  134.  *
  135.  * ===========================================================================
  136.  */
  137. #endif // MISC___CGI_REDIRECT__REDIRECT__HPP