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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: factory.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/01 21:01:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HTML___FACTORY__HPP
  10. #define HTML___FACTORY__HPP
  11. /*  $Id: factory.hpp,v 1000.2 2004/04/01 21:01:39 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:  Lewis Geer
  37.  *
  38.  */
  39. /// @file factory.hpp 
  40. /// Class creation factory.
  41. #include <cgi/ncbicgi.hpp>
  42. #include <map>
  43. /** @addtogroup CreationFactory
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. // CFactory is used to create objects based on matching strings.
  49. // This is used to create the dispatch table.
  50. template <class Type>
  51. struct SFactoryList {
  52.     // Create the object
  53.     Type* (*pFactory)(void);
  54.     const char* MatchString; // The string to match
  55.     int Style;               // Optional flags
  56. };
  57. template <class Type>
  58. class CFactory {
  59. public:
  60.     int CgiFactory(const TCgiEntries& Cgi, SFactoryList<Type>* List);
  61. };
  62. // List should always end with the m_MatchString = ""
  63. // (visual C 6.0 doesn't allow templates to find the size of arrays).
  64. template <class Type>
  65. int CFactory<Type>::CgiFactory(const TCgiEntries& Cgi,
  66.                                SFactoryList<Type>* List)
  67. {
  68.     int i = 0;
  69.     TCgiEntriesCI iRange, iPageCgi;
  70.     pair<TCgiEntriesCI, TCgiEntriesCI> Range;
  71.     TCgiEntries PageCgi;
  72.     while ( !string(List[i].MatchString).empty() ) {
  73.         PageCgi.erase(PageCgi.begin(), PageCgi.end());
  74.         // Parse the MatchString
  75.         CCgiRequest::ParseEntries(List[i].MatchString, PageCgi);
  76.         bool ThisPage = true;
  77.         for ( iPageCgi = PageCgi.begin(); iPageCgi != PageCgi.end(); iPageCgi++) { 
  78.             Range = Cgi.equal_range(iPageCgi->first);
  79.             for ( iRange = Range.first; iRange != Range.second; iRange++ ) {
  80.                 if ( iRange->second == iPageCgi->second)
  81.                     goto equality;
  82.                 if ( iPageCgi->second.empty())
  83.                     goto equality;  // wildcard
  84.             }
  85.             ThisPage = false;
  86.         equality:
  87.             ;
  88.         }
  89.         if ( ThisPage ) {
  90.             break;
  91.         }
  92.         i++;
  93.     }
  94.     return i;
  95. }
  96. END_NCBI_SCOPE
  97. /* @} */
  98. /*
  99.  * ===========================================================================
  100.  * $Log: factory.hpp,v $
  101.  * Revision 1000.2  2004/04/01 21:01:39  gouriano
  102.  * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.10
  103.  *
  104.  * Revision 1.10  2004/01/16 15:12:31  ivanov
  105.  * Minor cosmetic changes
  106.  *
  107.  * Revision 1.9  2003/11/03 17:02:53  ivanov
  108.  * Some formal code rearrangement. Move log to end.
  109.  *
  110.  * Revision 1.8  2003/04/25 13:45:24  siyan
  111.  * Added doxygen groupings
  112.  *
  113.  * Revision 1.7  2002/07/10 18:42:59  ucko
  114.  * Use proper typedefs in order to work with CCgiEntry.
  115.  *
  116.  * Revision 1.6  1999/05/11 02:53:42  vakatov
  117.  * Moved CGI API from "corelib/" to "cgi/"
  118.  *
  119.  * Revision 1.5  1998/12/28 23:29:02  vakatov
  120.  * New CVS and development tree structure for the NCBI C++ projects
  121.  *
  122.  * Revision 1.4  1998/12/28 21:48:11  vasilche
  123.  * Made Lewis's 'tool' compilable
  124.  *
  125.  * Revision 1.3  1998/12/23 14:28:06  vasilche
  126.  * Most of closed HTML tags made via template.
  127.  *
  128.  * Revision 1.2  1998/12/09 23:02:54  lewisg
  129.  * update to new cgiapp class
  130.  *
  131.  * Revision 1.1  1998/12/01 19:09:07  lewisg
  132.  * uses CCgiApplication and new page factory
  133.  *
  134.  * ===========================================================================
  135.  */
  136. #endif  /* HTML___FACTORY__HPP */