tmf : add waitForInitialization() to ITmfAnalysisModuleWithStateSystem
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / statesystem / TmfStateSystemAnalysisModule.java
CommitLineData
8a6ff07f 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2015 École Polytechnique de Montréal
8a6ff07f
GB
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
baa96b1d 11 * Bernd Hufmann - Integrated history builder functionality
8a6ff07f
GB
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.tmf.core.statesystem;
8a6ff07f 15
5db5a3a4
AM
16import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
17
8a6ff07f 18import java.io.File;
baa96b1d 19import java.io.IOException;
5237a931 20import java.util.Collections;
ef06db91
GB
21import java.util.HashMap;
22import java.util.Map;
09ec275e 23import java.util.concurrent.CountDownLatch;
8a6ff07f 24
ef06db91 25import org.apache.commons.io.FileUtils;
8a6ff07f 26import org.eclipse.core.runtime.IProgressMonitor;
e1c415b3 27import org.eclipse.core.runtime.IStatus;
baa96b1d 28import org.eclipse.core.runtime.NullProgressMonitor;
ef06db91 29import org.eclipse.jdt.annotation.NonNull;
baa96b1d 30import org.eclipse.jdt.annotation.Nullable;
ef06db91 31import org.eclipse.tracecompass.common.core.NonNullUtils;
2bdf0193
AM
32import org.eclipse.tracecompass.internal.tmf.core.statesystem.backends.partial.PartialHistoryBackend;
33import org.eclipse.tracecompass.internal.tmf.core.statesystem.backends.partial.PartialStateSystem;
e894a508
AM
34import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
35import org.eclipse.tracecompass.statesystem.core.ITmfStateSystemBuilder;
36import org.eclipse.tracecompass.statesystem.core.StateSystemFactory;
37import org.eclipse.tracecompass.statesystem.core.backend.IStateHistoryBackend;
0306a843 38import org.eclipse.tracecompass.statesystem.core.backend.StateHistoryBackendFactory;
2bdf0193
AM
39import org.eclipse.tracecompass.tmf.core.analysis.TmfAbstractAnalysisModule;
40import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
41import org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException;
ef06db91 42import org.eclipse.tracecompass.tmf.core.project.model.ITmfPropertiesProvider;
2bdf0193
AM
43import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest;
44import org.eclipse.tracecompass.tmf.core.request.TmfEventRequest;
de83d1ab
MAL
45import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
46import org.eclipse.tracecompass.tmf.core.signal.TmfTraceRangeUpdatedSignal;
2bdf0193
AM
47import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
48import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
de83d1ab 49import org.eclipse.tracecompass.tmf.core.trace.ITmfTraceCompleteness;
2bdf0193 50import org.eclipse.tracecompass.tmf.core.trace.TmfTraceManager;
b8585c7c 51import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils;
5c5fa260 52import org.eclipse.tracecompass.tmf.core.trace.experiment.TmfExperiment;
8a6ff07f
GB
53
54/**
55 * Abstract analysis module to generate a state system. It is a base class that
56 * can be used as a shortcut by analysis who just need to build a single state
57 * system with a state provider.
58 *
59 * Analysis implementing this class should only need to provide a state system
60 * and optionally a backend (default to NULL) and, if required, a filename
61 * (defaults to the analysis'ID)
62 *
63 * @author Geneviève Bastien
8a6ff07f
GB
64 */
65public abstract class TmfStateSystemAnalysisModule extends TmfAbstractAnalysisModule
ef06db91 66 implements ITmfAnalysisModuleWithStateSystems, ITmfPropertiesProvider {
8a6ff07f 67
8a6ff07f
GB
68 private static final String EXTENSION = ".ht"; //$NON-NLS-1$
69
09ec275e 70 private final CountDownLatch fInitialized = new CountDownLatch(1);
de83d1ab 71 private final Object fRequestSyncObj = new Object();
09ec275e 72
baa96b1d
BH
73 @Nullable private ITmfStateSystemBuilder fStateSystem;
74 @Nullable private ITmfStateProvider fStateProvider;
75 @Nullable private IStateHistoryBackend fHtBackend;
76 @Nullable private ITmfEventRequest fRequest;
de83d1ab
MAL
77 @Nullable private TmfTimeRange fTimeRange = null;
78
79 private int fNbRead = 0;
5237a931 80
8a6ff07f
GB
81 /**
82 * State system backend types
83 *
84 * @author Geneviève Bastien
85 */
86 protected enum StateSystemBackendType {
87 /** Full history in file */
88 FULL,
89 /** In memory state system */
90 INMEM,
91 /** Null history */
92 NULL,
93 /** State system backed with partial history */
94 PARTIAL
95 }
96
72221aa4
AM
97 /**
98 * Retrieve a state system belonging to trace, by passing the ID of the
99 * relevant analysis module.
100 *
101 * This will start the execution of the analysis module, and start the
102 * construction of the state system, if needed.
103 *
104 * @param trace
105 * The trace for which you want the state system
106 * @param moduleId
107 * The ID of the state system analysis module
108 * @return The state system, or null if there was no match
72221aa4
AM
109 */
110 public static @Nullable ITmfStateSystem getStateSystem(ITmfTrace trace, String moduleId) {
111 TmfStateSystemAnalysisModule module =
b8585c7c 112 TmfTraceUtils.getAnalysisModuleOfClass(trace, TmfStateSystemAnalysisModule.class, moduleId);
72221aa4 113 if (module != null) {
e8e09aa3
GB
114 ITmfStateSystem ss = module.getStateSystem();
115 if (ss != null) {
116 return ss;
117 }
e1c415b3
BH
118 IStatus status = module.schedule();
119 if (status.isOK()) {
120 module.waitForInitialization();
e1c415b3
BH
121 return module.getStateSystem();
122 }
72221aa4
AM
123 }
124 return null;
125 }
126
8a6ff07f
GB
127 /**
128 * Get the state provider for this analysis module
129 *
130 * @return the state provider
131 */
8a6ff07f
GB
132 protected abstract ITmfStateProvider createStateProvider();
133
134 /**
135 * Get the state system backend type used by this module
136 *
137 * @return The {@link StateSystemBackendType}
138 */
a3b864c0
AM
139 protected StateSystemBackendType getBackendType() {
140 /* Using full history by default, sub-classes can override */
141 return StateSystemBackendType.FULL;
142 }
8a6ff07f
GB
143
144 /**
145 * Get the supplementary file name where to save this state system. The
146 * default is the ID of the analysis followed by the extension.
147 *
148 * @return The supplementary file name
149 */
150 protected String getSsFileName() {
151 return getId() + EXTENSION;
152 }
153
154 /**
baa96b1d
BH
155 * Get the state system generated by this analysis, or null if it is not yet
156 * created.
8a6ff07f
GB
157 *
158 * @return The state system
159 */
baa96b1d 160 @Nullable
8a6ff07f
GB
161 public ITmfStateSystem getStateSystem() {
162 return fStateSystem;
163 }
164
6537ccdd 165 @Override
09ec275e
AM
166 public void waitForInitialization() {
167 try {
168 fInitialized.await();
169 } catch (InterruptedException e) {}
170 }
171
baa96b1d
BH
172 // ------------------------------------------------------------------------
173 // TmfAbstractAnalysisModule
174 // ------------------------------------------------------------------------
8a6ff07f 175
ef06db91
GB
176 private @Nullable File getSsFile() {
177 ITmfTrace trace = getTrace();
178 if (trace == null) {
179 return null;
180 }
181 String directory = TmfTraceManager.getSupplementaryFileDir(trace);
182 File htFile = new File(directory + getSsFileName());
183 return htFile;
184 }
185
baa96b1d
BH
186 @Override
187 protected boolean executeAnalysis(@Nullable final IProgressMonitor monitor) {
188 IProgressMonitor mon = (monitor == null ? new NullProgressMonitor() : monitor);
189 final ITmfStateProvider provider = createStateProvider();
8a6ff07f 190
84a9548a 191 String id = getId();
84a9548a 192
8a6ff07f
GB
193 /* FIXME: State systems should make use of the monitor, to be cancelled */
194 try {
195 /* Get the state system according to backend */
196 StateSystemBackendType backend = getBackendType();
ef06db91 197
e1c415b3
BH
198
199 ITmfTrace trace = getTrace();
200 if (trace == null) {
201 // Analysis was cancelled in the meantime
202 fInitialized.countDown();
203 return false;
204 }
8a6ff07f 205 switch (backend) {
ef06db91
GB
206 case FULL: {
207 File htFile = getSsFile();
208 if (htFile == null) {
209 return false;
210 }
84a9548a 211 createFullHistory(id, provider, htFile);
ef06db91 212 }
8a6ff07f 213 break;
ef06db91
GB
214 case PARTIAL: {
215 File htFile = getSsFile();
216 if (htFile == null) {
217 return false;
218 }
84a9548a 219 createPartialHistory(id, provider, htFile);
ef06db91 220 }
8a6ff07f
GB
221 break;
222 case INMEM:
84a9548a 223 createInMemoryHistory(id, provider);
8a6ff07f
GB
224 break;
225 case NULL:
84a9548a 226 createNullHistory(id, provider);
8a6ff07f
GB
227 break;
228 default:
229 break;
230 }
231 } catch (TmfTraceException e) {
e1c415b3 232 fInitialized.countDown();
8a6ff07f
GB
233 return false;
234 }
baa96b1d 235 return !mon.isCanceled();
8a6ff07f
GB
236 }
237
238 @Override
239 protected void canceling() {
baa96b1d
BH
240 ITmfEventRequest req = fRequest;
241 if ((req != null) && (!req.isCompleted())) {
242 req.cancel();
243 }
244 }
245
a1529f38
AM
246 @Override
247 public void dispose() {
130e6f4e 248 super.dispose();
a1529f38
AM
249 if (fStateSystem != null) {
250 fStateSystem.dispose();
251 }
a1529f38
AM
252 }
253
baa96b1d
BH
254 // ------------------------------------------------------------------------
255 // History creation methods
256 // ------------------------------------------------------------------------
257
258 /*
259 * Load the history file matching the target trace. If the file already
260 * exists, it will be opened directly. If not, it will be created from
261 * scratch.
262 */
84a9548a 263 private void createFullHistory(String id, ITmfStateProvider provider, File htFile) throws TmfTraceException {
baa96b1d
BH
264
265 /* If the target file already exists, do not rebuild it uselessly */
266 // TODO for now we assume it's complete. Might be a good idea to check
267 // at least if its range matches the trace's range.
268
269 if (htFile.exists()) {
270 /* Load an existing history */
271 final int version = provider.getVersion();
272 try {
0306a843
AM
273 IStateHistoryBackend backend = StateHistoryBackendFactory.createHistoryTreeBackendExistingFile(
274 id, htFile, version);
84a9548a 275 fHtBackend = backend;
b2f62cb5 276 fStateSystem = StateSystemFactory.newStateSystem(backend, false);
09ec275e 277 fInitialized.countDown();
baa96b1d
BH
278 return;
279 } catch (IOException e) {
280 /*
281 * There was an error opening the existing file. Perhaps it was
282 * corrupted, perhaps it's an old version? We'll just
283 * fall-through and try to build a new one from scratch instead.
284 */
285 }
286 }
287
288 /* Size of the blocking queue to use when building a state history */
4cdea8fc 289 final int QUEUE_SIZE = 10000;
baa96b1d
BH
290
291 try {
0306a843 292 IStateHistoryBackend backend = StateHistoryBackendFactory.createHistoryTreeBackendNewFile(
f6d24a71 293 id, htFile, provider.getVersion(), provider.getStartTime(), QUEUE_SIZE);
84a9548a 294 fHtBackend = backend;
b2f62cb5 295 fStateSystem = StateSystemFactory.newStateSystem(backend);
baa96b1d
BH
296 provider.assignTargetStateSystem(fStateSystem);
297 build(provider);
298 } catch (IOException e) {
299 /*
300 * If it fails here however, it means there was a problem writing to
301 * the disk, so throw a real exception this time.
302 */
303 throw new TmfTraceException(e.toString(), e);
304 }
305 }
306
307 /*
308 * Create a new state system backed with a partial history. A partial
309 * history is similar to a "full" one (which you get with
310 * {@link #newFullHistory}), except that the file on disk is much smaller,
311 * but queries are a bit slower.
312 *
313 * Also note that single-queries are implemented using a full-query
314 * underneath, (which are much slower), so this might not be a good fit for
315 * a use case where you have to do lots of single queries.
316 */
84a9548a 317 private void createPartialHistory(String id, ITmfStateProvider provider, File htPartialFile)
baa96b1d
BH
318 throws TmfTraceException {
319 /*
320 * The order of initializations is very tricky (but very important!)
321 * here. We need to follow this pattern:
322 * (1 is done before the call to this method)
323 *
324 * 1- Instantiate realStateProvider
325 * 2- Instantiate realBackend
326 * 3- Instantiate partialBackend, with prereqs:
327 * 3a- Instantiate partialProvider, via realProvider.getNew()
328 * 3b- Instantiate nullBackend (partialSS's backend)
329 * 3c- Instantiate partialSS
330 * 3d- partialProvider.assignSS(partialSS)
331 * 4- Instantiate realSS
332 * 5- partialSS.assignUpstream(realSS)
333 * 6- realProvider.assignSS(realSS)
334 * 7- Call HistoryBuilder(realProvider, realSS, partialBackend) to build the thing.
335 */
336
337 /* Size of the blocking queue to use when building a state history */
338 final int QUEUE_SIZE = 10000;
339
340 final long granularity = 50000;
341
342 /* 2 */
343 IStateHistoryBackend realBackend = null;
344 try {
0306a843 345 realBackend = StateHistoryBackendFactory.createHistoryTreeBackendNewFile(
f6d24a71 346 id, htPartialFile, provider.getVersion(), provider.getStartTime(), QUEUE_SIZE);
baa96b1d
BH
347 } catch (IOException e) {
348 throw new TmfTraceException(e.toString(), e);
349 }
350
351 /* 3a */
352 ITmfStateProvider partialProvider = provider.getNewInstance();
353
354 /* 3b-3c, constructor automatically uses a NullBackend */
355 PartialStateSystem pss = new PartialStateSystem();
356
357 /* 3d */
358 partialProvider.assignTargetStateSystem(pss);
359
360 /* 3 */
651cbda0 361 IStateHistoryBackend partialBackend = new PartialHistoryBackend(id + ".partial", partialProvider, pss, realBackend, granularity); //$NON-NLS-1$
baa96b1d
BH
362
363 /* 4 */
bcec0116 364 @SuppressWarnings("restriction")
e894a508 365 org.eclipse.tracecompass.internal.statesystem.core.StateSystem realSS =
b2f62cb5 366 (org.eclipse.tracecompass.internal.statesystem.core.StateSystem) StateSystemFactory.newStateSystem(partialBackend);
baa96b1d
BH
367
368 /* 5 */
369 pss.assignUpstream(realSS);
370
371 /* 6 */
372 provider.assignTargetStateSystem(realSS);
373
374 /* 7 */
375 fHtBackend = partialBackend;
376 fStateSystem = realSS;
377
378 build(provider);
379 }
380
381 /*
382 * Create a new state system using a null history back-end. This means that
383 * no history intervals will be saved anywhere, and as such only
384 * {@link ITmfStateSystem#queryOngoingState} will be available.
385 */
84a9548a 386 private void createNullHistory(String id, ITmfStateProvider provider) {
0306a843 387 IStateHistoryBackend backend = StateHistoryBackendFactory.createNullBackend(id);
84a9548a 388 fHtBackend = backend;
b2f62cb5 389 fStateSystem = StateSystemFactory.newStateSystem(backend);
baa96b1d
BH
390 provider.assignTargetStateSystem(fStateSystem);
391 build(provider);
392 }
393
394 /*
395 * Create a new state system using in-memory interval storage. This should
396 * only be done for very small state system, and will be naturally limited
397 * to 2^31 intervals.
398 */
84a9548a 399 private void createInMemoryHistory(String id, ITmfStateProvider provider) {
0306a843 400 IStateHistoryBackend backend = StateHistoryBackendFactory.createInMemoryBackend(id, provider.getStartTime());
84a9548a 401 fHtBackend = backend;
b2f62cb5 402 fStateSystem = StateSystemFactory.newStateSystem(backend);
baa96b1d
BH
403 provider.assignTargetStateSystem(fStateSystem);
404 build(provider);
405 }
406
a1529f38 407 private void disposeProvider(boolean deleteFiles) {
baa96b1d
BH
408 ITmfStateProvider provider = fStateProvider;
409 if (provider != null) {
410 provider.dispose();
411 }
412 if (deleteFiles && (fHtBackend != null)) {
413 fHtBackend.removeFiles();
414 }
415 }
416
417 private void build(ITmfStateProvider provider) {
418 if ((fStateSystem == null) || (fHtBackend == null)) {
419 throw new IllegalArgumentException();
420 }
421
422 ITmfEventRequest request = fRequest;
423 if ((request != null) && (!request.isCompleted())) {
424 request.cancel();
425 }
426
de83d1ab
MAL
427 fTimeRange = TmfTimeRange.ETERNITY;
428 final ITmfTrace trace = provider.getTrace();
d0c7e4ba 429 if (!isCompleteTrace(trace)) {
6cfc180e 430 fTimeRange = trace.getTimeRange();
de83d1ab 431 }
baa96b1d 432
baa96b1d 433 fStateProvider = provider;
de83d1ab
MAL
434 synchronized (fRequestSyncObj) {
435 startRequest();
436 }
baa96b1d 437
09ec275e
AM
438 /*
439 * The state system object is now created, we can consider this module
440 * "initialized" (components can retrieve it and start doing queries).
441 */
442 fInitialized.countDown();
443
444 /*
445 * Block the executeAnalysis() construction is complete (so that the
446 * progress monitor displays that it is running).
447 */
baa96b1d 448 try {
de83d1ab
MAL
449 if (fRequest != null) {
450 fRequest.waitForCompletion();
451 }
baa96b1d
BH
452 } catch (InterruptedException e) {
453 e.printStackTrace();
454 }
455 }
456
457 private class StateSystemEventRequest extends TmfEventRequest {
458 private final ITmfStateProvider sci;
459 private final ITmfTrace trace;
460
de83d1ab 461 public StateSystemEventRequest(ITmfStateProvider sp, TmfTimeRange timeRange, int index) {
e2bcc8a5 462 super(ITmfEvent.class,
de83d1ab
MAL
463 timeRange,
464 index,
baa96b1d
BH
465 ITmfEventRequest.ALL_DATA,
466 ITmfEventRequest.ExecutionType.BACKGROUND);
467 this.sci = sp;
468
469 // sci.getTrace() will eventually return a @NonNull
5db5a3a4 470 trace = checkNotNull(sci.getTrace());
baa96b1d 471
baa96b1d
BH
472 }
473
474 @Override
41f3b36b 475 public void handleData(final ITmfEvent event) {
baa96b1d 476 super.handleData(event);
41f3b36b 477 if (event.getTrace() == trace) {
baa96b1d 478 sci.processEvent(event);
2d208fb7
GB
479 } else if (trace instanceof TmfExperiment) {
480 /*
481 * If the request is for an experiment, check if the event is
482 * from one of the child trace
483 */
484 for (ITmfTrace childTrace : ((TmfExperiment) trace).getTraces()) {
485 if (childTrace == event.getTrace()) {
486 sci.processEvent(event);
487 }
488 }
baa96b1d
BH
489 }
490 }
491
492 @Override
493 public void handleSuccess() {
494 super.handleSuccess();
de83d1ab
MAL
495 if (isCompleteTrace(trace)) {
496 disposeProvider(false);
497 } else {
498 fNbRead += getNbRead();
499 synchronized (fRequestSyncObj) {
500 final TmfTimeRange timeRange = fTimeRange;
501 if (timeRange != null) {
502 if (getRange().getEndTime().getValue() < timeRange.getEndTime().getValue()) {
503 startRequest();
504 }
505 }
506 }
507 }
baa96b1d
BH
508 }
509
510 @Override
511 public void handleCancel() {
512 super.handleCancel();
de83d1ab
MAL
513 if (isCompleteTrace(trace)) {
514 disposeProvider(true);
515 }
baa96b1d
BH
516 }
517
518 @Override
519 public void handleFailure() {
520 super.handleFailure();
a1529f38 521 disposeProvider(true);
baa96b1d 522 }
8a6ff07f
GB
523 }
524
5237a931
AM
525 // ------------------------------------------------------------------------
526 // ITmfAnalysisModuleWithStateSystems
527 // ------------------------------------------------------------------------
528
529 @Override
baa96b1d
BH
530 @Nullable
531 public ITmfStateSystem getStateSystem(String id) {
5237a931
AM
532 if (id.equals(getId())) {
533 return fStateSystem;
534 }
535 return null;
536 }
537
8a6ff07f 538 @Override
11b771eb 539 public @NonNull Iterable<@NonNull ITmfStateSystem> getStateSystems() {
aa353506
AM
540 ITmfStateSystemBuilder stateSystem = fStateSystem;
541 if (stateSystem == null) {
542 return Collections.EMPTY_SET;
543 }
544 return Collections.singleton(stateSystem);
8a6ff07f 545 }
de83d1ab
MAL
546
547 /**
548 * Signal handler for the TmfTraceRangeUpdatedSignal signal
549 *
550 * @param signal The incoming signal
551 */
552 @TmfSignalHandler
553 public void traceRangeUpdated(final TmfTraceRangeUpdatedSignal signal) {
554 fTimeRange = signal.getRange();
555 ITmfStateProvider stateProvider = fStateProvider;
556 synchronized (fRequestSyncObj) {
557 if (signal.getTrace() == getTrace() && stateProvider != null && stateProvider.getAssignedStateSystem() != null) {
558 ITmfEventRequest request = fRequest;
559 if ((request == null) || request.isCompleted()) {
560 startRequest();
561 }
562 }
563 }
564 }
565
566 private void startRequest() {
567 ITmfStateProvider stateProvider = fStateProvider;
568 TmfTimeRange timeRange = fTimeRange;
569 if (stateProvider == null || timeRange == null) {
570 return;
571 }
572 ITmfEventRequest request = new StateSystemEventRequest(stateProvider, timeRange, fNbRead);
573 stateProvider.getTrace().sendRequest(request);
574 fRequest = request;
575 }
576
577 private static boolean isCompleteTrace(ITmfTrace trace) {
578 return !(trace instanceof ITmfTraceCompleteness) || ((ITmfTraceCompleteness) trace).isComplete();
579 }
ef06db91
GB
580
581 // ------------------------------------------------------------------------
582 // ITmfPropertiesProvider
583 // ------------------------------------------------------------------------
584
585 /**
586 * @since 2.0
587 */
588 @Override
589 public @NonNull Map<@NonNull String, @NonNull String> getProperties() {
590 Map<@NonNull String, @NonNull String> properties = new HashMap<>();
591
592 StateSystemBackendType backend = getBackendType();
593 properties.put(NonNullUtils.checkNotNull(Messages.TmfStateSystemAnalysisModule_PropertiesBackend), NonNullUtils.checkNotNull(backend.name()));
594 switch (backend) {
595 case FULL:
596 case PARTIAL:
597 File htFile = getSsFile();
598 if (htFile != null) {
599 if (htFile.exists()) {
600 properties.put(NonNullUtils.checkNotNull(Messages.TmfStateSystemAnalysisModule_PropertiesFileSize), FileUtils.byteCountToDisplaySize(htFile.length()));
601 } else {
602 properties.put(NonNullUtils.checkNotNull(Messages.TmfStateSystemAnalysisModule_PropertiesFileSize), NonNullUtils.checkNotNull(Messages.TmfStateSystemAnalysisModule_PropertiesAnalysisNotExecuted));
603 }
604 }
605 break;
606 case INMEM:
607 case NULL:
608 default:
609 break;
610
611 }
612 return properties;
613 }
8a6ff07f 614}
This page took 0.103652 seconds and 5 git commands to generate.