Skip to content

Commit 6723cba

Browse files
Merge branch 'dev' into ps/#554-HandlingNoWeatherData
2 parents cd5354d + d1fcf67 commit 6723cba

21 files changed

+1412
-13
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'signing'
66
id 'pmd' // code check, working on source code
77
id 'com.diffplug.spotless' version '6.25.0' //code format
8-
id 'com.github.spotbugs' version '6.0.25' // code check, working on byte code
8+
id 'com.github.spotbugs' version '6.0.26' // code check, working on byte code
99
id 'de.undercouch.download' version '5.6.0'
1010
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
1111
id 'jacoco' // java code coverage plugin
@@ -73,7 +73,7 @@ dependencies {
7373
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
7474
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
7575
testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
76-
testImplementation 'net.bytebuddy:byte-buddy:1.15.7' // Mocks of classes
76+
testImplementation 'net.bytebuddy:byte-buddy:1.15.10' // Mocks of classes
7777

7878
// testcontainers (docker framework for testing)
7979
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* © 2023. TU Dortmund University,
3+
* Institute of Energy Systems, Energy Efficiency and Energy Economics,
4+
* Research group Distribution grid planning and operation
5+
*/
6+
package edu.ie3.datamodel.io;
7+
8+
import static edu.ie3.datamodel.io.SqlUtils.quote;
9+
10+
import java.util.UUID;
11+
import java.util.stream.Stream;
12+
13+
/** Class for identification of entities and results from grids in SQL databases. */
14+
public record DbGridMetadata(String gridName, UUID uuid) {
15+
16+
public static final String GRID_TABLE_COLUMN = "grids";
17+
public static final String GRID_NAME_COLUMN = "grid_name";
18+
public static final String GRID_UUID_COLUMN = "grid_uuid";
19+
20+
public String toString() {
21+
return GRID_NAME_COLUMN + "=" + gridName + ", " + GRID_UUID_COLUMN + "=" + uuid.toString();
22+
}
23+
24+
/** @return Stream with grid uuid */
25+
public Stream<String> getStreamForQuery() {
26+
return Stream.of(quote(uuid.toString(), "'"));
27+
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* © 2023. TU Dortmund University,
3+
* Institute of Energy Systems, Energy Efficiency and Energy Economics,
4+
* Research group Distribution grid planning and operation
5+
*/
6+
package edu.ie3.datamodel.io;
7+
8+
import java.util.Objects;
9+
import org.slf4j.Logger;
10+
import org.slf4j.LoggerFactory;
11+
12+
public class SqlUtils {
13+
14+
protected static final Logger log = LoggerFactory.getLogger(SqlUtils.class);
15+
private static final String END_QUERY_CREATE_TABLE =
16+
")\n \t WITHOUT OIDS\n \t TABLESPACE pg_default;";
17+
18+
private SqlUtils() {
19+
throw new IllegalStateException("Utility classes cannot be instantiated");
20+
}
21+
22+
private static String beginQueryCreateTable(String schemaName, String tableName) {
23+
return "CREATE TABLE " + schemaName + "." + tableName + "\n(\n";
24+
}
25+
26+
/** @return query to create a SQL table for a grid */
27+
public static String queryCreateGridTable(String schemaName) {
28+
return beginQueryCreateTable(schemaName, DbGridMetadata.GRID_TABLE_COLUMN)
29+
+ "\tuuid uuid PRIMARY KEY,\n\tname TEXT NOT NULL\n"
30+
+ END_QUERY_CREATE_TABLE;
31+
}
32+
33+
/**
34+
* To avoid data type conflicts while insertion into a SQL table all columns should be quoted.
35+
*
36+
* @return input with quoteSymbol
37+
*/
38+
public static String quote(String input, String quoteSymbol) {
39+
if (Objects.equals(input, "") || Objects.equals(input, "null")) {
40+
return "NULL";
41+
} else {
42+
return input.matches("^\".*\"$") ? input : quoteSymbol + input + quoteSymbol;
43+
}
44+
}
45+
}

src/main/java/edu/ie3/datamodel/io/connectors/SqlConnector.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ public ResultSet executeQuery(Statement stmt, String query) throws SQLException
6161
/**
6262
* Executes an update query
6363
*
64-
* @param updateQuery the query to execute
64+
* @param query the query to execute
6565
* @return The number of updates or a negative number if the execution failed
6666
*/
67-
public int executeUpdate(String updateQuery) {
68-
try (Statement stmt = getConnection().createStatement()) {
69-
return stmt.executeUpdate(updateQuery);
67+
public int executeUpdate(String query) throws SQLException {
68+
try (Statement statement = getConnection().createStatement()) {
69+
return statement.executeUpdate(query);
7070
} catch (SQLException e) {
71-
log.error(String.format("Error at execution of query \"%1.127s\": ", updateQuery), e);
72-
return -1;
71+
throw new SQLException(
72+
String.format("Error at execution of query, SQLReason: '%s'", e.getMessage()), e);
7373
}
7474
}
7575

src/main/java/edu/ie3/datamodel/io/naming/DatabaseNamingStrategy.java

+51
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,24 @@
55
*/
66
package edu.ie3.datamodel.io.naming;
77

8+
import static edu.ie3.datamodel.io.naming.EntityPersistenceNamingStrategy.logger;
9+
810
import edu.ie3.datamodel.io.naming.timeseries.ColumnScheme;
911
import edu.ie3.datamodel.models.Entity;
12+
import edu.ie3.datamodel.models.timeseries.TimeSeries;
13+
import edu.ie3.datamodel.models.timeseries.TimeSeriesEntry;
14+
import edu.ie3.datamodel.models.timeseries.individual.IndividualTimeSeries;
15+
import edu.ie3.datamodel.models.timeseries.repetitive.LoadProfileInput;
16+
import edu.ie3.datamodel.models.value.Value;
1017
import java.util.Optional;
1118

1219
/** A naming strategy for database entities */
1320
public class DatabaseNamingStrategy {
1421

1522
private static final String TIME_SERIES_PREFIX = "time_series_";
23+
24+
private static final String LOAD_PROFILE_PREFIX = "load_profile_";
25+
1626
private final EntityPersistenceNamingStrategy entityPersistenceNamingStrategy;
1727

1828
public DatabaseNamingStrategy(EntityPersistenceNamingStrategy entityPersistenceNamingStrategy) {
@@ -42,7 +52,48 @@ public String getTimeSeriesEntityName(ColumnScheme columnScheme) {
4252
return TIME_SERIES_PREFIX + columnScheme.getScheme();
4353
}
4454

55+
/**
56+
* Provides the name of a load profile given by the load profile key
57+
*
58+
* @param lpKey Load profile key
59+
* @return the table name
60+
*/
61+
private String getLoadProfileEntityName(String lpKey) {
62+
return LOAD_PROFILE_PREFIX + lpKey;
63+
}
64+
65+
/**
66+
* Provides the name of a unique entity class.
67+
*
68+
* @param cls Class extends UniqueEntity
69+
* @return the table name
70+
*/
4571
public Optional<String> getEntityName(Class<? extends Entity> cls) {
4672
return entityPersistenceNamingStrategy.getEntityName(cls);
4773
}
74+
75+
/**
76+
* Provides the name of a time series. Used to determine the table name in SQL database.
77+
*
78+
* @param timeSeries to be named TimeSeries
79+
* @return the table name
80+
*/
81+
public <T extends TimeSeries<E, V>, E extends TimeSeriesEntry<V>, V extends Value>
82+
Optional<String> getEntityName(T timeSeries) {
83+
if (timeSeries instanceof IndividualTimeSeries individualTimeSeries) {
84+
Optional<E> maybeFirstElement = individualTimeSeries.getEntries().stream().findFirst();
85+
if (maybeFirstElement.isPresent()) {
86+
Class<? extends Value> valueClass = maybeFirstElement.get().getValue().getClass();
87+
return Optional.of(getTimeSeriesEntityName(ColumnScheme.parse(valueClass).orElseThrow()));
88+
} else {
89+
logger.error("Unable to determine content of time series {}", timeSeries);
90+
return Optional.empty();
91+
}
92+
} else if (timeSeries instanceof LoadProfileInput loadProfileInput) {
93+
return Optional.of(getLoadProfileEntityName(loadProfileInput.getType().getKey()));
94+
} else {
95+
logger.error("There is no naming strategy defined for {}", timeSeries);
96+
return Optional.empty();
97+
}
98+
}
4899
}

src/main/java/edu/ie3/datamodel/io/processor/Processor.java

-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,6 @@ protected String processOperationTime(OperationTime operationTime, String fieldN
391391
operationTime
392392
.getEndDate()
393393
.ifPresent(endDate -> resultStringBuilder.append(processZonedDateTime(endDate)));
394-
395394
return resultStringBuilder.toString();
396395
}
397396

src/main/java/edu/ie3/datamodel/io/processor/ProcessorProvider.java

+13
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,19 @@ Try<LinkedHashMap<String, String>, ProcessorProviderException> handleEntity(T en
7878
.transformF(ProcessorProviderException::new));
7979
}
8080

81+
public <T extends Entity> Set<LinkedHashMap<String, String>> handleEntities(List<T> entities)
82+
throws ProcessorProviderException {
83+
Set<T> setOfEntities = new HashSet<>(entities);
84+
Set<LinkedHashMap<String, String>> setOfMaps = new HashSet<>();
85+
for (T entity : setOfEntities) {
86+
LinkedHashMap<String, String> entryResult = handleEntity(entity).getOrThrow();
87+
88+
/* Prepare the actual result and add them to the set of all results */
89+
setOfMaps.add(new LinkedHashMap<>(entryResult));
90+
}
91+
return setOfMaps;
92+
}
93+
8194
/**
8295
* Get the correct entity processor
8396
*

0 commit comments

Comments
 (0)