Skip to content

Commit 0b2f223

Browse files
committed
Kotlin code cleaning
1 parent b336fb6 commit 0b2f223

File tree

8 files changed

+237
-76
lines changed

8 files changed

+237
-76
lines changed

build.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
set -e
4+
./mvnw clean install

docs/Mp3playerScreenshot.png

23.7 KB
Loading

src/main/java/net/ponec/script/PPUtils.java

+22-21
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public final class PPUtils {
5454

5555
private final String appName = getClass().getSimpleName();
5656

57-
private final String appVersion = "1.0.5";
57+
private final String appVersion = "1.0.6";
5858

5959
private final Class<?> mainClass = getClass();
6060

@@ -211,28 +211,29 @@ public FinderUtilitiy(Pattern bodyPattern, Pattern filePattern, boolean enforced
211211
}
212212

213213
public void findFiles(Path dir, boolean printLine) throws IOException {
214-
Files.list(dir)
215-
.filter(Files::isReadable)
216-
.sorted(pathComparator)
217-
.forEach(file -> {
218-
if (Files.isDirectory(file)) {
219-
try {
220-
findFiles(file, printLine);
221-
} catch (IOException e) {
222-
throw new RuntimeException(e);
223-
}
224-
} else if ((filePattern == null || filePattern.matcher(file.toString()).find())
225-
&& (bodyPattern == null || grep(file, printLine))) {
226-
printFileName(file).println();
227-
}
228-
});
214+
try (var fileStream = Files.list(dir)) {
215+
fileStream.filter(Files::isReadable)
216+
.sorted(pathComparator)
217+
.forEach(file -> {
218+
if (Files.isDirectory(file)) {
219+
try {
220+
findFiles(file, printLine);
221+
} catch (IOException e) {
222+
throw new RuntimeException(e);
223+
}
224+
} else if ((filePattern == null || filePattern.matcher(file.toString()).find())
225+
&& (bodyPattern == null || grep(file, printLine))) {
226+
printFileName(file).println();
227+
}
228+
});
229+
}
229230
}
230231

231232
public boolean grep(Path file, boolean printLine) {
232-
try {
233-
final var validLineStream = Files
234-
.lines(file, StandardCharsets.UTF_8)
235-
.filter(row -> bodyPattern == null || bodyPattern.matcher(row).find());
233+
try (final var validLineStream = Files
234+
.lines(file, StandardCharsets.UTF_8)
235+
.filter(row -> bodyPattern == null || bodyPattern.matcher(row).find())
236+
) {
236237
if (printLine) {
237238
validLineStream.forEach(line -> printFileName(file).printf("%s%s%n", grepSeparator, line));
238239
return false;
@@ -278,7 +279,7 @@ class Utilities {
278279
/** Compile the script and build it to the executable JAR file */
279280
private void compile() throws Exception {
280281
if (isJar()) {
281-
out.printf("Use the statement rather: java %s.java c %s", appName);
282+
out.printf("Use the statement rather: java %s.java c", appName);
282283
System.exit(1);
283284
}
284285

src/main/java/net/ponec/script/SqlExecutor.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/** Use SQL statements by the SqlParamBuilder class. */
2222
public final class SqlExecutor {
2323
private final static ConnectionProvider db = ConnectionProvider.forH2("user", "pwd");
24-
private final LocalDate someDate = LocalDate.parse("2018-09-12");
24+
private final static LocalDate someDate = LocalDate.parse("2020-09-24");
2525

2626
public static void main(final String[] args) throws Exception {
2727
System.out.println("Arguments: " + List.of(args));
@@ -86,7 +86,7 @@ AND t.code IN (:code)
8686
rs.getObject("created", LocalDate.class)))
8787
.toList();
8888
System.out.printf("# PRINT RESULT OF: %s%n", builder.toStringLine());
89-
employees.stream().forEach(System.out::println);
89+
employees.stream().forEach((Employee employee) -> System.out.println(employee));
9090

9191
assertEquals(3, employees.size());
9292
assertEquals(1, employees.get(0).id);
@@ -135,19 +135,19 @@ private <T> void assertEquals(T expected, T result) {
135135
* @author Pavel Ponec, https://github.com/pponec
136136
* @version 1.0.7
137137
*/
138-
static class SqlParamBuilder implements Closeable {
138+
static class SqlParamBuilder implements AutoCloseable {
139139
/** SQL parameter mark type of {@code :param} */
140140
private static final Pattern SQL_MARK = Pattern.compile(":(\\w+)");
141141
private final Connection dbConnection;
142142
private final Map<String, Object[]> params = new HashMap<>();
143-
private String sqlTemplate = null;
143+
private String sqlTemplate = "";
144144
private PreparedStatement preparedStatement = null;
145145

146146
public SqlParamBuilder(Connection dbConnection) {
147147
this.dbConnection = dbConnection;
148148
}
149149

150-
/** Close statement (if any) and set a new SQL template */
150+
/** Close statement (if any) and set the new SQL template */
151151
public SqlParamBuilder sql(String... sqlLines) {
152152
close();
153153
sqlTemplate = sqlLines.length == 1 ? sqlLines[0] : String.join("\n", sqlLines);
@@ -195,7 +195,7 @@ public ResultSet next() {
195195
}
196196

197197
/** Iterate executed select */
198-
public void forEach(SqlConsumer<ResultSet> consumer) throws IllegalStateException, SQLException {
198+
public void forEach(SqlConsumer<ResultSet> consumer) throws IllegalStateException {
199199
stream().forEach(consumer);
200200
}
201201

src/main/java/net/ponec/script/SqlExecutorKt.kt

+25-42
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
*/
77
package net.ponec.scriptKt
88

9-
import java.io.Closeable
109
import java.sql.*
1110
import java.time.LocalDate
1211
import java.util.*
@@ -23,17 +22,15 @@ class SqlExecutorKt {
2322

2423
companion object Static {
2524
private val db = ConnectionProvider.forH2("user", "pwd")
26-
@Throws(Exception::class)
27-
@JvmStatic
25+
@JvmStatic @Throws(Exception::class)
2826
fun main(args: Array<String>) {
2927
println("args: [${args.joinToString()}]")
3028
db.connection().use { SqlExecutorKt().mainStart(it) }
3129
}
3230
}
3331

34-
@Throws(Exception::class)
3532
fun mainStart(dbConnection: Connection) {
36-
SqlParamBuilder(dbConnection).use { builder ->
33+
SqlParamBuilderKt(dbConnection).use { builder ->
3734

3835
println("# CREATE TABLE")
3936
builder.sql("""
@@ -42,8 +39,8 @@ class SqlExecutorKt {
4239
, name VARCHAR(256) DEFAULT 'test'
4340
, code VARCHAR(1)
4441
, created DATE NOT NULL )
45-
""".trimIndent()
46-
).execute()
42+
""".trimIndent())
43+
.execute()
4744

4845
println("# SINGLE INSERT")
4946
builder.sql("""
@@ -74,25 +71,22 @@ class SqlExecutorKt {
7471
.execute()
7572

7673
println("# SELECT")
77-
val employees = builder.sql("""
74+
val employees: List<Employee> = builder.sql("""
7875
SELECT t.id, t.name, t.created
7976
FROM employee t
8077
WHERE t.id < :id
8178
AND t.code IN (:code)
8279
ORDER BY t.id
83-
""".trimIndent()
84-
)
80+
""".trimIndent())
8581
.bind("id", 10)
8682
.bind("code", "T", "V")
8783
.streamMap { Employee(
8884
it.getInt("id"),
8985
it.getString("name"),
90-
it.getObject("created", LocalDate::class.java)
91-
)
92-
}
86+
it.getObject("created", LocalDate::class.java)) }
9387
.toList()
94-
System.out.printf("# PRINT RESULT OF: %s%n", builder.toStringLine())
95-
employees.stream().forEach { x: Employee? -> println(x) }
88+
println("# PRINT RESULT OF: ${builder.toStringLine()}")
89+
employees.stream().forEach { employee: Employee -> println(employee) }
9690
assertEquals(3, employees.size)
9791
assertEquals(1, employees[0].id)
9892
assertEquals("test", employees[0].name)
@@ -103,8 +97,7 @@ class SqlExecutorKt {
10397
WHERE t.id < [10]
10498
AND t.code IN ([T],[V])
10599
ORDER BY t.id
106-
""".trimIndent(), builder.toString()
107-
)
100+
""".trimIndent(), builder.toString())
108101
}
109102
}
110103

@@ -139,40 +132,36 @@ class SqlExecutorKt {
139132
}
140133

141134
/**
142-
* Less than 140 lines long class to simplify work with JDBC.
135+
* Less than 130 lines long class to simplify work with JDBC.
143136
* Original source: [GitHub](https://github.com/pponec/DirectoryBookmarks/blob/development/src/main/java/net/ponec/script/SqlExecutor.java)
144137
* Licence: Apache License, Version 2.0
145138
* @author Pavel Ponec, https://github.com/pponec
146139
* @version 1.0.7
147140
*/
148-
internal class SqlParamBuilder(private val connection: Connection
149-
) : Closeable {
141+
internal class SqlParamBuilderKt(private val connection: Connection) : AutoCloseable {
150142
private val params: MutableMap<String, Array<out Any?>> = HashMap()
151143
private val sqlParameterMark = Pattern.compile(":(\\w+)")
152-
private var sqlTemplate: String = ""
144+
var sqlTemplate: String = ""; private set
153145
private var preparedStatement: PreparedStatement? = null
154146

155-
/** Close statement (if any) and set a new SQL template */
156-
fun sql(vararg sqlLines: String): SqlParamBuilder {
147+
/** Close statement (if any) and set the new SQL template */
148+
fun sql(vararg sqlLines: String): SqlParamBuilderKt {
157149
close()
158150
sqlTemplate = if (sqlLines.size == 1) sqlLines[0] else sqlLines.joinToString("\n")
159151
return this
160152
}
161153

162154
/** Assign a SQL value(s). In case a reused statement set the same number of parameters items. */
163-
fun bind(key: String, vararg values: Any?): SqlParamBuilder {
155+
fun bind(key: String, vararg values: Any?): SqlParamBuilderKt {
164156
params[key] = if (values.isNotEmpty()) values else arrayOfNulls(1)
165157
return this
166158
}
167159

168-
@Throws(IllegalStateException::class, SQLException::class)
169-
fun execute(): Int {
170-
return prepareStatement().executeUpdate()
171-
}
160+
fun execute(): Int =
161+
prepareStatement().executeUpdate()
172162

173163
/** A ResultSet object is automatically closed when the Statement object that generated it is closed,
174164
* re-executed, or used to retrieve the next result from a sequence of multiple results. */
175-
@Throws(IllegalStateException::class)
176165
private fun executeSelect(): ResultSet {
177166
return try {
178167
prepareStatement().executeQuery()
@@ -201,14 +190,11 @@ class SqlExecutorKt {
201190
}
202191

203192
/** Iterate executed select */
204-
@Throws(IllegalStateException::class, SQLException::class)
205-
fun forEach(consumer: (ResultSet) -> Unit) {
193+
fun forEach(consumer: (ResultSet) -> Unit) =
206194
stream().forEach(consumer)
207-
}
208195

209-
fun <R> streamMap(mapper: (ResultSet) -> R): Stream<R> {
210-
return stream().map(mapper)
211-
}
196+
fun <R> streamMap(mapper: (ResultSet) -> R): Stream<R> =
197+
stream().map(mapper)
212198

213199
/** The method closes a PreparedStatement object with related objects, not the database connection. */
214200
override fun close() {
@@ -237,31 +223,28 @@ class SqlExecutorKt {
237223
private fun buildSql(sqlValues: MutableList<Any?>, toLog: Boolean): String {
238224
val result = StringBuilder(256)
239225
val matcher = sqlParameterMark.matcher(sqlTemplate)
240-
val missingKeys = HashSet<Any>()
226+
val missingKeys = mutableSetOf<Any>()
241227
while (matcher.find()) {
242228
val key = matcher.group(1)
243229
val values = params[key]
244230
if (values != null) {
245231
matcher.appendReplacement(result, "")
246232
for (i in values.indices) {
247233
if (i > 0) result.append(',')
248-
result.append(Matcher.quoteReplacement(if (toLog) "[" + values[i] + "]" else "?"))
234+
result.append(Matcher.quoteReplacement(if (toLog) "[${values[i]}]" else "?"))
249235
sqlValues.add(values[i])
250236
}
251237
} else {
252238
matcher.appendReplacement(result, Matcher.quoteReplacement(matcher.group()))
253239
missingKeys.add(key)
254240
}
255241
}
256-
require(!(!toLog && !missingKeys.isEmpty())) { "Missing value of the keys: $missingKeys" }
242+
require(toLog || missingKeys.isEmpty()) {
243+
"Missing value of the keys: [${missingKeys.joinToString (", ")}]" }
257244
matcher.appendTail(result)
258245
return result.toString()
259246
}
260247

261-
fun sqlTemplate(): String {
262-
return sqlTemplate
263-
}
264-
265248
override fun toString(): String {
266249
return buildSql(ArrayList(), true)
267250
}

src/test/java/net/ponec/script/SqlParamBuilderDemoTest.java src/test/java/net/ponec/script/SqlParamBuilderDemo.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* Testing the SqlParamBuilder class
3232
* @author Pavel Ponec
3333
*/
34-
public class SqlParamBuilderDemoTest extends AbstractJdbcConnector {
34+
public class SqlParamBuilderDemo extends AbstractJdbcConnector {
3535

3636
/** Some testing date */
3737
private final LocalDate someDate = LocalDate.parse("2018-09-12");
@@ -47,7 +47,7 @@ public void testShowUsage() throws Exception {
4747
}
4848

4949
/** Example of SqlParamBuilder */
50-
public void runSqlStatements(Connection dbConnection) throws SQLException {
50+
public void runSqlStatements(Connection dbConnection) {
5151
try (var builder = new SqlParamBuilder(dbConnection)) {
5252
builder.sql("""
5353
SELECT t.id, t.name, t.created

0 commit comments

Comments
 (0)