⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nodemap.hpp

📁 ncbi源码
💻 HPP
字号:
/* * =========================================================================== * PRODUCTION $Log: nodemap.hpp,v $ * PRODUCTION Revision 1000.3  2004/04/01 21:02:06  gouriano * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.15 * PRODUCTION * =========================================================================== */#ifndef HTML___NODEMAP__HPP#define HTML___NODEMAP__HPP/*  $Id: nodemap.hpp,v 1000.3 2004/04/01 21:02:06 gouriano Exp $ * =========================================================================== * *                            PUBLIC DOMAIN NOTICE *               National Center for Biotechnology Information * *  This software/database is a "United States Government Work" under the *  terms of the United States Copyright Act.  It was written as part of *  the author's official duties as a United States Government employee and *  thus cannot be copyrighted.  This software/database is freely available *  to the public for use. The National Library of Medicine and the U.S. *  Government have not placed any restriction on its use or reproduction. * *  Although all reasonable efforts have been taken to ensure the accuracy *  and reliability of the software and data, the NLM and the U.S. *  Government do not and cannot warrant the performance or results that *  may be obtained by using this software or data. The NLM and the U.S. *  Government disclaim all warranties, express or implied, including *  warranties of performance, merchantability or fitness for any particular *  purpose. * *  Please cite the author in any work or product based on this material. * * =========================================================================== * * Author:  Eugene Vasilchenko * *//// @file nodemap.hpp /// Various tag mappers classes.#include <corelib/ncbistd.hpp>#include <html/node.hpp>/** @addtogroup TagMapper * * @{ */BEGIN_NCBI_SCOPEclass CNCBINode;struct NCBI_XHTML_EXPORT BaseTagMapper{    virtual ~BaseTagMapper(void);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const = 0;};struct NCBI_XHTML_EXPORT StaticTagMapper : public BaseTagMapper{    StaticTagMapper(CNCBINode* (*function)(void));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(void);};struct NCBI_XHTML_EXPORT StaticTagMapperByName : public BaseTagMapper{    StaticTagMapperByName(CNCBINode* (*function)(const string& name));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(const string& name);};struct NCBI_XHTML_EXPORT StaticTagMapperByData : public BaseTagMapper{    StaticTagMapperByData(CNCBINode* (*function)(void* data), void* data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(void* data);    void* m_Data;};struct NCBI_XHTML_EXPORT StaticTagMapperByDataAndName : public BaseTagMapper{    StaticTagMapperByDataAndName(        CNCBINode* (*function)(void* data, const string& name), void* data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(void* data, const string& name);    void* m_Data;};template<class C>struct StaticTagMapperByNode : public BaseTagMapper{    StaticTagMapperByNode(CNCBINode* (*function)(C* node));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(C* node);};template<class C>struct StaticTagMapperByNodeAndName : public BaseTagMapper{    StaticTagMapperByNodeAndName(        CNCBINode* (*function)(C* node, const string& name));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(C* node, const string& name);};template<class C, typename T>struct StaticTagMapperByNodeAndData : public BaseTagMapper{    StaticTagMapperByNodeAndData(        CNCBINode* (*function)(C* node, T data), T data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(C* node, T data);    T m_Data;};template<class C, typename T>struct StaticTagMapperByNodeAndDataAndName : public BaseTagMapper{    StaticTagMapperByNodeAndDataAndName(        CNCBINode* (*function)(C* node, T data, const string& name), T data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (*m_Function)(C* node, T data, const string& name);    T m_Data;};struct NCBI_XHTML_EXPORT ReadyTagMapper : public BaseTagMapper{    ReadyTagMapper(CNCBINode* node);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    mutable CNodeRef m_Node;};template<class C>struct TagMapper : public BaseTagMapper{    TagMapper(CNCBINode* (C::*method)(void));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (C::*m_Method)(void);};template<class C>struct TagMapperByName : public BaseTagMapper{    TagMapperByName(CNCBINode* (C::*method)(const string& name));    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (C::*m_Method)(const string& name);};template<class C, typename T>struct TagMapperByData : public BaseTagMapper{    TagMapperByData(CNCBINode* (C::*method)(T data), T data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (C::*m_Method)(T data);    T m_Data;};template<class C, typename T>struct TagMapperByDataAndName : public BaseTagMapper{    TagMapperByDataAndName(        CNCBINode* (C::*method)(T data, const string& name), T data);    virtual CNCBINode* MapTag(CNCBINode* _this, const string& name) const;private:    CNCBINode* (C::*m_Method)(T data, const string& name);    T m_Data;};#include <html/nodemap.inl>inlineBaseTagMapper* CreateTagMapper(CNCBINode* node){    return new ReadyTagMapper(node);}inlineBaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(void)){    return new StaticTagMapper(function);}inlineBaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(const string& name)){    return new StaticTagMapperByName(function);}inlineBaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(void* data), void* data){    return new StaticTagMapperByData(function, data);}inlineBaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(void* data, const string& name), void* data){    return new StaticTagMapperByDataAndName(function, data);}template<class C>BaseTagMapper* CreateTagMapper(CNCBINode* (*function)(C* node)){    return new StaticTagMapperByNode<C>(function);}template<class C>BaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(C* node, const string& name)){    return new StaticTagMapperByNodeAndName<C>(function);}template<class C, typename T>BaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(C* node, T data), T data){    return new StaticTagMapperByNodeAndData<C,T>(function, data);}template<class C, typename T>BaseTagMapper* CreateTagMapper(    CNCBINode* (*function)(C* node, T data, const string& name), T data){    return new StaticTagMapperByNodeAndDataAndName<C,T>(function, data);}template<class C>BaseTagMapper* CreateTagMapper(const C*, CNCBINode* (C::*method)(void)){    return new TagMapper<C>(method);}template<class C>BaseTagMapper* CreateTagMapper(    const C*, CNCBINode* (C::*method)(const string& name)){    return new TagMapperByName<C>(method);}template<class C, typename T>BaseTagMapper* CreateTagMapper(CNCBINode* (C::*method)(T data), T data){    return new TagMapperByData<C,T>(method, data);}template<class C, typename T>BaseTagMapper* CreateTagMapper(    CNCBINode* (C::*method)(T data, const string& name), T data){    return new TagMapperByDataAndName<C,T>(method, data);}END_NCBI_SCOPE/* @} *//* * =========================================================================== * $Log: nodemap.hpp,v $ * Revision 1000.3  2004/04/01 21:02:06  gouriano * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.15 * * Revision 1.15  2004/02/02 14:14:15  ivanov * Added TagMapper to functons and class methods which used a data parameter * * Revision 1.14  2004/01/16 15:12:32  ivanov * Minor cosmetic changes * * Revision 1.13  2003/11/05 18:41:06  dicuccio * Added export specifiers * * Revision 1.12  2003/11/03 17:02:53  ivanov * Some formal code rearrangement. Move log to end. * * Revision 1.11  2003/04/25 13:45:35  siyan * Added doxygen groupings * * Revision 1.10  1999/10/28 13:40:31  vasilche * Added reference counters to CNCBINode. * * Revision 1.9  1999/09/03 21:27:28  vakatov * + #include <memory> * * Revision 1.8  1999/07/08 18:05:13  vakatov * Fixed compilation warnings * * Revision 1.7  1999/05/28 16:32:10  vasilche * Fixed memory leak in page tag mappers. * * Revision 1.6  1999/04/27 14:49:58  vasilche * Added FastCGI interface. * CNcbiContext renamed to CCgiContext. * * Revision 1.5  1998/12/28 20:29:13  vakatov * New CVS and development tree structure for the NCBI C++ projects * * Revision 1.4  1998/12/24 16:15:37  vasilche * Added CHTMLComment class. * Added TagMappers from static functions. * * Revision 1.3  1998/12/23 21:20:59  vasilche * Added more HTML tags (almost all). * Importent ones: all lists (OL, UL, DIR, MENU), fonts (FONT, BASEFONT). * * Revision 1.2  1998/12/22 16:39:11  vasilche * Added ReadyTagMapper to map tags to precreated nodes. * * Revision 1.1  1998/12/21 22:24:58  vasilche * A lot of cleaning. * * =========================================================================== */#endif  /* HTML___NODEMAP__HPP */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -