segstore.core: Synchronize isEmpty
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.core / src / org / eclipse / tracecompass / internal / analysis / timing / core / store / ArrayListStore.java
CommitLineData
3dde9149
MK
1/*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10package org.eclipse.tracecompass.internal.analysis.timing.core.store;
11
12import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
13
14import java.util.ArrayList;
15import java.util.Collection;
16import java.util.Collections;
17import java.util.Comparator;
18import java.util.Iterator;
19import java.util.List;
20import java.util.concurrent.locks.ReadWriteLock;
21import java.util.concurrent.locks.ReentrantReadWriteLock;
22import java.util.stream.Collectors;
23
24import org.eclipse.jdt.annotation.NonNull;
25import org.eclipse.jdt.annotation.Nullable;
26import org.eclipse.tracecompass.segmentstore.core.ISegment;
27import org.eclipse.tracecompass.segmentstore.core.ISegmentStore;
28
29import com.google.common.collect.ImmutableList;
30
31/**
32 * Implementation of an {@link ISegmentStore} using one in-memory
33 * {@link ArrayList}. This relatively simple implementation holds everything in
34 * memory, and as such cannot contain too much data.
35 *
36 * The ArrayListStore itself is {@link Iterable}, and its iteration order will
37 * be by ascending order of start times. For segments with identical start
38 * times, the secondary comparator will be the end time. If even those are
39 * equal, it will defer to the segments' natural ordering (
40 * {@link ISegment#compareTo}).
41 *
42 * The store's tree maps will not accept duplicate key-value pairs, which means
43 * that if you want several segments with the same start and end times, make
44 * sure their compareTo() differentiates them.
45 *
46 * Removal operations are not supported.
47 *
48 * @param <E>
49 * The type of segment held in this store
50 *
51 * @author Matthew Khouzam
52 */
53public class ArrayListStore<@NonNull E extends ISegment> implements ISegmentStore<E> {
54
55 private final Comparator<E> COMPARATOR = (o1, o2) -> {
56 int ret = Long.compare(o1.getStart(), o2.getStart());
57 if (ret == 0) {
58 return Long.compare(o1.getEnd(), o2.getEnd());
59 }
60 return ret;
61 };
62
63 private final ReadWriteLock fLock = new ReentrantReadWriteLock(false);
64
aa9082f9 65 private final List<E> fStore;
3dde9149
MK
66
67 private @Nullable transient Iterable<E> fLastSnapshot = null;
68
69 /**
70 * Constructor
71 */
72 public ArrayListStore() {
aa9082f9 73 fStore = new ArrayList<>();
3dde9149
MK
74 }
75
aa9082f9
MK
76 /**
77 * Constructor
78 *
79 * @param array
80 * an array of elements to wrap in the segment store
81 *
82 */
83 public ArrayListStore(Object[] array) {
84 fStore = new ArrayList<>();
85 for (int i = 0; i < array.length; i++) {
86 if (array[i] instanceof ISegment) {
87 fStore.add((E) array[i]);
88 }
89 }
90 fStore.sort(COMPARATOR);
91 }
3dde9149
MK
92 // ------------------------------------------------------------------------
93 // Methods from Collection
94 // ------------------------------------------------------------------------
95
96 @Override
97 public Iterator<E> iterator() {
98 fLock.readLock().lock();
99 try {
100 Iterable<E> lastSnapshot = fLastSnapshot;
101 if (lastSnapshot == null) {
102 lastSnapshot = ImmutableList.copyOf(fStore);
103 fLastSnapshot = lastSnapshot;
104 }
105 return checkNotNull(lastSnapshot.iterator());
106 } finally {
107 fLock.readLock().unlock();
108 }
109 }
110
111 @Override
112 public boolean add(@Nullable E val) {
113 if (val == null) {
114 throw new IllegalArgumentException("Cannot add null value"); //$NON-NLS-1$
115 }
116
117 fLock.writeLock().lock();
118 try {
119 fStore.add(val);
120 // Go backwards to "sift up" like a priority queue
121 for (int i = size() - 1; i > 0 && COMPARATOR.compare(val, fStore.get(i - 1)) < 0; i--) {
122 Collections.swap(fStore, i, i - 1);
123 }
124 return true;
125 } finally {
126 fLock.writeLock().unlock();
127 }
128 }
129
130 @Override
131 public int size() {
132 return fStore.size();
133 }
134
135 @Override
136 public boolean isEmpty() {
f601ac35
MK
137 fLock.readLock().lock();
138 try {
139 return fStore.isEmpty();
140 } finally {
141 fLock.readLock().unlock();
142 }
3dde9149
MK
143 }
144
145 @Override
146 public boolean contains(@Nullable Object o) {
147 fLock.readLock().lock();
148 try {
149 return fStore.contains(o);
150 } finally {
151 fLock.readLock().unlock();
152 }
153 }
154
155 @Override
156 public boolean containsAll(@Nullable Collection<?> c) {
157 fLock.readLock().lock();
158 try {
159 return fStore.containsAll(c);
160 } finally {
161 fLock.readLock().unlock();
162 }
163 }
164
165 @Override
166 public Object[] toArray() {
167 fLock.readLock().lock();
168 try {
169 return fStore.toArray();
170 } finally {
171 fLock.readLock().unlock();
172 }
173 }
174
175 @Override
176 public <T> T[] toArray(T[] a) {
177 fLock.readLock().lock();
178 try {
179 return fStore.toArray(a);
180 } finally {
181 fLock.readLock().unlock();
182 }
183 }
184
185 @Override
186 public boolean remove(@Nullable Object o) {
187 throw new UnsupportedOperationException();
188 }
189
190 @Override
191 public boolean addAll(@Nullable Collection<? extends E> c) {
192 if (c == null) {
193 throw new IllegalArgumentException();
194 }
195
196 fLock.writeLock().lock();
197 try {
198 boolean changed = false;
199 for (E elem : c) {
200 if (this.add(elem)) {
201 changed = true;
202 }
203 }
204 return changed;
205 } finally {
206 fLock.writeLock().unlock();
207 }
208 }
209
210 @Override
211 public boolean removeAll(@Nullable Collection<?> c) {
212 throw new UnsupportedOperationException();
213 }
214
215 @Override
216 public boolean retainAll(@Nullable Collection<?> c) {
217 throw new UnsupportedOperationException();
218 }
219
220 @Override
221 public void clear() {
222 fLock.writeLock().lock();
223 try {
224 fStore.clear();
225 } finally {
226 fLock.writeLock().unlock();
227 }
228 }
229
230 // ------------------------------------------------------------------------
231 // Methods added by ISegmentStore
232 // ------------------------------------------------------------------------
233
234 @Override
235 public Iterable<E> getIntersectingElements(long position) {
236 /*
237 * The intervals intersecting 't' are those whose 1) start time is
238 * *lower* than 't' AND 2) end time is *higher* than 't'.
239 */
240 fLock.readLock().lock();
241 try {
242 return fStore.stream().filter(element -> position >= element.getStart() && position <= element.getEnd()).collect(Collectors.toList());
243 } finally {
244 fLock.readLock().unlock();
245 }
246 }
247
248 @Override
249 public Iterable<E> getIntersectingElements(long start, long end) {
250 fLock.readLock().lock();
251 try {
252 return fStore.stream().filter(element -> !(start > element.getEnd() || end < element.getStart())).collect(Collectors.toList());
253 } finally {
254 fLock.readLock().unlock();
255 }
256 }
257
258 @Override
259 public void dispose() {
260 fLock.writeLock().lock();
261 try {
262 fStore.clear();
263 } finally {
264 fLock.writeLock().unlock();
265 }
266 }
267}
This page took 0.035065 seconds and 5 git commands to generate.