1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19 package org.apache.chemistry.opencmis.client.runtime.util;
20
21 import java.util.List;
22
23 import org.apache.chemistry.opencmis.client.runtime.util.AbstractPageFetcher.Page;
24
25 /**
26 * Iterator for iterating over a page of items in a CMIS Collection.
27 *
28 * @param <T>
29 */
30 public class CollectionPageIterator<T> extends AbstractIterator<T> {
31
32 /**
33 * Construct
34 *
35 * @param skipCount
36 * @param pageFetcher
37 */
38 public CollectionPageIterator(long skipCount, AbstractPageFetcher<T> pageFetcher) {
39 super(skipCount, pageFetcher);
40 }
41
42 /*
43 * (non-Javadoc)
44 *
45 * @see java.util.Iterator#hasNext()
46 */
47 public boolean hasNext() {
48 Page<T> page = getCurrentPage();
49 if (page == null) {
50 return false;
51 }
52
53 List<T> items = page.getItems();
54 if (items == null || getSkipOffset() >= items.size()) {
55 return false;
56 }
57
58 return true;
59 }
60
61 /*
62 * (non-Javadoc)
63 *
64 * @see java.util.Iterator#next()
65 */
66 public T next() {
67 Page<T> page = getCurrentPage();
68 if (page == null) {
69 return null;
70 }
71
72 List<T> items = page.getItems();
73 if (items == null || items.isEmpty() || getSkipOffset() == items.size()) {
74 return null;
75 }
76
77 return items.get(incrementSkipOffset());
78 }
79 }