f46183858ef461baf7bd200d9153d15fa3cc1b11
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / TmfTrace.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2014 Ericsson, École Polytechnique de Montréal
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 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Updated as per TMF Trace Model 1.0
12 * Patrick Tasse - Updated for removal of context clone
13 * Geneviève Bastien - Added timestamp transforms, its saving to file and
14 * timestamp creation functions
15 *******************************************************************************/
16
17 package org.eclipse.tracecompass.tmf.core.trace;
18
19 import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
20
21 import java.io.File;
22 import java.util.Collection;
23 import java.util.Collections;
24 import java.util.HashSet;
25 import java.util.LinkedHashMap;
26 import java.util.Map;
27 import java.util.Set;
28
29 import org.eclipse.core.resources.IResource;
30 import org.eclipse.core.runtime.IStatus;
31 import org.eclipse.core.runtime.MultiStatus;
32 import org.eclipse.core.runtime.Path;
33 import org.eclipse.core.runtime.Status;
34 import org.eclipse.jdt.annotation.NonNull;
35 import org.eclipse.jdt.annotation.Nullable;
36 import org.eclipse.tracecompass.internal.tmf.core.Activator;
37 import org.eclipse.tracecompass.tmf.core.analysis.IAnalysisModule;
38 import org.eclipse.tracecompass.tmf.core.analysis.IAnalysisModuleHelper;
39 import org.eclipse.tracecompass.tmf.core.analysis.TmfAnalysisManager;
40 import org.eclipse.tracecompass.tmf.core.component.TmfEventProvider;
41 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
42 import org.eclipse.tracecompass.tmf.core.event.aspect.ITmfEventAspect;
43 import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
44 import org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException;
45 import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest;
46 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
47 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalManager;
48 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceOpenedSignal;
49 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceRangeUpdatedSignal;
50 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceUpdatedSignal;
51 import org.eclipse.tracecompass.tmf.core.synchronization.ITmfTimestampTransform;
52 import org.eclipse.tracecompass.tmf.core.synchronization.TimestampTransformFactory;
53 import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
54 import org.eclipse.tracecompass.tmf.core.timestamp.TmfNanoTimestamp;
55 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
56 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
57 import org.eclipse.tracecompass.tmf.core.trace.indexer.ITmfTraceIndexer;
58 import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.TmfCheckpointIndexer;
59 import org.eclipse.tracecompass.tmf.core.trace.location.ITmfLocation;
60
61 import com.google.common.collect.ImmutableList;
62 import com.google.common.collect.Multimap;
63
64 /**
65 * Abstract implementation of ITmfTrace.
66 * <p>
67 * Since the concept of 'location' is trace specific, the concrete classes have
68 * to provide the related methods, namely:
69 * <ul>
70 * <li> public ITmfLocation<?> getCurrentLocation()
71 * <li> public double getLocationRatio(ITmfLocation<?> location)
72 * <li> public ITmfContext seekEvent(ITmfLocation<?> location)
73 * <li> public ITmfContext seekEvent(double ratio)
74 * <li> public IStatus validate(IProject project, String path)
75 * </ul>
76 * <p>
77 * When constructing an event, the concrete trace should use the trace's
78 * timestamp transform to create the timestamp, by either transforming the
79 * parsed time value directly or by using the method createTimestamp().
80 * <p>
81 * The concrete class can either specify its own indexer or use the provided
82 * TmfCheckpointIndexer (default). In this case, the trace cache size will be
83 * used as checkpoint interval.
84 *
85 * @version 1.0
86 * @author Francois Chouinard
87 *
88 * @see ITmfEvent
89 * @see ITmfTraceIndexer
90 * @see ITmfEventParser
91 */
92 public abstract class TmfTrace extends TmfEventProvider implements ITmfTrace, ITmfEventParser, ITmfTraceCompleteness {
93
94 // ------------------------------------------------------------------------
95 // Class attributes
96 // ------------------------------------------------------------------------
97
98 /**
99 * Basic aspects that should be valid for all trace types.
100 */
101 public static final @NonNull Collection<ITmfEventAspect> BASE_ASPECTS =
102 checkNotNull(ImmutableList.of(
103 ITmfEventAspect.BaseAspects.TIMESTAMP,
104 ITmfEventAspect.BaseAspects.EVENT_TYPE,
105 ITmfEventAspect.BaseAspects.CONTENTS
106 ));
107
108 // ------------------------------------------------------------------------
109 // Instance attributes
110 // ------------------------------------------------------------------------
111
112 // The resource used for persistent properties for this trace
113 private IResource fResource;
114
115 // The trace type id
116 private @Nullable String fTraceTypeId;
117
118 // The trace path
119 private String fPath;
120
121 // The trace cache page size
122 private int fCacheSize = ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
123
124 // The number of events collected (so far)
125 private volatile long fNbEvents = 0;
126
127 // The time span of the event stream
128 private @NonNull ITmfTimestamp fStartTime = TmfTimestamp.BIG_BANG;
129 private @NonNull ITmfTimestamp fEndTime = TmfTimestamp.BIG_BANG;
130
131 // The trace streaming interval (0 = no streaming)
132 private long fStreamingInterval = 0;
133
134 // The trace indexer
135 private ITmfTraceIndexer fIndexer;
136
137 private ITmfTimestampTransform fTsTransform;
138
139 private final Map<String, IAnalysisModule> fAnalysisModules =
140 Collections.synchronizedMap(new LinkedHashMap<String, IAnalysisModule>());
141
142 // ------------------------------------------------------------------------
143 // Construction
144 // ------------------------------------------------------------------------
145
146 /**
147 * The default, parameterless, constructor
148 */
149 public TmfTrace() {
150 super();
151 fIndexer = createIndexer(DEFAULT_BLOCK_SIZE);
152 }
153
154 /**
155 * Full constructor.
156 *
157 * @param resource
158 * The resource associated to the trace
159 * @param type
160 * The type of events that will be read from this trace
161 * @param path
162 * The path to the trace on the filesystem
163 * @param cacheSize
164 * The trace cache size. Pass '-1' to use the default specified
165 * in {@link ITmfTrace#DEFAULT_TRACE_CACHE_SIZE}
166 * @param interval
167 * The trace streaming interval. You can use '0' for post-mortem
168 * traces.
169 * @throws TmfTraceException
170 * If something failed during the opening
171 */
172 protected TmfTrace(final IResource resource,
173 final Class<? extends ITmfEvent> type,
174 final String path,
175 final int cacheSize,
176 final long interval)
177 throws TmfTraceException {
178 super();
179 fCacheSize = (cacheSize > 0) ? cacheSize : ITmfTrace.DEFAULT_TRACE_CACHE_SIZE;
180 fStreamingInterval = interval;
181 initialize(resource, path, type);
182 }
183
184 /**
185 * Copy constructor
186 *
187 * @param trace the original trace
188 * @throws TmfTraceException Should not happen usually
189 */
190 public TmfTrace(final TmfTrace trace) throws TmfTraceException {
191 super();
192 if (trace == null) {
193 throw new IllegalArgumentException();
194 }
195 fCacheSize = trace.getCacheSize();
196 fStreamingInterval = trace.getStreamingInterval();
197 initialize(trace.getResource(), trace.getPath(), trace.getEventType());
198 }
199
200 /**
201 * Creates the indexer instance. Classes extending this class can override
202 * this to provide a different indexer implementation.
203 *
204 * @param interval the checkpoints interval
205 *
206 * @return the indexer
207 */
208 protected ITmfTraceIndexer createIndexer(int interval) {
209 return new TmfCheckpointIndexer(this, interval);
210 }
211
212 // ------------------------------------------------------------------------
213 // ITmfTrace - Initializers
214 // ------------------------------------------------------------------------
215
216 @Override
217 public void initTrace(final IResource resource, final String path, final Class<? extends ITmfEvent> type, String name, String traceTypeId) throws TmfTraceException {
218 if (name == null) {
219 throw new IllegalArgumentException();
220 }
221 setName(name);
222 fTraceTypeId = traceTypeId;
223 initTrace(resource, path, type);
224 }
225
226 @Override
227 public void initTrace(final IResource resource, final String path, final Class<? extends ITmfEvent> type) throws TmfTraceException {
228 initialize(resource, path, type);
229 }
230
231 /**
232 * Initialize the trace common attributes and the base component.
233 *
234 * @param resource the Eclipse resource (trace)
235 * @param path the trace path
236 * @param type the trace event type
237 *
238 * @throws TmfTraceException If something failed during the initialization
239 */
240 protected void initialize(final IResource resource,
241 final String path,
242 final Class<? extends ITmfEvent> type)
243 throws TmfTraceException {
244 if (path == null) {
245 throw new TmfTraceException("Invalid trace path"); //$NON-NLS-1$
246 }
247 fPath = path;
248 fResource = resource;
249 String traceName = getName();
250 if (traceName.isEmpty()) {
251 traceName = (resource != null) ? resource.getName() : new Path(path).lastSegment();
252 }
253 super.init(traceName, type);
254 // register as VIP after super.init() because TmfComponent registers to signal manager there
255 TmfSignalManager.registerVIP(this);
256 if (fIndexer != null) {
257 fIndexer.dispose();
258 }
259 fIndexer = createIndexer(fCacheSize);
260 }
261
262 /**
263 * Indicates if the path points to an existing file/directory
264 *
265 * @param path the path to test
266 * @return true if the file/directory exists
267 */
268 protected boolean fileExists(final String path) {
269 final File file = new File(path);
270 return file.exists();
271 }
272
273 @Override
274 public void indexTrace(boolean waitForCompletion) {
275 getIndexer().buildIndex(0, TmfTimeRange.ETERNITY, waitForCompletion);
276 }
277
278 /**
279 * Instantiate the applicable analysis modules and executes the analysis
280 * modules that are meant to be automatically executed
281 *
282 * @return An IStatus indicating whether the analysis could be run
283 * successfully or not
284 */
285 protected IStatus executeAnalysis() {
286 MultiStatus status = new MultiStatus(Activator.PLUGIN_ID, IStatus.OK, null, null);
287
288 Multimap<String, IAnalysisModuleHelper> modules = TmfAnalysisManager.getAnalysisModules();
289 for (IAnalysisModuleHelper helper : modules.values()) {
290 try {
291 IAnalysisModule module = helper.newModule(this);
292 fAnalysisModules.put(module.getId(), module);
293 if (module.isAutomatic()) {
294 status.add(module.schedule());
295 }
296 } catch (TmfAnalysisException e) {
297 status.add(new Status(IStatus.WARNING, Activator.PLUGIN_ID, e.getMessage()));
298 }
299 }
300 return status;
301 }
302
303 @Override
304 public IAnalysisModule getAnalysisModule(String analysisId) {
305 return fAnalysisModules.get(analysisId);
306 }
307
308
309 @Override
310 public Iterable<IAnalysisModule> getAnalysisModules() {
311 synchronized (fAnalysisModules) {
312 Set<IAnalysisModule> modules = new HashSet<>(fAnalysisModules.values());
313 return modules;
314 }
315 }
316
317 @Override
318 public Iterable<ITmfEventAspect> getEventAspects() {
319 /* By default we provide only the base aspects valid for all trace types */
320 return BASE_ASPECTS;
321 }
322
323 /**
324 * Clears the trace
325 */
326 @Override
327 public synchronized void dispose() {
328 /* Clean up the index if applicable */
329 if (getIndexer() != null) {
330 getIndexer().dispose();
331 }
332
333 /* Clean up the analysis modules */
334 synchronized (fAnalysisModules) {
335 for (IAnalysisModule module : fAnalysisModules.values()) {
336 module.dispose();
337 }
338 fAnalysisModules.clear();
339 }
340
341 super.dispose();
342 }
343
344 // ------------------------------------------------------------------------
345 // ITmfTrace - Basic getters
346 // ------------------------------------------------------------------------
347
348 @Override
349 public Class<? extends ITmfEvent> getEventType() {
350 return super.getType();
351 }
352
353 @Override
354 public IResource getResource() {
355 return fResource;
356 }
357
358 @Override
359 public @Nullable String getTraceTypeId() {
360 return fTraceTypeId;
361 }
362
363 @Override
364 public String getPath() {
365 return fPath;
366 }
367
368 @Override
369 public int getCacheSize() {
370 return fCacheSize;
371 }
372
373 @Override
374 public long getStreamingInterval() {
375 return fStreamingInterval;
376 }
377
378 /**
379 * @return the trace indexer
380 */
381 protected ITmfTraceIndexer getIndexer() {
382 return fIndexer;
383 }
384
385 // ------------------------------------------------------------------------
386 // ITmfTrace - Trace characteristics getters
387 // ------------------------------------------------------------------------
388
389 @Override
390 public long getNbEvents() {
391 return fNbEvents;
392 }
393
394 @Override
395 public @NonNull TmfTimeRange getTimeRange() {
396 return new TmfTimeRange(fStartTime, fEndTime);
397 }
398
399 @Override
400 public ITmfTimestamp getStartTime() {
401 return fStartTime;
402 }
403
404 @Override
405 public ITmfTimestamp getEndTime() {
406 return fEndTime;
407 }
408
409 @Override
410 public ITmfTimestamp getInitialRangeOffset() {
411 final long DEFAULT_INITIAL_OFFSET_VALUE = (1L * 100 * 1000 * 1000); // .1sec
412 return new TmfTimestamp(DEFAULT_INITIAL_OFFSET_VALUE, ITmfTimestamp.NANOSECOND_SCALE);
413 }
414
415 @Override
416 public String getHostId() {
417 return this.getName();
418 }
419
420 // ------------------------------------------------------------------------
421 // Convenience setters
422 // ------------------------------------------------------------------------
423
424 /**
425 * Set the trace cache size. Must be done at initialization time.
426 *
427 * @param cacheSize The trace cache size
428 */
429 protected void setCacheSize(final int cacheSize) {
430 fCacheSize = cacheSize;
431 }
432
433 /**
434 * Set the trace known number of events. This can be quite dynamic
435 * during indexing or for live traces.
436 *
437 * @param nbEvents The number of events
438 */
439 protected synchronized void setNbEvents(final long nbEvents) {
440 fNbEvents = (nbEvents > 0) ? nbEvents : 0;
441 }
442
443 /**
444 * Update the trace events time range
445 *
446 * @param range the new time range
447 */
448 protected void setTimeRange(final @NonNull TmfTimeRange range) {
449 fStartTime = range.getStartTime();
450 fEndTime = range.getEndTime();
451 }
452
453 /**
454 * Update the trace chronologically first event timestamp
455 *
456 * @param startTime the new first event timestamp
457 */
458 protected void setStartTime(final @NonNull ITmfTimestamp startTime) {
459 fStartTime = startTime;
460 }
461
462 /**
463 * Update the trace chronologically last event timestamp
464 *
465 * @param endTime the new last event timestamp
466 */
467 protected void setEndTime(final @NonNull ITmfTimestamp endTime) {
468 fEndTime = endTime;
469 }
470
471 /**
472 * Set the polling interval for live traces (default = 0 = no streaming).
473 *
474 * @param interval the new trace streaming interval
475 */
476 protected void setStreamingInterval(final long interval) {
477 fStreamingInterval = (interval > 0) ? interval : 0;
478 }
479
480 // ------------------------------------------------------------------------
481 // ITmfTrace - SeekEvent operations (returning a trace context)
482 // ------------------------------------------------------------------------
483
484 @Override
485 public synchronized ITmfContext seekEvent(final long rank) {
486
487 // A rank <= 0 indicates to seek the first event
488 if (rank <= 0) {
489 ITmfContext context = seekEvent((ITmfLocation) null);
490 context.setRank(0);
491 return context;
492 }
493
494 // Position the trace at the checkpoint
495 final ITmfContext context = fIndexer.seekIndex(rank);
496
497 // And locate the requested event context
498 long pos = context.getRank();
499 if (pos < rank) {
500 ITmfEvent event = getNext(context);
501 while ((event != null) && (++pos < rank)) {
502 event = getNext(context);
503 }
504 }
505 return context;
506 }
507
508 @Override
509 public synchronized ITmfContext seekEvent(final ITmfTimestamp timestamp) {
510
511 // A null timestamp indicates to seek the first event
512 if (timestamp == null) {
513 ITmfContext context = seekEvent((ITmfLocation) null);
514 context.setRank(0);
515 return context;
516 }
517
518 // Position the trace at the checkpoint
519 ITmfContext context = fIndexer.seekIndex(timestamp);
520
521 // And locate the requested event context
522 ITmfLocation previousLocation = context.getLocation();
523 long previousRank = context.getRank();
524 ITmfEvent event = getNext(context);
525 while (event != null && event.getTimestamp().compareTo(timestamp) < 0) {
526 previousLocation = context.getLocation();
527 previousRank = context.getRank();
528 event = getNext(context);
529 }
530 if (event == null) {
531 context.setLocation(null);
532 context.setRank(ITmfContext.UNKNOWN_RANK);
533 } else {
534 context.dispose();
535 context = seekEvent(previousLocation);
536 context.setRank(previousRank);
537 }
538 return context;
539 }
540
541 // ------------------------------------------------------------------------
542 // Read operations (returning an actual event)
543 // ------------------------------------------------------------------------
544
545 @Override
546 public abstract ITmfEvent parseEvent(ITmfContext context);
547
548 @Override
549 public synchronized ITmfEvent getNext(final ITmfContext context) {
550 // parseEvent() does not update the context
551 final ITmfEvent event = parseEvent(context);
552 if (event != null) {
553 ITmfTimestamp timestamp = event.getTimestamp();
554 updateAttributes(context, timestamp);
555 context.setLocation(getCurrentLocation());
556 context.increaseRank();
557 }
558 return event;
559 }
560
561 /**
562 * Update the trace attributes
563 *
564 * @param context the current trace context
565 * @param timestamp the corresponding timestamp
566 */
567 protected synchronized void updateAttributes(final ITmfContext context, final @NonNull ITmfTimestamp timestamp) {
568 if (fStartTime.equals(TmfTimestamp.BIG_BANG) || (fStartTime.compareTo(timestamp) > 0)) {
569 fStartTime = timestamp;
570 }
571 if (fEndTime.equals(TmfTimestamp.BIG_CRUNCH) || (fEndTime.compareTo(timestamp) < 0)) {
572 fEndTime = timestamp;
573 }
574 if (context.hasValidRank()) {
575 long rank = context.getRank();
576 if (fNbEvents <= rank) {
577 fNbEvents = rank + 1;
578 }
579 if (fIndexer != null) {
580 fIndexer.updateIndex(context, timestamp);
581 }
582 }
583 }
584
585 // ------------------------------------------------------------------------
586 // TmfDataProvider
587 // ------------------------------------------------------------------------
588
589 @Override
590 public synchronized ITmfContext armRequest(final ITmfEventRequest request) {
591 if (executorIsShutdown()) {
592 return null;
593 }
594 if (!TmfTimestamp.BIG_BANG.equals(request.getRange().getStartTime())
595 && (request.getIndex() == 0)) {
596 final ITmfContext context = seekEvent(request.getRange().getStartTime());
597 request.setStartIndex((int) context.getRank());
598 return context;
599
600 }
601 return seekEvent(request.getIndex());
602 }
603
604 // ------------------------------------------------------------------------
605 // Signal handlers
606 // ------------------------------------------------------------------------
607
608 /**
609 * Handler for the Trace Opened signal
610 *
611 * @param signal
612 * The incoming signal
613 */
614 @TmfSignalHandler
615 public void traceOpened(TmfTraceOpenedSignal signal) {
616 boolean signalIsForUs = false;
617 for (ITmfTrace trace : TmfTraceManager.getTraceSet(signal.getTrace())) {
618 if (trace == this) {
619 signalIsForUs = true;
620 break;
621 }
622 }
623
624 if (!signalIsForUs) {
625 return;
626 }
627
628 /*
629 * The signal is either for this trace, or for an experiment containing
630 * this trace.
631 */
632 IStatus status = executeAnalysis();
633 if (!status.isOK()) {
634 Activator.log(status);
635 }
636
637 TmfTraceManager.refreshSupplementaryFiles(this);
638
639 if (signal.getTrace() == this) {
640 /* Additionally, the signal is directly for this trace. */
641 if (getNbEvents() == 0) {
642 return;
643 }
644
645 /* For a streaming trace, the range updated signal should be sent
646 * by the subclass when a new safe time is determined.
647 */
648 if (getStreamingInterval() > 0) {
649 return;
650 }
651
652 if (isComplete()) {
653 final TmfTimeRange timeRange = new TmfTimeRange(getStartTime(), TmfTimestamp.BIG_CRUNCH);
654 final TmfTraceRangeUpdatedSignal rangeUpdatedsignal = new TmfTraceRangeUpdatedSignal(this, this, timeRange);
655
656 // Broadcast in separate thread to prevent deadlock
657 broadcastAsync(rangeUpdatedsignal);
658 }
659 return;
660 }
661 }
662
663 /**
664 * Signal handler for the TmfTraceRangeUpdatedSignal signal
665 *
666 * @param signal The incoming signal
667 */
668 @TmfSignalHandler
669 public void traceRangeUpdated(final TmfTraceRangeUpdatedSignal signal) {
670 if (signal.getTrace() == this) {
671 getIndexer().buildIndex(getNbEvents(), signal.getRange(), false);
672 }
673 }
674
675 /**
676 * Signal handler for the TmfTraceUpdatedSignal signal
677 *
678 * @param signal The incoming signal
679 */
680 @TmfSignalHandler
681 public void traceUpdated(final TmfTraceUpdatedSignal signal) {
682 if (signal.getSource() == getIndexer()) {
683 fNbEvents = signal.getNbEvents();
684 fStartTime = signal.getRange().getStartTime();
685 fEndTime = signal.getRange().getEndTime();
686 }
687 }
688
689 // ------------------------------------------------------------------------
690 // Timestamp transformation functions
691 // ------------------------------------------------------------------------
692
693 @Override
694 public ITmfTimestampTransform getTimestampTransform() {
695 if (fTsTransform == null) {
696 fTsTransform = TimestampTransformFactory.getTimestampTransform(getResource());
697 }
698 return fTsTransform;
699 }
700
701 @Override
702 public void setTimestampTransform(final ITmfTimestampTransform tt) {
703 fTsTransform = tt;
704 TimestampTransformFactory.setTimestampTransform(getResource(), tt);
705 }
706
707 @Override
708 public @NonNull ITmfTimestamp createTimestamp(long ts) {
709 return new TmfNanoTimestamp(getTimestampTransform().transform(ts));
710 }
711
712 // ------------------------------------------------------------------------
713 // toString
714 // ------------------------------------------------------------------------
715
716 @Override
717 @SuppressWarnings("nls")
718 public synchronized String toString() {
719 return "TmfTrace [fPath=" + fPath + ", fCacheSize=" + fCacheSize
720 + ", fNbEvents=" + fNbEvents + ", fStartTime=" + fStartTime
721 + ", fEndTime=" + fEndTime + ", fStreamingInterval=" + fStreamingInterval + "]";
722 }
723
724 @Override
725 public boolean isComplete() {
726 /*
727 * Be default, all traces are "complete" which means no more data will
728 * be added later
729 */
730 return true;
731 }
732
733 @Override
734 public void setComplete(boolean isComplete) {
735 /*
736 * This should be overridden by trace classes that can support live
737 * reading (traces in an incomplete state)
738 */
739 }
740 }
This page took 0.057777 seconds and 4 git commands to generate.