分页管理器实现

    在DataGrid的web版控件中提供了自动分页的功能,但是我从来没用过它,因为它实现的分页只是一种假相。我们为什么需要分页?那是因为符合条件的记录可能很多,如果一次读取所有的记录,不仅延长获取数据的时间,而且也极度浪费内存。而分页的存在的主要目的正是为了解决这两个问题(当然,也不排除为了UI美观的需要而使用分页的)。而web版的DataGrid是怎样实现分页的了?它并没有打算解决上述两个问题,而还是一次读取所有的数据,然后以分页的样子表现出来。这是对效率和内存的极大损害!

    于是我自己实现了分页管理器IPaginationManager ,IPaginationManager 每次从数据库中读取指定的任意一页,并且可以缓存指定数量的page。这个分页管理器的主要特点是:
(1)支持随机跳转。这是通过嵌套Select语句实现的。
(2)支持缓存。通过EnterpriseServerBase.DataStructure.FixCacher进行支持。
 
    先来看看IPaginationManager接口的定义:

    public interface IPaginationManager
    {
        void      Initialize(DataPaginationParas paras) ;
        void      Initialize(IDBAccesser accesser ,int page_Size ,string whereStr ,string[] fields) ;//如果选择所有列,fields可传null
        
        DataTable GetPage(int index) ;  //取出第index页
        DataTable CurrentPage() ;
        DataTable PrePage() ;
        DataTable NextPage() ;

        int          PageCount{get ;}
        int       CacherSize{get; set; }
    }

    这个接口定义中,最主要的是GetPage()方法,实现了这个方法,其它的三个获取页面的方法CurrentPage、PrePage、NextPage也就非常容易了。另外,CacherSize属性可以让我们指定缓存页面的数量。如果不需要缓存,则设置其值<=0,如果需要无限缓存,则值为Int.MaxValue。
    IPaginationManager接口中的第二个Initialize方法,你不要关心,它是给XCodeFactory生成的数据层使用了,我们来看看第一个Initialize方法的参数类型DataPaginationParas的定义:

 

 

    public class DataPaginationParas
    {
        public int      PageSize = 10 ;        
        public string[] Fields = {"*"}; //要搜索出的列,"*"表示所有列

        public string   ConnectString ;
        public string   TableName ; 
        public string   WhereStr ;      //搜索条件的where字句

        public DataPaginationParas(string connStr ,string tableName ,string whereStr)
        {
            this.ConnectString = connStr ;
            this.TableName       = tableName ;
            this.WhereStr      = whereStr ;
        }        

        #region GetFiedString
        public string GetFiedString()
        {
            if(this.Fields == null) 
            {
                this.Fields = new string[] {"*"} ;
            }

            string fieldStrs = "" ;

            for(int i=0 ;i<this.Fields.Length ;i++)
            {
                fieldStrs += " " + this.Fields[i] ;
                if(i != (this.Fields.Length -1))
                {
                    fieldStrs += " , " ;
                }
                else
                {
                    fieldStrs += " " ;
                }
            }

            return fieldStrs ;
        }
        #endregion

    }

    DataPaginationParas.GetFiedString用于把要搜索的列形成字符串以便嵌入到SQL语句中。DataPaginationParas中的其它字段的意思都很明显。
    现在来看看分页管理器的实现了:

    public class PaginationManager :IPaginationManager
    {
        private DataPaginationParas   theParas ;
        private IADOBase              adoBase ;            
        private DataTable   curPage      = null ;
        private int         itemCount    = 0 ;
        private int         pageCount    = -1 ;        
        private int         curPageIndex = -1 ;
        
        private FixCacher   fixCacher    = null ;
        private string      fieldStrs    = "" ;

        /// <summary>
        /// cacheSize 小于等于0 -- 表示不缓存 ,Int.MaxValue -- 缓存所有
        /// </summary>        
        public PaginationManager(int cacheSize)
        {
            if(cacheSize == int.MaxValue)
            {
                this.fixCacher = new FixCacher() ;
            }
            else if(cacheSize >0)
            {
                this.fixCacher = new FixCacher(cacheSize) ;
            }
            else
            {
                this.fixCacher = null ;
            }
        }    

        public PaginationManager()
        {
        }

        #region IDataPaginationManager 成员
        public int CacherSize
        {
            get
            {
                if(this.fixCacher == null)
                {
                    return 0 ;
                }

                return this.fixCacher.Size ;
            }
            set
            {
                if(this.fixCacher == null)
                {
                    this.fixCacher = new FixCacher(value) ;
                }
                else
                {
                    this.fixCacher.Size = value ;
                }
            }
        }
        public int PageCount
        {
            get
            {
                if(this.pageCount == -1)
                {
                    string selCountStr = string.Format("Select count(*) from {0} {1}" ,this.theParas.TableName ,this.theParas.WhereStr) ;
                    DataSet ds = this.adoBase.DoQuery(selCountStr) ;
                    this.itemCount = int.Parse(ds.Tables[0].Rows[0][0].ToString()) ;
                    this.pageCount = this.itemCount/this.theParas.PageSize ;
                    if((this.itemCount%this.theParas.PageSize > 0))
                    {
                        ++ this.pageCount ;
                    }
                }

                return this.pageCount ;
            }
        }

        /// <summary>
        /// GetPage 取出指定的一页
        /// </summary>        
        public DataTable GetPage(int index)
        {
            if(index == this.curPageIndex)
            {
                return this.curPage ;
            }

            if((index < 0) || (index > (this.PageCount-1)))
            {
                return null;
            }

            DataTable dt = this.GetCachedObject(index) ;

            if(dt == null)
            {
                string selectStr = this.ConstrutSelectStr(index) ;
                DataSet ds = this.adoBase.DoQuery(selectStr) ;
                dt = ds.Tables[0] ;

                this.CacheObject(index ,dt) ;
            }

            this.curPage      = dt ;
            this.curPageIndex = index ;
            return this.curPage ;
        }

        private DataTable GetCachedObject(int index)
        {
            if(this.fixCacher == null)
            {
                return null ;
            }

            return (DataTable)this.fixCacher[index] ;
        }

        private void CacheObject(int index ,DataTable page)
        {
            if(this.fixCacher != null)
            {
                this.fixCacher.PutIn(index ,page) ;
            }
        }

        public DataTable CurrentPage()
        {
            return this.curPage ;
        }

        public DataTable PrePage()
        {
            return this.GetPage((--this.curPageIndex)) ;
        }

        public DataTable NextPage()
        {
            return this.GetPage((++this.curPageIndex)) ;
        }    
    
        private string ConstrutSelectStr(int pageIndex)
        {
            if(pageIndex == 0)
            {
                return string.Format("Select top {0} {1} from {2} {3} ORDER BY ID" ,this.theParas.PageSize ,this.fieldStrs ,this.theParas.TableName ,this.theParas.WhereStr) ;
            }

            int innerCount     = this.itemCount - this.theParas.PageSize*pageIndex ;
            string innerSelStr = string.Format("Select top {0} {1} from {2} {3} ORDER BY ID DESC " ,innerCount , this.fieldStrs ,this.theParas.TableName ,this.theParas.WhereStr) ;
            string outerSelStr = string.Format("Select top {0} * from ({1}) DERIVEDTBL ORDER BY ID" ,this.theParas.PageSize ,innerSelStr) ;

            return outerSelStr ;
        }

        #region Initialize
        public void Initialize(IDBAccesser accesser, int page_Size, string whereStr, string[] fields)
        {
            this.theParas = new DataPaginationParas(accesser.ConnectString ,accesser.DbTableName ,whereStr) ;
            this.theParas.Fields = fields ;
            this.theParas.PageSize = page_Size ;
        
            this.fieldStrs = this.theParas.GetFiedString() ;    
            this.adoBase = new SqlADOBase(this.theParas.ConnectString) ;
        }    
        
        public void Initialize(DataPaginationParas paras)
        {
            this.theParas = paras ;
            this.fieldStrs = this.theParas.GetFiedString() ;    
            this.adoBase = new SqlADOBase(this.theParas.ConnectString) ;
        }

        #endregion

        #endregion
    }

    了解这个类的实现,可以从GetPage(int index)方法入手,另外私有方法ConstrutSelectStr()的实现说明了如何使用嵌套sql语句进行随机分页搜索。
    最后,关于分页管理器,需要指出的是,搜索对应的表必须有一个名为"ID"的主键--这是唯一的要求。另外,分页管理器实现用到的数据访问低阶封装IADOBase定义于EnterpriseServerBase类库中。
    使用分页管理器是很简单的,加上UI界面后,只要把返回的DataTable绑定到DataGrid就可以了:)

 

时间: 2024-10-27 00:49:10

分页管理器实现的相关文章

利用ASP.NET实现分页管理器

asp.net|分页     在DataGrid的web版控件中提供了自动分页的功能,但是我从来没用过它,因为它实现的分页只是一种假相.我们为什么需要分页?那是因为符合条件的记录可能很多,如果一次读取所有的记录,不仅延长获取数据的时间,而且也极度浪费内存.而分页的存在的主要目的正是为了解决这两个问题(当然,也不排除为了UI美观的需要而使用分页的).而web版的DataGrid是怎样实现分页的了?它并没有打算解决上述两个问题,而还是一次读取所有的数据,然后以分页的样子表现出来.这是对效率和内存的极

Windows 7游戏管理器

  提起Win7的游戏管理器,可以将众多的游戏集成到一个窗口中且能完整地显示每个游戏的详细信息,因此非常方便我们从中选择自己喜欢的游戏来玩.但美中不足的是,Windows7游戏管理器只支持显示微软自己开发的某些游戏(如"红心大战"). 我们能否将自己平常喜欢玩的任意一个游戏添加到Win 7的游戏管理器当中呢?答案当然是肯定的.接下来,笔者就以添加经典的FPS游戏"反恐精英"为例子,给大家介绍一下如何来实现. 让第三方游戏在游戏管理器中显示 Win7游戏管理器默认能够

用社交网络连接WebSphere MQ:列队管理器和MQ应用程序的Twitter通知

如今,社交网络无所不在 -- 为了与朋友联系,或是为了让自己与时俱进,抑或是为了让别人获知共同关心话题的最新进展.社交网络在企业中也很有用.本文将向您展示如何快速而轻松地在您的 WebSphere MQ 应用程序中使用社交网络软件(比如 Twitter)向广大的系统管理员或最终用户,甚至是向其他应用程序或中间件发送状态及问题信息.本文中的示例使用的是面向 WebSphere Application Server Community Edition 运行时的 JEE 技术(简单的消息驱动的 bea

odbc驱动程序管理器未发现数据源名称 并且未指定默认驱动程序

问题描述 odbc驱动程序管理器未发现数据源名称 并且未指定默认驱动程序 解决方案 今天下午修改很早做的一个系统,用的是JDBC-ODBC驱动. ?? 在我本机Tomcat做测试,发现使用startup.bat启动Tomcat服务后,访问Web服务一切正常. ?? 但使用Monitor Tomcat 启动Tomcat作为服务例程,则访问Web服务报错: ???? [Microsoft][O......答案就在这里:[Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认

shiro和spring集成时session管理器超时时间问题

问题描述 shiro和spring集成时session管理器超时时间问题 这是我的配置文件,我配置了并发人数控制和动态权限过滤,然后session超时时间这里也是配置了的,然后并没有什么鸟用,在登录以后获取超时时间也是正常的,但还是1分钟就过期了. <?xml version="1.0" encoding="UTF-8"?> xmlns:util="http://www.springframework.org/schema/util"

adodc-用ADO控件编的一个简易学生成绩管理器,运行时显示找不到可安装的ISAM,求解决

问题描述 用ADO控件编的一个简易学生成绩管理器,运行时显示找不到可安装的ISAM,求解决 Private Sub Command1_Click() On Err GoTo MyErr If Command1.Caption = "添加" Then Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = &qu

在linux中使用包管理器安装node.js

 这篇文章主要介绍了在linux中使用包管理器安装node.js的方法以及具体安装过程,非常详细,推荐给大家,有需要的小伙伴参考下吧.     网上文章中,在linux下安装node.js都是使用源码编译,其实node的github上已经提供了各个系统下使用各自的包管理器(package manager)安装node.js的方法. 1. 在Ubuntu中,使用如下命令:   代码如下: curl -sL https://deb.nodesource.com/setup | sudo bash -

用数据保护管理器恢复数据的选项

对你的数据进行备份是至关重要的,但是如果你不知道如何恢复这些数据,那些备份对你来说根本没有用处.这里是一个用微软系统中心数据保护管理器(DPM)进行数据恢复的选项列表. 数据保护管理器通过对你的数据进行卷影复制来工作.数据保护管理器默认被设置成每隔一小时进行数据保护并且每天进行三次卷影复制.它把每次对一个文件进行的卷影复制做为一个独立的版本.如果数据保护管理器服务器有足够的磁盘空间,数据保护管理器可以最多保存一个文件的最多64个不同版本. 当数据保护管理器检测到一个文件被修改了,它并不把这个文件

离开Java布局管理器

Java语言中提供的布局管理器种类有:边界式布局.卡片式布局.流式布局和网格式布局等,各有不同的特点,可根据实际需要选用:但有最大自由设计空间的是"无布局管理器"--即不使用任何布局格式,而通过手工方式添加组件到页面布局的绝对位置上.本例中使用的便是"无布局管理器". 在使用"无布局管理器"时,首先要作出声明,即: setLayout(null); 然后用reshape()方法指定组件的具体位置和尺寸, 基本语句如下所示: Label label