Skip to content

Commit 2eae61d

Browse files
committed
Change Shell.EXECUTOR type from ExecutorService to Executor
Remove unnecessary restrictions
1 parent e01d4cb commit 2eae61d

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

core/src/main/java/com/topjohnwu/superuser/Shell.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 John "topjohnwu" Wu
2+
* Copyright 2024 John "topjohnwu" Wu
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -37,7 +37,6 @@
3737
import java.util.List;
3838
import java.util.Objects;
3939
import java.util.concurrent.Executor;
40-
import java.util.concurrent.ExecutorService;
4140
import java.util.concurrent.Executors;
4241
import java.util.concurrent.Future;
4342
import java.util.concurrent.TimeUnit;
@@ -120,13 +119,13 @@ public abstract class Shell implements Closeable {
120119
@interface ConfigFlags {}
121120

122121
/**
123-
* The {@link ExecutorService} that manages all worker threads used in {@code libsu}.
122+
* The {@link Executor} that manages all worker threads used in {@code libsu}.
124123
* <p>
125-
* Note: If the developer decides to replace the default ExecutorService, keep in mind that
124+
* Note: If the developer decides to replace the default Executor, keep in mind that
126125
* each {@code Shell} instance requires at least 3 threads to operate properly.
127126
*/
128127
@NonNull
129-
public static ExecutorService EXECUTOR = Executors.newCachedThreadPool();
128+
public static Executor EXECUTOR = Executors.newCachedThreadPool();
130129

131130

132131
/**

core/src/main/java/com/topjohnwu/superuser/internal/JobTask.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import java.util.UUID;
3535
import java.util.concurrent.ExecutionException;
3636
import java.util.concurrent.Executor;
37-
import java.util.concurrent.Future;
37+
import java.util.concurrent.FutureTask;
3838

3939
abstract class JobTask extends Shell.Job implements Shell.Task, Closeable {
4040

@@ -75,10 +75,13 @@ public void run(@NonNull OutputStream stdin,
7575
result.err = list;
7676
}
7777

78-
try {
79-
Future<Integer> outGobbler = EXECUTOR.submit(new StreamGobbler.OUT(stdout, result.out));
80-
Future<Void> errGobbler = EXECUTOR.submit(new StreamGobbler.ERR(stderr, result.err));
78+
FutureTask<Integer> outGobbler =
79+
new FutureTask<>(new StreamGobbler.OUT(stdout, result.out));
80+
FutureTask<Void> errGobbler = new FutureTask<>(new StreamGobbler.ERR(stderr, result.err));
81+
EXECUTOR.execute(outGobbler);
82+
EXECUTOR.execute(errGobbler);
8183

84+
try {
8285
for (ShellInputSource src : sources)
8386
src.serve(stdin);
8487
stdin.write(END_CMD);

io/src/main/java/com/topjohnwu/superuser/internal/ShellPipeStream.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 John "topjohnwu" Wu
2+
* Copyright 2024 John "topjohnwu" Wu
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
import java.io.FileOutputStream;
2929
import java.io.InputStream;
3030
import java.io.OutputStream;
31-
import java.util.concurrent.Future;
31+
import java.util.concurrent.FutureTask;
3232
import java.util.concurrent.TimeUnit;
3333

3434
class ShellPipeStream {
@@ -58,7 +58,8 @@ static InputStream openReadStream(SuFile file) throws FileNotFoundException {
5858
});
5959

6060
// Open the fifo only after the shell request
61-
Future<InputStream> stream = Shell.EXECUTOR.submit(() -> new FileInputStream(fifo));
61+
FutureTask<InputStream> stream = new FutureTask<>(() -> new FileInputStream(fifo));
62+
Shell.EXECUTOR.execute(stream);
6263
return stream.get(FIFO_TIMEOUT, TimeUnit.MILLISECONDS);
6364
} catch (Exception e) {
6465
if (e instanceof FileNotFoundException)
@@ -104,7 +105,8 @@ static OutputStream openWriteStream(SuFile file, boolean append) throws FileNotF
104105
});
105106

106107
// Open the fifo only after the shell request
107-
Future<OutputStream> stream = Shell.EXECUTOR.submit(() -> new FileOutputStream(fifo));
108+
FutureTask<OutputStream> stream = new FutureTask<>(() -> new FileOutputStream(fifo));
109+
Shell.EXECUTOR.execute(stream);
108110
return stream.get(FIFO_TIMEOUT, TimeUnit.MILLISECONDS);
109111
} catch (Exception e) {
110112
if (e instanceof FileNotFoundException)

0 commit comments

Comments
 (0)