src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/RepositoryFiles.java
author egahlin
Thu, 15 Aug 2019 02:58:28 +0200
branchJEP-349-branch
changeset 57754 5693904ecbde
parent 57717 4ce66d271065
child 57920 de358b994ad9
permissions -rw-r--r--
Add streaming support for repository migration
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.Path;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    30
import java.util.ArrayList;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    31
import java.util.Collections;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    32
import java.util.HashMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    33
import java.util.HashSet;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    34
import java.util.List;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    35
import java.util.Map;
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    36
import java.util.NavigableMap;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    37
import java.util.Set;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    38
import java.util.SortedMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    39
import java.util.TreeMap;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    40
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    41
import jdk.jfr.internal.LogLevel;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    42
import jdk.jfr.internal.LogTag;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    43
import jdk.jfr.internal.Logger;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    44
import jdk.jfr.internal.Repository;
57628
f5f590eaecf5 Fix EventStream:setStartTime
egahlin
parents: 57604
diff changeset
    45
import jdk.jfr.internal.SecuritySupport.SafePath;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    46
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    47
public final class RepositoryFiles {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    48
    private final FileAccess fileAccess;
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    49
    private final NavigableMap<Long, Path> pathSet = new TreeMap<>();
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    50
    private final Map<Path, Long> pathLookup = new HashMap<>();
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
    51
    private final Path repository;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    52
    private volatile boolean closed;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    53
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    54
    public RepositoryFiles(FileAccess fileAccess, Path repository) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    55
        this.repository = repository;
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    56
        this.fileAccess = fileAccess;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    57
    }
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
    public long getTimestamp(Path p) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    60
        return pathLookup.get(p);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    61
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
    62
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    63
    public Path lastPath() {
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    64
        if (waitForPaths()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    65
            return pathSet.lastEntry().getValue();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    66
        }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    67
        return null; // closed
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    68
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    69
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    70
    public Path firstPath(long startTimeNanos) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    71
        if (waitForPaths()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    72
            // Pick closest chunk before timestamp
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    73
            Long time = pathSet.floorKey(startTimeNanos);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    74
            if (time != null) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    75
                startTimeNanos = time;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    76
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    77
            return path(startTimeNanos);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    78
        }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    79
        return null; // closed
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    80
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    81
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    82
    private boolean waitForPaths() {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    83
        while (!closed) {
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    84
            try {
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
    85
                if (updatePaths()) {
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    86
                    break;
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    87
                }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    88
            } catch (IOException e) {
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    89
                Logger.log(LogTag.JFR_SYSTEM_STREAMING, LogLevel.DEBUG, "IOException during repository file scan " + e.getMessage());
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    90
                // This can happen if a chunk is being removed
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    91
                // between the file was discovered and an instance
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    92
                // was accessed, or if new file has been written yet
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    93
                // Just ignore, and retry later.
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    94
            }
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    95
            nap();
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
    96
        }
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
    97
        return !closed;
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    98
    }
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    99
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   100
    public Path nextPath(long startTimeNanos) {
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   101
        return path(startTimeNanos);
57640
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
   102
    }
46a77fccd251 Fix first(...), next(...) and last() path from RepositoryFiles
egahlin
parents: 57638
diff changeset
   103
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   104
    private Path path(long timestamp) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   105
        if (closed) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   106
            return null;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   107
        }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   108
        while (true) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   109
            SortedMap<Long, Path> after = pathSet.tailMap(timestamp);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   110
            if (!after.isEmpty()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   111
                Path path = after.get(after.firstKey());
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   112
                Logger.log(LogTag.JFR_SYSTEM_STREAMING, LogLevel.TRACE, "Return path " + path + " for start time nanos " + timestamp);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   113
                return path;
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   114
            }
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   115
            if (!waitForPaths()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   116
                return null; // closed
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   117
            }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   118
        }
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   119
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   120
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   121
    private void nap() {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   122
        try {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   123
            synchronized (pathSet) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   124
                pathSet.wait(1000);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   125
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   126
        } catch (InterruptedException e) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   127
            // ignore
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents: 57690
diff changeset
   128
        }
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   129
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   130
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   131
    private boolean updatePaths() throws IOException {
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   132
        boolean foundNew = false;
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   133
        Path repoPath = repository;
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   134
        if (repoPath == null) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   135
            // Always get the latest repository if 'jcmd JFR.configure
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   136
            // repositorypath=...' has been executed
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   137
            SafePath sf = Repository.getRepository().getRepositoryPath();
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   138
            if (sf == null) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   139
                return false; // not initialized
57690
9316d02dd4a5 Add EventStream::setEndTime(...) and a first stab at priviliged access to local repository
egahlin
parents: 57640
diff changeset
   140
            }
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   141
            repoPath = sf.toPath();
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   142
        }
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   143
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   144
        try (DirectoryStream<Path> dirStream = fileAccess.newDirectoryStream(repoPath)) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   145
            List<Path> added = new ArrayList<>();
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   146
            Set<Path> current = new HashSet<>();
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   147
            for (Path p : dirStream) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   148
                if (!pathLookup.containsKey(p)) {
57604
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   149
                    String s = p.toString();
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   150
                    if (s.endsWith(".jfr")) {
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   151
                        added.add(p);
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   152
                        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
   153
                    }
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57449
diff changeset
   154
                    current.add(p);
57433
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
            }
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   157
            List<Path> removed = new ArrayList<>();
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   158
            for (Path p : pathLookup.keySet()) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   159
                if (!current.contains(p)) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   160
                    removed.add(p);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   161
                }
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   162
            }
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   163
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   164
            for (Path remove : removed) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   165
                Long time = pathLookup.get(remove);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   166
                pathSet.remove(time);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   167
                pathLookup.remove(remove);
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   168
            }
57754
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   169
            Collections.sort(added, (p1, p2) -> p1.compareTo(p2));
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   170
            for (Path p : added) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   171
                // Only add files that have a complete header
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   172
                // as the JVM may be in progress writing the file
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   173
                long size = fileAccess.fileSize(p);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   174
                if (size >= ChunkHeader.HEADER_SIZE) {
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   175
                    long startNanos = readStartTime(p);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   176
                    pathSet.put(startNanos, p);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   177
                    pathLookup.put(p, startNanos);
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   178
                    foundNew = true;
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   179
                }
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   180
            }
5693904ecbde Add streaming support for repository migration
egahlin
parents: 57717
diff changeset
   181
            return foundNew;
57433
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
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   185
    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
   186
        try (RecordingInput in = new RecordingInput(p.toFile(), fileAccess, 100)) {
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   187
            ChunkHeader c = new ChunkHeader(in);
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   188
            return c.getStartNanos();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   189
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   190
    }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   191
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   192
    public void close() {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   193
        synchronized (pathSet) {
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   194
            this.closed = true;
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   195
            pathSet.notify();
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   196
        }
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   197
    }
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   198
57433
83e4343a6984 Clean up and fix parser level filtering
egahlin
parents:
diff changeset
   199
}