diff --git a/src/main/java/com/google/devtools/build/lib/worker/WorkRequestHandler.java b/src/main/java/com/google/devtools/build/lib/worker/WorkRequestHandler.java index f347541cd5cc40..969f261fffa18f 100644 --- a/src/main/java/com/google/devtools/build/lib/worker/WorkRequestHandler.java +++ b/src/main/java/com/google/devtools/build/lib/worker/WorkRequestHandler.java @@ -106,7 +106,7 @@ synchronized void addOutput(String s) { final ConcurrentMap activeRequests = new ConcurrentHashMap<>(); /** The function to be called after each {@link WorkRequest} is read. */ - private final BiFunction, PrintWriter, Integer> callback; + private final WorkRequestCallback callback; /** This worker's stderr. */ private final PrintStream stderr; @@ -129,6 +129,7 @@ synchronized void addOutput(String s) { * @param messageProcessor Object responsible for parsing {@code WorkRequest}s from the server and * writing {@code WorkResponses} to the server. */ + @Deprecated public WorkRequestHandler( BiFunction, PrintWriter, Integer> callback, PrintStream stderr, @@ -163,13 +164,39 @@ public WorkRequestHandler( /** * Creates a {@code WorkRequestHandler} that will call {@code callback} for each WorkRequest * received. Only used for the Builder. + * + * @deprecated Use WorkRequestHandlerBuilder instead. */ + @Deprecated private WorkRequestHandler( BiFunction, PrintWriter, Integer> callback, PrintStream stderr, WorkerMessageProcessor messageProcessor, Duration cpuUsageBeforeGc, BiConsumer cancelCallback) { + this( + new WorkRequestCallback((request, pw) -> callback.apply(request.getArgumentsList(), pw)), + stderr, + messageProcessor, + cpuUsageBeforeGc, + cancelCallback); + } + + /** + * Creates a {@code WorkRequestHandler} that will call {@code callback} for each WorkRequest + * received. Only used for the Builder. + * + * @param callback WorkRequestCallback object with Callback method for executing a single + * WorkRequest in a thread. The first argument to {@code callback} is the WorkRequest, the + * second is where all error messages and other user-oriented messages should be written to. + * The callback must return an exit code indicating success (zero) or failure (nonzero). + */ + private WorkRequestHandler( + WorkRequestCallback callback, + PrintStream stderr, + WorkerMessageProcessor messageProcessor, + Duration cpuUsageBeforeGc, + BiConsumer cancelCallback) { this.callback = callback; this.stderr = stderr; this.messageProcessor = messageProcessor; @@ -177,9 +204,29 @@ private WorkRequestHandler( this.cancelCallback = cancelCallback; } + /** A wrapper class for the callback BiFunction */ + public static class WorkRequestCallback { + + /** + * Callback method for executing a single WorkRequest in a thread. The first argument to {@code + * callback} is the WorkRequest, the second is where all error messages and other user-oriented + * messages should be written to. The callback must return an exit code indicating success + * (zero) or failure (nonzero). + */ + private final BiFunction callback; + + public WorkRequestCallback(BiFunction callback) { + this.callback = callback; + } + + public Integer apply(WorkRequest workRequest, PrintWriter printWriter) { + return callback.apply(workRequest, printWriter); + } + } + /** Builder class for WorkRequestHandler. Required parameters are passed to the constructor. */ public static class WorkRequestHandlerBuilder { - private final BiFunction, PrintWriter, Integer> callback; + private final WorkRequestCallback callback; private final PrintStream stderr; private final WorkerMessageProcessor messageProcessor; private Duration cpuUsageBeforeGc = Duration.ZERO; @@ -195,11 +242,32 @@ public static class WorkRequestHandlerBuilder { * @param stderr Stream that log messages should be written to, typically the process' stderr. * @param messageProcessor Object responsible for parsing {@code WorkRequest}s from the server * and writing {@code WorkResponses} to the server. + * @deprecated use WorkRequestHandlerBuilder with WorkRequestCallback instead */ + @Deprecated public WorkRequestHandlerBuilder( BiFunction, PrintWriter, Integer> callback, PrintStream stderr, WorkerMessageProcessor messageProcessor) { + this( + new WorkRequestCallback((request, pw) -> callback.apply(request.getArgumentsList(), pw)), + stderr, + messageProcessor); + } + + /** + * Creates a {@code WorkRequestHandlerBuilder}. + * + * @param callback WorkRequestCallback object with Callback method for executing a single + * WorkRequest in a thread. The first argument to {@code callback} is the WorkRequest, the + * second is where all error messages and other user-oriented messages should be written to. + * The callback must return an exit code indicating success (zero) or failure (nonzero). + * @param stderr Stream that log messages should be written to, typically the process' stderr. + * @param messageProcessor Object responsible for parsing {@code WorkRequest}s from the server + * and writing {@code WorkResponses} to the server. + */ + public WorkRequestHandlerBuilder( + WorkRequestCallback callback, PrintStream stderr, WorkerMessageProcessor messageProcessor) { this.callback = callback; this.stderr = stderr; this.messageProcessor = messageProcessor; @@ -287,7 +355,7 @@ void respondToRequest(WorkRequest request, RequestInfo requestInfo) throws IOExc PrintWriter pw = new PrintWriter(sw)) { int exitCode; try { - exitCode = callback.apply(request.getArgumentsList(), pw); + exitCode = callback.apply(request, pw); } catch (RuntimeException e) { e.printStackTrace(pw); exitCode = 1; diff --git a/src/test/java/com/google/devtools/build/lib/worker/WorkRequestHandlerTest.java b/src/test/java/com/google/devtools/build/lib/worker/WorkRequestHandlerTest.java index 10af79796aa509..d979215254aaa2 100644 --- a/src/test/java/com/google/devtools/build/lib/worker/WorkRequestHandlerTest.java +++ b/src/test/java/com/google/devtools/build/lib/worker/WorkRequestHandlerTest.java @@ -17,6 +17,7 @@ import static com.google.common.truth.Truth.assertThat; import com.google.devtools.build.lib.worker.WorkRequestHandler.RequestInfo; +import com.google.devtools.build.lib.worker.WorkRequestHandler.WorkRequestCallback; import com.google.devtools.build.lib.worker.WorkRequestHandler.WorkRequestHandlerBuilder; import com.google.devtools.build.lib.worker.WorkRequestHandler.WorkerMessageProcessor; import com.google.devtools.build.lib.worker.WorkerProtocol.WorkRequest; @@ -407,4 +408,27 @@ public void close() throws IOException { delegate.close(); } } + + @Test + public void testWorkRequestHandler_withWorkRequestCallback() throws IOException { + ByteArrayOutputStream out = new ByteArrayOutputStream(); + WorkRequestCallback callback = + new WorkRequestCallback((request, err) -> request.getArgumentsCount()); + WorkRequestHandler handler = + new WorkRequestHandlerBuilder( + callback, + new PrintStream(new ByteArrayOutputStream()), + new ProtoWorkerMessageProcessor(new ByteArrayInputStream(new byte[0]), out)) + .build(); + + List args = Arrays.asList("--sources", "B.java"); + WorkRequest request = WorkRequest.newBuilder().addAllArguments(args).build(); + handler.respondToRequest(request, new RequestInfo(null)); + + WorkResponse response = + WorkResponse.parseDelimitedFrom(new ByteArrayInputStream(out.toByteArray())); + assertThat(response.getRequestId()).isEqualTo(0); + assertThat(response.getExitCode()).isEqualTo(2); + assertThat(response.getOutput()).isEmpty(); + } }