summaryrefslogtreecommitdiff
path: root/src/core/src/data/io/stub/StubDataReader.java
blob: ed912672de2740fc7260aad808586b92c84abbab (plain)
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
/*
 * SSSync, a Simple and Stupid Synchronizer for data with multi-valued attributes
 * Copyright (C) 2014  Ludovic Pouzenc <ludovic@pouzenc.fr>
 *  
 * This file is part of SSSync.
 *
 *  SSSync is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  SSSync is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with SSSync.  If not, see <http://www.gnu.org/licenses/>
 */

package data.io.stub;

import java.util.Iterator;
import java.util.NoSuchElementException;

import data.MVDataEntry;
import data.io.AbstractMVDataReader;

/**
 * Stub reader implementation for automated tests.
 *  
 * @author lpouzenc
 */
public class StubDataReader extends AbstractMVDataReader {

	private final MVDataEntry fakeEntries[];
	private int cursorRead;
	
	public StubDataReader(String dataSourceName, MVDataEntry[] fakeEntries) {
		this.dataSourceName = dataSourceName;
		this.fakeEntries = fakeEntries.clone();
	}

	@Override
	public Iterator<MVDataEntry> iterator() {
		this.cursorRead = 0;
		return this;
	}

	@Override
	public boolean hasNext() {
		return cursorRead < fakeEntries.length;
	}

	@Override
	public MVDataEntry next() {
		if ( ! hasNext() ) {
			throw new NoSuchElementException();
		}
		return fakeEntries[cursorRead++];
	}

}