-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ayoub LABIDI <[email protected]>
- Loading branch information
Showing
168 changed files
with
16,919 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- 'v[0-9]*' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Checkout sources | ||
uses: actions/checkout@v1 | ||
|
||
- name: Build with Maven | ||
run: mvn --batch-mode -P jacoco verify | ||
|
||
- name: Run SonarCloud analysis | ||
run: > | ||
mvn --batch-mode sonar:sonar | ||
-Dsonar.host.url=https://sonarcloud.io | ||
-Dsonar.organization=gridsuite | ||
-Dsonar.projectKey=org.gridsuite:network-modification | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
|
||
- name: Broadcast update event | ||
if: github.ref == 'refs/heads/main' | ||
uses: gridsuite/broadcast-event@main | ||
with: | ||
token: ${{ secrets.REPO_ACCESS_TOKEN }} | ||
event-type: filter_updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# VSCode | ||
/.vscode | ||
/.settings | ||
.classpath | ||
.factorypath | ||
.project | ||
|
||
target/ | ||
|
||
# IntelliJ | ||
/.idea | ||
*.iml | ||
|
||
derby.log |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import target/configs/powsybl-build-tools.jar!powsybl-build-tools/lombok.config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,273 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2024, RTE (http://www.rte-france.com) | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
--> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-parent</artifactId> | ||
<version>18</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
<groupId>org.gridsuite</groupId> | ||
<artifactId>gridsuite-network-modification</artifactId> | ||
<version>1.1.0-SNAPSHOT</version> | ||
|
||
<packaging>jar</packaging> | ||
<name>Network modification library</name> | ||
<description>A library to apply modifications on a network</description> | ||
<url>http://www.gridsuite.org/</url> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/gridsuite/network-modification.git</connection> | ||
<developerConnection>scm:git:https://github.com/gridsuite/network-modification.git</developerConnection> | ||
<url>https://github.com/gridsuite/network-modification</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Ayoub LABIDI</name> | ||
<email>[email protected]</email> | ||
<organization>RTE</organization> | ||
<organizationUrl>http://www.rte-france.com</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<gridsuite-dependencies.version>34</gridsuite-dependencies.version> | ||
<db-util.version>1.0.5</db-util.version> | ||
<mockwebserver3.version>5.0.0-alpha.14</mockwebserver3.version> | ||
<liquibase-hibernate-package>org.gridsuite.modification.server</liquibase-hibernate-package> | ||
<!-- FIXME: powsybl-network-store modules'version is overloaded in the dependencies section.The overloads and this property below have to be removed at next powsybl-ws-dependencies.version upgrade --> | ||
<powsybl-network-store.version>1.19.0</powsybl-network-store.version> | ||
<sonar.coverage.exclusions>**/migration/**/*</sonar.coverage.exclusions> | ||
<!-- FIXME: gridsuite-filter modules' version is overloaded in the dependencies section. | ||
The overloads and this property below have to be removed at next gridsuite-dependencies.version upgrade --> | ||
<filter.version>1.0.14</filter.version> | ||
</properties> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<classpathDependencyExcludes> | ||
<classpathDependencyExclude>com.powsybl:powsybl-config-classic</classpathDependencyExclude> | ||
</classpathDependencyExcludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>io.github.git-commit-id</groupId> | ||
<artifactId>git-commit-id-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<!-- overrides of imports --> | ||
<dependency><!-- To remove when integrate in next release of gridsuite-dependencies or powsybl-ws-dependencies --> | ||
<groupId>com.squareup.okhttp3</groupId> | ||
<artifactId>okhttp-bom</artifactId> | ||
<version>${mockwebserver3.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-network-store-client</artifactId> | ||
<!-- FIXME: to be removed at next powsybl-ws-dependencies upgrade --> | ||
<version>${powsybl-network-store.version}</version> | ||
</dependency> | ||
<!-- FIXME: to be removed at next powsybl-ws-dependencies upgrade --> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-network-store-iidm-impl</artifactId> | ||
<version>${powsybl-network-store.version}</version> | ||
</dependency> | ||
<!-- FIXME: to be removed at next powsybl-ws-dependencies upgrade --> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-network-store-model</artifactId> | ||
<version>${powsybl-network-store.version}</version> | ||
</dependency> | ||
|
||
<!-- imports --> | ||
<dependency> | ||
<groupId>org.gridsuite</groupId> | ||
<artifactId>gridsuite-dependencies</artifactId> | ||
<version>${gridsuite-dependencies.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
|
||
<!-- project specific dependencies --> | ||
<dependency> | ||
<groupId>com.vladmihalcea</groupId> | ||
<artifactId>db-util</artifactId> | ||
<version>${db-util.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<!-- Compilation dependencies --> | ||
<dependency> | ||
<groupId>org.gridsuite</groupId> | ||
<artifactId>gridsuite-filter</artifactId> | ||
<version>${filter.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-iidm-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-iidm-modification</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-network-store-client</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-ws-commons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springdoc</groupId> | ||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.groovy</groupId> | ||
<artifactId>groovy</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-stream</artifactId> | ||
</dependency> | ||
|
||
<!-- elasticsearch --> | ||
<dependency> | ||
<groupId>org.springframework.data</groupId> | ||
<artifactId>spring-data-elasticsearch</artifactId> | ||
</dependency> | ||
|
||
<!-- Runtime dependencies --> | ||
|
||
<!-- <dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-config-classic</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> --> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micrometer</groupId> | ||
<artifactId>micrometer-registry-prometheus</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.liquibase</groupId> | ||
<artifactId>liquibase-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-stream-binder-rabbit</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-config-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-guava</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vladmihalcea</groupId> | ||
<artifactId>db-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>junit-jupiter</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>elasticsearch</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.squareup.okhttp3</groupId> | ||
<artifactId>mockwebserver3-junit5</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-stream-test-binder</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wiremock</groupId> | ||
<artifactId>wiremock-jetty12</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
19 changes: 19 additions & 0 deletions
19
src/main/java/org/gridsuite/modification/IFilterService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.gridsuite.modification; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
import java.util.stream.Stream; | ||
|
||
import org.gridsuite.filter.AbstractFilter; | ||
import org.gridsuite.modification.dto.FilterEquipments; | ||
|
||
import com.powsybl.iidm.network.Network; | ||
|
||
public interface IFilterService { | ||
List<AbstractFilter> getFilters(List<UUID> filtersUuids); | ||
|
||
Stream<org.gridsuite.filter.identifierlistfilter.FilterEquipments> exportFilters(List<UUID> filtersUuids, Network network); | ||
|
||
Map<UUID, FilterEquipments> getUuidFilterEquipmentsMap(Network network, Map<UUID, String> filters); | ||
} |
Oops, something went wrong.