Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3b823c518e91b67acb5537775066b262e93bd95d (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2004, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.tests.viewers.interactive;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.viewers.IContentProvider;
import org.eclipse.jface.viewers.ILazyContentProvider;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.ui.progress.UIJob;

/**
 * The LazyVirtualTableView is the VirtualTableView with lazy content.
 */
public class LazyDeferredVirtualTableView extends VirtualTableView {

	/**
	 * Create a new instance of the receiver.
	 */
	public LazyDeferredVirtualTableView() {
		super();
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.jface.tests.viewers.interactive.VirtualTableView#getContentProvider()
	 */
	protected IContentProvider<Object> getContentProvider() {
		return new ILazyContentProvider<Object>() {

			int rangeStart = -1;

			int rangeEnd = -1;

			UIJob updateJob = new UIJob("Update") {
				public IStatus runInUIThread(IProgressMonitor monitor) {
					if(viewer.getControl().isDisposed())
						return Status.CANCEL_STATUS;
					int rangeLength = rangeEnd - rangeStart;
					for (int i = 0; i <= rangeLength; i++) {
						int index = i + rangeStart;
						viewer.replace("Element " + String.valueOf(index),
								index);
					}

					return Status.OK_STATUS;
				}
			};

			/*
			 * (non-Javadoc)
			 *
			 * @see org.eclipse.jface.viewers.ILazyContentProvider#updateElements(int,
			 *      int)
			 */
			public void updateElement(int index) {

				int begin = Math.max(0, index - 50);
				int end = Math.min(begin + 50, 9999);

				// Initial case
				if (rangeStart == -1 || rangeEnd == -1) {
					rangeStart = begin;
					rangeEnd = end;
					updateJob.schedule(1000);
					return;
				}

				// Are we in the range already being worked on?
				if (index >= rangeStart && index <= rangeEnd)
					return;

				// Are we outside of the old range?
				if (begin > rangeEnd || end < rangeStart) {
					viewer.getTable().clear(rangeStart, rangeEnd);
					rangeStart = begin;
					rangeEnd = end;
					updateJob.schedule(1000);
					return;
				}

				// Shift if it is before
				if (begin < rangeStart) {
					rangeStart = begin;
					int oldEnd = rangeEnd;
					rangeEnd = end;
					viewer.getTable().clear(end + 1, oldEnd);

					updateJob.schedule(1000);
					return;
				}

				// Shift if it is after
				if (end > rangeEnd) {
					rangeEnd = end;
					int oldStart = rangeStart;
					rangeStart = begin;
					viewer.getTable().clear(oldStart, rangeStart - 1);
					updateJob.schedule(1000);
					return;
				}
			}

			/*
			 * (non-Javadoc)
			 *
			 * @see org.eclipse.jface.viewers.IContentProvider#dispose()
			 */
			public void dispose() {
				// Do Nothing
			}

			/*
			 * (non-Javadoc)
			 *
			 * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer,
			 *      java.lang.Object, java.lang.Object)
			 */
			public void inputChanged(Viewer<Object> viewer, Object oldInput,
					Object newInput) {
				// Do nothing.
			}
		};
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.tests.viewers.interactive.VirtualTableView#resetInput()
	 */
	protected void resetInput() {
		viewer.setItemCount(itemCount);
		super.resetInput();
	}
}

Back to the top