src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/RepositoryFiles.java
author egahlin
Fri, 09 Aug 2019 01:18:18 +0200
branchJEP-349-branch
changeset 57690 9316d02dd4a5
parent 57640 46a77fccd251
child 57717 4ce66d271065
permissions -rw-r--r--
Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57434
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     1
/*
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     4
 *
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    10
 *
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    15
 * accompanied this code).
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    16
 *
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    20
 *
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    23
 * questions.
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57433
diff changeset
    24
 */
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    25
package jdk.jfr.internal.consumer;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    26
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    27
import java.io.IOException;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    28
import java.nio.file.DirectoryStream;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    29
import java.nio.file.Files;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    30
import java.nio.file.Path;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    31
import java.util.ArrayList;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    32
import java.util.Collections;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    33
import java.util.HashMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    34
import java.util.HashSet;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    35
import java.util.List;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    36
import java.util.Map;
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    37
import java.util.NavigableMap;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    38
import java.util.Set;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    39
import java.util.SortedMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    40
import java.util.TreeMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    41
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    42
import jdk.jfr.internal.LogLevel;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    43
import jdk.jfr.internal.LogTag;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    44
import jdk.jfr.internal.Logger;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    45
import jdk.jfr.internal.Repository;
57628
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
    46
import jdk.jfr.internal.SecuritySupport.SafePath;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    47
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    48
public final class RepositoryFiles {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    49
    private final FileAccess fileAccess;
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    50
    private final NavigableMap<Long, Path> pathSet = new TreeMap<>();
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    51
    private final Map<Path, Long> pathLookup = new HashMap<>();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    52
    private volatile boolean closed;
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    53
    private Path repository;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    54
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    55
    public RepositoryFiles(FileAccess fileAccess, SafePath repository) {
57638
3b41affae2d2 Fix NPE in SafePath
egahlin
parents: 57628
diff changeset
    56
        this.repository = repository == null ? null : repository.toPath();
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    57
        this.fileAccess = fileAccess;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    58
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    59
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    60
    public long getTimestamp(Path p) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    61
        return pathLookup.get(p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    62
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    63
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    64
    public Path lastPath() {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    65
        // Wait for chunks
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    66
        while (!closed) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    67
            try {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    68
                if (updatePaths()) {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    69
                    break;
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    70
                }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    71
            } catch (IOException e) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    72
                // ignore, not yet available
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    73
            }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    74
        }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    75
        if (closed) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    76
            return null;
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    77
        }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    78
        // Pick the last
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    79
        return pathSet.lastEntry().getValue();
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    80
    }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    81
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    82
    public Path firstPath(long startTimeNanos) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    83
        return path(startTimeNanos, true);
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    84
    }
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    85
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    86
    public Path nextPath(long startTimeNanos) {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    87
        return path(startTimeNanos, false);
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    88
    }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    89
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    90
    private Path path(long timestamp, boolean first) {
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    91
        while (!closed) {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    92
            Long time = timestamp;
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    93
            if (first) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    94
                // Pick closest chunk before timestamp
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    95
                time = pathSet.floorKey(timestamp);
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    96
            }
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    97
            if (time != null) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    98
                SortedMap<Long, Path> after = pathSet.tailMap(time);
57628
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
    99
                if (!after.isEmpty()) {
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
   100
                    Path path = after.get(after.firstKey());
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
   101
                    Logger.log(LogTag.JFR_SYSTEM_STREAMING, LogLevel.TRACE, "Return path " + path + " for start time nanos " + timestamp);
57628
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
   102
                    return path;
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
   103
                }
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   104
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   105
            try {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   106
                if (updatePaths()) {
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   107
                    continue;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   108
                }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   109
            } catch (IOException e) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   110
                Logger.log(LogTag.JFR_SYSTEM_STREAMING, LogLevel.DEBUG, "IOException during repository file scan " + e.getMessage());
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   111
                // This can happen if a chunk is being removed
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   112
                // between the file was discovered and an instance
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   113
                // of an EventSet was constructed. Just ignore,
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   114
                // and retry later.
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   115
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   116
            try {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   117
                synchronized (pathSet) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   118
                    pathSet.wait(1000);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   119
                }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   120
            } catch (InterruptedException e) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   121
                // ignore
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   122
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   123
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   124
        return null;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   125
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   126
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   127
    private boolean updatePaths() throws IOException {
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   128
        if (repository == null) {
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   129
            SafePath p = Repository.getRepository().getRepositoryPath();
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   130
            if (p == null) {
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   131
                return false;
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   132
            }
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   133
            repository = p.toPath();
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   134
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   135
        boolean foundNew = false;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   136
        List<Path> added = new ArrayList<>();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   137
        Set<Path> current = new HashSet<>();
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   138
        try (DirectoryStream<Path> dirStream = fileAccess.newDirectoryStream(repository)) {
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   139
            for (Path p : dirStream) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   140
                if (!pathLookup.containsKey(p)) {
57604
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   141
                    String s = p.toString();
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   142
                    if (s.endsWith(".jfr")) {
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   143
                        added.add(p);
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   144
                        Logger.log(LogTag.JFR_SYSTEM_STREAMING, LogLevel.DEBUG, "New file found: " + p.toAbsolutePath());
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   145
                    }
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   146
                    current.add(p);
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   147
                }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   148
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   149
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   150
        List<Path> removed = new ArrayList<>();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   151
        for (Path p : pathLookup.keySet()) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   152
            if (!current.contains(p)) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   153
                removed.add(p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   154
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   155
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   156
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   157
        for (Path remove : removed) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   158
            Long time = pathLookup.get(remove);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   159
            pathSet.remove(time);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   160
            pathLookup.remove(remove);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   161
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   162
        Collections.sort(added, (p1, p2) -> p1.compareTo(p2));
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   163
        for (Path p : added) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   164
            // Only add files that have a complete header
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   165
            // as the JVM may be in progress writing the file
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   166
            long size = Files.size(p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   167
            if (size >= ChunkHeader.HEADER_SIZE) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   168
                long startNanos = readStartTime(p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   169
                pathSet.put(startNanos, p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   170
                pathLookup.put(p, startNanos);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   171
                foundNew = true;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   172
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   173
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   174
        return foundNew;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   175
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   176
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   177
    private long readStartTime(Path p) throws IOException {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   178
        try (RecordingInput in = new RecordingInput(p.toFile(), fileAccess, 100)) {
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   179
            ChunkHeader c = new ChunkHeader(in);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   180
            return c.getStartNanos();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   181
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   182
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   183
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   184
    public void close() {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   185
        synchronized (pathSet) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   186
            this.closed = true;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   187
            pathSet.notify();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   188
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   189
    }
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   190
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   191
}