-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAbstractOutputBuffer.java
More file actions
129 lines (107 loc) · 3.72 KB
/
AbstractOutputBuffer.java
File metadata and controls
129 lines (107 loc) · 3.72 KB
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
package org.utplsql.api.outputBuffer;
import org.utplsql.api.reporter.Reporter;
import java.io.PrintStream;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
/**
* Fetches the lines produced by a reporter.
*
* @author vinicius
* @author pesse
*/
abstract class AbstractOutputBuffer implements OutputBuffer {
private final Reporter reporter;
private int fetchSize = 100;
/**
* Creates a new DefaultOutputBuffer.
*
* @param reporter the reporter to be used
*/
AbstractOutputBuffer(Reporter reporter) {
assert reporter.isInit() : "Reporter is not initialized! You can only create OutputBuffers for initialized Reporters";
this.reporter = reporter;
}
/**
* Returns the reporter used by this buffer.
*
* @return the reporter instance
*/
public Reporter getReporter() {
return reporter;
}
@Override
public OutputBuffer setFetchSize(int fetchSize) {
this.fetchSize = fetchSize;
return this;
}
/**
* Print the lines as soon as they are produced and write to a PrintStream.
*
* @param conn DB connection
* @param ps the PrintStream to be used, e.g: System.out
* @throws SQLException any sql errors
*/
public void printAvailable(Connection conn, PrintStream ps) throws SQLException {
List<PrintStream> printStreams = new ArrayList<>(1);
printStreams.add(ps);
printAvailable(conn, printStreams);
}
/**
* Print the lines as soon as they are produced and write to a list of PrintStreams.
*
* @param conn DB connection
* @param printStreams the PrintStream list to be used, e.g: System.out, new PrintStream(new FileOutputStream)
* @throws SQLException any sql errors
*/
public void printAvailable(Connection conn, List<PrintStream> printStreams) throws SQLException {
fetchAvailable(conn, s -> {
for (PrintStream ps : printStreams) {
ps.println(s);
}
});
}
protected abstract CallableStatement getLinesCursorStatement(Connection conn) throws SQLException;
/**
* Print the lines as soon as they are produced and call the callback passing the new line.
*
* @param conn DB connection
* @param onLineFetched the callback to be called
* @throws SQLException any sql errors
*/
public void fetchAvailable(Connection conn, Consumer<String> onLineFetched) throws SQLException {
try (CallableStatement cstmt = getLinesCursorStatement(conn)) {
cstmt.execute();
cstmt.setFetchSize(fetchSize);
try (ResultSet resultSet = (ResultSet) cstmt.getObject(1)) {
while (resultSet.next()) {
onLineFetched.accept(resultSet.getString("text"));
}
}
}
}
/**
* Get all lines from output buffer and return it as a list of strings.
*
* @param conn DB connection
* @return the lines
* @throws SQLException any sql errors
*/
public List<String> fetchAll(Connection conn) throws SQLException {
try (CallableStatement cstmt = getLinesCursorStatement(conn)) {
cstmt.execute();
cstmt.setFetchSize(fetchSize);
try (ResultSet resultSet = (ResultSet) cstmt.getObject(1)) {
List<String> outputLines = new ArrayList<>();
while (resultSet.next()) {
outputLines.add(resultSet.getString("text"));
}
return outputLines;
}
}
}
}