Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*
 * Copyright 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.gwt.gen2.table.client;

import java.util.*;

import com.google.gwt.gen2.table.client.TableModelHelper.*;

/**
 * <p>
 * A {@link MutableTableModel} that wraps another {@link MutableTableModel} and
 * adds its own cache so subsequent requests for the same data will not require
 * another {@link MutableTableModel} request.
 * </p>
 * <p/>
 * <h1>Cache</h1>
 * <p>
 * The CachedTableModel supports caching rows of data before they are needed,
 * allowing listeners to request data much more quickly. When another class
 * requests data, the CachedTableModel will feed data from its cache if
 * available, and then it will request unavailable data from your specific
 * implementation.
 * </p>
 * <p>
 * The pre cache and post cache refers to the number of rows to request in
 * addition to the actual request. Pre cache refers to rows before the request,
 * and post cache refers to rows after the request. For example, in applications
 * where you expect the user to move forward quickly, you would want a large
 * post cache.
 * </p>
 * <p>
 * The size of your cache depends on the implementation and usage of your view
 * component. If you are using a view that supports paging, such as the
 * {@link PagingScrollTable}, you should set your cache to a multiple of the
 * page size so the user can go to the next and previous pages quickly.
 * </p>
 * <h1>Limitations</h1>
 * <p>
 * The cache is cleared every time the sort order changes. However, if you
 * disallow column sorting or expect that the user will not sort the columns
 * repeatedly, the cache will still improve paging performance.
 * </p>
 *
 * @param <RowType> the data type of the row values
 */
public class CachedTableModel<RowType> extends MutableTableModel<RowType>
{
    /**
     * An intermediate callback that adds the response from the inner table model
     * into the cache, then responds to the original request.
     */
    private class CacheCallback implements Callback<RowType>
    {
        /**
         * The actual callback from the original requester.
         */
        private Callback<RowType> actualCallback;

        /**
         * The actual number of requested rows.
         */
        private int actualNumRows;

        /**
         * The original request.
         */
        private Request actualRequest;

        /**
         * The actual first requested row.
         */
        private int actualStartRow;

        /**
         * Construct a new {@link CacheCallback}.
         *
         * @param request  the original request
         * @param callback The actual callback from the requestor
         * @param startRow The actual first requested row
         * @param numRows  The actual number of requested rows
         */
        public CacheCallback( Request request, Callback<RowType> callback, int startRow, int numRows )
        {
            actualRequest = request;
            actualCallback = callback;
            actualStartRow = startRow;
            actualNumRows = numRows;
        }

        public void onFailure( Throwable caught )
        {
            actualCallback.onFailure( caught );
        }

        public void onRowsReady( Request request, Response<RowType> response )
        {
            // Save the response data into the cache
            if ( response != null )
            {
                Iterator<RowType> rowValues = response.getRowValues();
                if ( rowValues != null )
                {
                    int curRow = request.getStartRow();
                    while ( rowValues.hasNext() )
                    {
                        rowValuesMap.put( new Integer( curRow ), rowValues.next() );
                        curRow++;
                    }
                }
            }

            // Forward the data to the actual callback
            actualCallback.onRowsReady( actualRequest, new CacheResponse( actualStartRow, actualStartRow + actualNumRows - 1 ) );
        }
    }

    /**
     * An {@link Iterator} that iterates over the cached rows of data.
     */
    private class CacheIterator implements Iterator<RowType>
    {
        /**
         * The current row that will be returned on the next call to next.
         */
        int curRow;

        /**
         * The last row to iterate, inclusively.
         */
        int lastRow;

        /**
         * Construct a new iterator.
         *
         * @param firstRow the first row of data
         * @param lastRow  the last row of data
         */
        public CacheIterator( int firstRow, int lastRow )
        {
            this.curRow = firstRow - 1;
            this.lastRow = lastRow;
        }

        public boolean hasNext()
        {
            return curRow < lastRow && rowValuesMap.containsKey( new Integer( curRow + 1 ) );
        }

        public RowType next()
        {
            if ( !hasNext() )
            {
                throw new NoSuchElementException();
            }

            curRow++;
            return rowValuesMap.get( new Integer( curRow ) );
        }

        public void remove()
        {
            throw new UnsupportedOperationException( "Remove not supported." );
        }
    }

    /**
     * A Response that comes directly from the cache.
     */
    private class CacheResponse extends Response<RowType>
    {
        /**
         * An iterator over the row values.
         */
        private CacheIterator it;

        public CacheResponse( int firstRow, int lastRow )
        {
            it = new CacheIterator( firstRow, lastRow );
        }

        @Override
        public Iterator<RowType> getRowValues()
        {
            return it;
        }
    }

    /**
     * The sort list included with the last request.
     */
    private ColumnSortList lastSortList = null;

    /**
     * The number of rows to request that come after the actual requested rows.
     */
    private int postCacheRows = 0;

    /**
     * The number of rows to request that come before the actual requested rows.
     */
    private int preCacheRows = 0;

    /**
     * A mapping of rows to the associated row values.
     */
    private HashMap<Integer, RowType> rowValuesMap = new HashMap<Integer, RowType>();

    /**
     * The underlying, non-cached table model.
     */
    private MutableTableModel<RowType> tableModel;

    /**
     * Construct a new {@link CachedTableModel}.
     *
     * @param tableModel the underlying {@link MutableTableModel}
     */
    public CachedTableModel( MutableTableModel<RowType> tableModel )
    {
        this.tableModel = tableModel;
    }

    /**
     * Clear all data from the cache.
     */
    public void clearCache()
    {
        rowValuesMap.clear();
    }

    /**
     * @return the number of rows to cache after the requested rows
     */
    public int getPostCachedRowCount()
    {
        return postCacheRows;
    }

    /**
     * @return the number of rows to cache before the requested rows
     */
    public int getPreCachedRowCount()
    {
        return preCacheRows;
    }

    @Override
    public int getRowCount()
    {
        return tableModel.getRowCount();
    }

    @Override
    public void requestRows( Request request, Callback<RowType> callback )
    {
        // Clear the cache if the sort order has changed
        ColumnSortList sortList = request.getColumnSortList();
        if ( sortList == null )
        {
            if ( lastSortList != null )
            {
                clearCache();
                lastSortList = null;
            }
        }
        else if ( !sortList.equals( lastSortList ) )
        {
            clearCache();
            lastSortList = sortList.copy();
        }

        // Check if all requested rows are in the cache
        int startRow = request.getStartRow();
        int numRows = request.getNumRows();
        int lastRow = startRow + numRows - 1;
        int totalNumRows = getRowCount();
        if ( totalNumRows != UNKNOWN_ROW_COUNT )
        {
            lastRow = Math.min( lastRow, totalNumRows - 1 );
        }
        boolean fullyCached = true;
        for ( int row = startRow; row <= lastRow; row++ )
        {
            if ( !rowValuesMap.containsKey( new Integer( row ) ) )
            {
                fullyCached = false;
                break;
            }
        }

        // Return the fully cached data
        if ( fullyCached )
        {
            callback.onRowsReady( request, new CacheResponse( startRow, lastRow ) );
            return;
        }

        // Calculate bounds including the pre and post cache
        int uncachedFirstRow = Math.max( 0, startRow - preCacheRows );
        int uncachedLastRow = lastRow + postCacheRows;

        // Check the upper bounds against the total number of rows
        if ( totalNumRows != UNKNOWN_ROW_COUNT )
        {
            lastRow = Math.min( totalNumRows - 1, lastRow );
            uncachedLastRow = Math.min( totalNumRows - 1, uncachedLastRow );
        }

        // Skip past any data already retrieved starting at the first row
        for ( int row = uncachedFirstRow; row <= lastRow; row++ )
        {
            if ( rowValuesMap.containsKey( new Integer( row ) ) )
            {
                uncachedFirstRow++;
            }
            else
            {
                // Need to request the remaining rows
                break;
            }
        }

        // Skip past any data already retrieved from the last row
        for ( int row = uncachedLastRow; row >= startRow; row-- )
        {
            if ( rowValuesMap.containsKey( new Integer( row ) ) )
            {
                uncachedLastRow--;
            }
            else
            {
                // Need to request the remaining rows
                break;
            }
        }

        // Request the remaining rows that aren't in the cache
        int uncachedNumRows = uncachedLastRow - uncachedFirstRow + 1;
        Request newRequest = new Request( uncachedFirstRow, uncachedNumRows, sortList );
        tableModel.requestRows( newRequest, new CacheCallback( request, callback, startRow, lastRow - startRow + 1 ) );
    }

    /**
     * Set the number of rows to cache after the visible data area.
     *
     * @param postCacheRows the number of rows to post cache
     */
    public void setPostCachedRowCount( int postCacheRows )
    {
        this.postCacheRows = postCacheRows;
    }

    /**
     * Set the number of rows to cache before the visible data area.
     *
     * @param preCacheRows the number of rows to pre cache
     */
    public void setPreCachedRowCount( int preCacheRows )
    {
        this.preCacheRows = preCacheRows;
    }

    @Override
    public void setRowCount( int rowCount )
    {
        tableModel.setRowCount( rowCount );
        super.setRowCount( rowCount );
    }

    @Override
    protected boolean onRowInserted( int beforeRow )
    {
        clearCache();
        return tableModel.onRowInserted( beforeRow );
    }

    @Override
    protected boolean onRowRemoved( int row )
    {
        clearCache();
        return tableModel.onRowRemoved( row );
    }

    @Override
    protected boolean onSetRowValue( int row, RowType rowValue )
    {
        rowValuesMap.put( new Integer( row ), rowValue );
        return tableModel.onSetRowValue( row, rowValue );
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/client/CachedTableModel.java

Diff revisions: vs.
Revision Author Commited Message
939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

475 Diff Diff GeorgeS picture GeorgeS Sat 03 Sep, 2011 13:54:51 +0000
282 GeorgeS picture GeorgeS Fri 17 Jun, 2011 13:54:39 +0000