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