aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/buildeventstream/transports/FileTransport.java
blob: fcb265447af56fa3fbfcc421eb6060ad6f517a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// Copyright 2017 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.devtools.build.lib.buildeventstream.transports;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.SettableFuture;
import com.google.devtools.build.lib.buildeventstream.BuildEvent;
import com.google.devtools.build.lib.buildeventstream.BuildEventTransport;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.AsynchronousFileChannel;
import java.nio.channels.CompletionHandler;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.concurrent.Future;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Non-blocking file transport.
 *
 * <p>Implementors of this class need to implement {@link #sendBuildEvent(BuildEvent)} which
 * serializes the build event and writes it to file using {@link #writeData(byte[])}.
 */
abstract class FileTransport implements BuildEventTransport {

  /**
   * We use an {@link AsynchronousFileChannel} to perform non-blocking writes to a file. It get's
   * tricky when it comes to {@link #close()}, as we may only complete the returned future when
   * all writes have completed (succeeded or failed). Thus, we use a field
   * {@link #outstandingWrites} to keep track of the number of writes that have not completed yet.
   * It's simply incremented before a new write and decremented after a write has completed. When
   * it's {@code 0} it's safe to complete the close future.
   */

  private static final Logger log = Logger.getLogger(FileTransport.class.getName());

  @VisibleForTesting
  final AsynchronousFileChannel ch;
  private final WriteCompletionHandler completionHandler = new WriteCompletionHandler();
  // The offset in the file to begin the next write at.
  private long writeOffset;
  // Number of writes that haven't completed yet.
  private long outstandingWrites;
  // The future returned by close()
  private SettableFuture<Void> closeFuture;

  FileTransport(String path) {
    try {
      ch = AsynchronousFileChannel.open(Paths.get(path), StandardOpenOption.CREATE,
          StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE);
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  synchronized void writeData(byte[] data) {
    checkNotNull(data);
    if (!ch.isOpen()) {
      @SuppressWarnings({"unused", "nullness"})
      Future<?> possiblyIgnoredError = close();
      return;
    }
    if (closing()) {
      return;
    }

    outstandingWrites++;

    ch.write(ByteBuffer.wrap(data), writeOffset, null, completionHandler);

    writeOffset += data.length;
  }

  @Override
  public synchronized ListenableFuture<Void> close() {
    if (closing()) {
      return closeFuture;
    }
    closeFuture = SettableFuture.create();

    if (writesComplete()) {
      doClose();
    }

    return closeFuture;
  }

  private void doClose() {
    try {
      ch.force(true);
      ch.close();
    } catch (IOException e) {
      log.log(Level.SEVERE, e.getMessage(), e);
    } finally {
      closeFuture.set(null);
    }
  }

  private boolean closing() {
    return closeFuture != null;
  }

  private boolean writesComplete() {
    return outstandingWrites == 0;
  }

  /**
   * Handler that's notified when a write completes.
   */
  private final class WriteCompletionHandler implements CompletionHandler<Integer, Void> {

    @Override
    public void completed(Integer result, Void attachment) {
      countWriteAndTryClose();
    }

    @Override
    public void failed(Throwable exc, Void attachment) {
      log.log(Level.SEVERE, exc.getMessage(), exc);
      countWriteAndTryClose();
      // There is no point in trying to continue. Close the transport.
      @SuppressWarnings({"unused", "nullness"})
      Future<?> possiblyIgnoredError = close();
    }

    private void countWriteAndTryClose() {
      synchronized (FileTransport.this) {
        checkState(outstandingWrites > 0);

        outstandingWrites--;

        if (closing() && writesComplete()) {
          doClose();
        }
      }
    }
  }
}