c27dfda68a770fb8d086c9e225f16e9a5a8b3f9f
[mir.git] / source / mir / entity / EntityBrowser.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.entity;\r
33 \r
34 import java.util.*;\r
35 import mir.util.*;\r
36 import mir.storage.*;\r
37 import mir.entity.*;\r
38 \r
39 public class EntityBrowser implements RewindableIterator {\r
40 \r
41   private StorageObject storage;\r
42   private String whereClause;\r
43   private String orderByClause;\r
44   private int batchSize;\r
45   private int toFetch;\r
46   private EntityList currentBatch;\r
47 \r
48   private int skip;\r
49   private int limit;\r
50 \r
51   private int batchPosition;\r
52   private int positionInBatch;\r
53 \r
54   public EntityBrowser(StorageObject aStorage, String aWhereClause, String anOrderByClause,\r
55                        int aBatchSize, int aLimit, int aSkip) throws StorageObjectException {\r
56 \r
57     storage=aStorage;\r
58     whereClause=aWhereClause;\r
59     orderByClause=anOrderByClause;\r
60     batchSize=aBatchSize;\r
61     skip=aSkip;\r
62     limit=aLimit;\r
63 \r
64     rewind();\r
65   }\r
66 \r
67   public EntityBrowser(StorageObject aStorage,\r
68           String aWhereClause, String anOrderByClause,\r
69           int aBatchSize) throws StorageObjectException {\r
70     this(aStorage, aWhereClause, anOrderByClause, aBatchSize, -1, 0);\r
71   }\r
72 \r
73   public void readCurrentBatch(int aSkip) throws StorageObjectException {\r
74     currentBatch = storage.selectByWhereClause(whereClause, orderByClause, aSkip, batchSize);\r
75     batchPosition = aSkip;\r
76     positionInBatch = 0;\r
77   }\r
78 \r
79   public void rewind() {\r
80     try {\r
81       readCurrentBatch(skip);\r
82     }\r
83     catch (Throwable t) {\r
84       throw new RuntimeException(t.getMessage());\r
85     }\r
86   }\r
87 \r
88   public boolean hasNext() {\r
89     try {\r
90       if (limit>-1 && batchPosition+positionInBatch>=skip+limit)\r
91         return false;\r
92 \r
93       if (positionInBatch>=currentBatch.size() && currentBatch.hasNextBatch()) {\r
94         readCurrentBatch(batchPosition+positionInBatch);\r
95       }\r
96 \r
97       return (positionInBatch<currentBatch.size());\r
98     }\r
99     catch (Throwable t) {\r
100       throw new RuntimeException(t.getMessage());\r
101     }\r
102   }\r
103 \r
104   public Object next() {\r
105     try {\r
106       if (hasNext()) {\r
107         Entity result = currentBatch.elementAt(positionInBatch);\r
108         positionInBatch=positionInBatch+1;\r
109 \r
110         return result;\r
111       }\r
112       else {\r
113         return null;\r
114       }\r
115     }\r
116     catch (Throwable t) {\r
117       throw new RuntimeException(t.getMessage());\r
118     }\r
119   }\r
120 \r
121   public void remove() {\r
122     throw new UnsupportedOperationException();\r
123   }\r
124 }