Skip to content

Commit c8bf2f1

Browse files
authored
Merge pull request #2 from spacious-team/develop
Релиз 2024.1
2 parents 4a5c1bd + e074111 commit c8bf2f1

14 files changed

+1176
-24
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Отчет об ошибке
3+
about: Создайте отчет об ошибке, чтобы улучшить приложение
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Опишите ошибку**
11+
Ясное и краткое описание ошибки.
12+
13+
**Последовательность действий для воспроизведения**
14+
Шаги по воспроизведению ошибки.
15+
16+
**Ожидаемый результат**
17+
Ясное и краткое описание того, что вы ожидали.
18+
19+
**Скриншоты**
20+
Если возможно, добавьте скриншоты, чтобы объяснить проблему.
21+
22+
**Окружение:**
23+
- ОС: [например windows 10]
24+
- Версия Java [например 19]
25+
- Версия приложения[например 2020.1]
26+
27+
**Дополнительный контекст**
28+
Любой другой контекст проблемы.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Запрос новой функциональности
3+
about: Предложите идею для этого проекта
4+
title: ''
5+
labels: feature
6+
assignees: ''
7+
8+
---
9+
10+
**Связан ли ваш запрос новой функциональности с проблемой? Пожалуйста, опишите.**
11+
Четкое и краткое описание проблемы. Например, я всегда расстраиваюсь, когда [...]
12+
13+
**Опишите желаемое решение**
14+
Четкое и краткое описание того, что вы хотите сделать.
15+
16+
**Опишите альтернативы, которые вы рассмотрели**
17+
Четкое и краткое описание любых рассмотренных вами альтернативных решений или функций.
18+
19+
**Дополнительный контекст**
20+
Любой другой контекст.

.github/workflows/unit-tests.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Unit Tests
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
branches:
7+
- 'master'
8+
- 'develop'
9+
push:
10+
branches:
11+
- 'master'
12+
- 'develop'
13+
14+
jobs:
15+
tests:
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v3
21+
22+
- name: Set up JDK
23+
uses: actions/setup-java@v3
24+
with:
25+
java-version: '17'
26+
distribution: 'liberica'
27+
cache: maven
28+
29+
- name: Maven Tests
30+
run: mvn --batch-mode clean test
31+
32+
- name: Test Coverage
33+
uses: codecov/[email protected]
34+
env:
35+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
36+
37+
- name: SonarCloud Analyze
38+
run: >
39+
mvn --batch-mode sonar:sonar
40+
-Dsonar.projectKey=spacious-team_table-wrapper-spring-boot-starter
41+
-Dsonar.organization=spacious-team
42+
-Dsonar.host.url=https://sonarcloud.io
43+
-Dsonar.login=$SONAR_TOKEN
44+
-Dsonar.coverage.jacoco.xmlReportPaths=./target/site/jacoco/jacoco.xml
45+
env:
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

README.md

+26-14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
[![spring-boot-version](https://img.shields.io/badge/spring--boot-2.7+-brightgreen?style=flat-square)](https://github.com/spring-projects/spring-boot/releases)
33
[![jitpack-last-release](https://jitpack.io/v/spacious-team/table-wrapper-spring-boot-starter.svg?style=flat-square)](
44
https://jitpack.io/#spacious-team/table-wrapper-api)
5+
[![Unit tests](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fspacious-team%2Ftable-wrapper-spring-boot-starter%2Fbadge%3Fref%3Ddevelop&style=flat-square&label=Test&logo=none)](
6+
https://github.com/spacious-team/table-wrapper-spring-boot-starter/actions/workflows/unit-tests.yml)
7+
[![Coverage](https://img.shields.io/codecov/c/github/spacious-team/table-wrapper-spring-boot-starter/develop?label=Coverage&style=flat-square&token=kqEvgEiKnQ)](
8+
https://codecov.io/gh/spacious-team/table-wrapper-spring-boot-starter)
59

610
### Назначение
711
Позволяет работать с табличным представлением данных в форматах Excel, Xml и Csv через единый интерфейс
@@ -67,7 +71,7 @@ Spring Boot Starter настраивает реализации фабрик `Ex
6771
- короткий десяти значный номер коммита для сборки зависимости с указанного коммита.
6872

6973
### Пример использования
70-
Определяются колонки таблицы вне зависимости от формата файла (excel, xml, csv и др.):
74+
Определяются колонки таблицы:
7175
```java
7276
@lombok.Getter
7377
@lombok.RequiredArgsConstructor
@@ -78,20 +82,28 @@ enum TableHeader implements TableHeaderColumn {
7882
private final TableColumn column;
7983
}
8084
```
81-
Извлекаем данные в описанном формате, например, из Excel файла через Stream API
85+
Извлекаем данные из таблицы с указанными колонками вне зависимости от формата файла (excel, xml, csv и др.):
8286
```java
83-
Workbook book = new XSSFWorkbook(xlsFileinputStream); // открываем Excel файл
84-
ReportPage reportPage = new ExcelSheet(book.getSheetAt(0)); // используем 1-ый лист Excel файла для поиска таблицы
87+
@org.springframework.beans.factory.annotation.Autowired
88+
ReportPageFactory reportPageFactory;
8589

86-
// Регистронезависимо найдет ячейку с текстом "Таблица 1",
87-
// парсит следующую за ней строку как заголовок таблицы,
88-
// оставшиеся строки парсятся как данные до пустой строки или конца файла
89-
Table table = reportPage.create("таблица 1", TableHeader.class); // метод использует бин ExcelTableFactory для создания таблицы
90+
void parse() {
91+
// Получаем страницу с данными. Используем бин ReportPageFactory для построения абстракции
92+
ReportPage reportPage = reportPageFactory.create("1.xlsx");
93+
// ... или reportPageFactory.create("1.xml");
94+
// ... или reportPageFactory.create("1.csv");
9095

91-
// Извлекаем и обрабатываем строки таблицы
92-
table.stream()
93-
.forEach(row -> {
94-
String product = row.getStringCellValue(TableHeader.PRODUCT);
95-
BigDecimal price = getBigDecimalCellValue(TableHeader.PRICE);
96-
});
96+
// Метод найдет ячейку с текстом "Таблица 1",
97+
// воспринимает следующую за ней строку как заголовок таблицы (который описан через enum TableHeader).
98+
// Из последующих строк (до пустой строки или конца файла) извлекаются данные
99+
// (метод использует бин ExcelTableFactory для создания таблицы Table на основе ReportPage)
100+
Table table = reportPage.create("Таблица 1", TableHeader.class);
101+
102+
// Итерируемся по строкам таблицы и извлекаем ячейки из строк по заголовку таблицы
103+
table.stream()
104+
.forEach(row -> {
105+
String product = row.getStringCellValue(TableHeader.PRODUCT);
106+
BigDecimal price = getBigDecimalCellValue(TableHeader.PRICE);
107+
});
108+
}
97109
```

pom.xml

+34-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.spacious-team</groupId>
88
<artifactId>table-wrapper-spring-boot-starter</artifactId>
9-
<version>2023.1</version>
9+
<version>2024.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Spring Boot Starter for Table Wrapper</name>
@@ -30,7 +30,8 @@
3030
<maven.compiler.release>11</maven.compiler.release>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
33-
<spring-boot.version>2.7.10</spring-boot.version>
33+
<spring-boot.version>2.7.18</spring-boot.version>
34+
<lombok.version>1.18.32</lombok.version>
3435
</properties>
3536

3637
<repositories>
@@ -62,7 +63,7 @@
6263
<dependency>
6364
<groupId>com.github.spacious-team</groupId>
6465
<artifactId>table-wrapper-excel-impl</artifactId>
65-
<version>2023.1</version>
66+
<version>2024.1</version>
6667
</dependency>
6768
<dependency>
6869
<groupId>com.github.spacious-team</groupId>
@@ -72,7 +73,7 @@
7273
<dependency>
7374
<groupId>com.github.spacious-team</groupId>
7475
<artifactId>table-wrapper-csv-impl</artifactId>
75-
<version>2023.1</version>
76+
<version>2024.1</version>
7677
</dependency>
7778
<dependency>
7879
<groupId>org.springframework.boot</groupId>
@@ -85,27 +86,52 @@
8586
<version>${spring-boot.version}</version>
8687
<optional>true</optional>
8788
</dependency>
89+
<dependency>
90+
<groupId>org.projectlombok</groupId>
91+
<artifactId>lombok</artifactId>
92+
<version>${lombok.version}</version>
93+
<scope>provided</scope>
94+
<optional>true</optional>
95+
</dependency>
96+
<dependency>
97+
<groupId>org.junit.jupiter</groupId>
98+
<artifactId>junit-jupiter</artifactId>
99+
<version>5.9.2</version>
100+
<scope>test</scope>
101+
</dependency>
102+
<dependency>
103+
<groupId>org.mockito</groupId>
104+
<artifactId>mockito-junit-jupiter</artifactId>
105+
<version>5.2.0</version>
106+
<scope>test</scope>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.springframework.boot</groupId>
110+
<artifactId>spring-boot-starter-test</artifactId>
111+
<version>${spring-boot.version}</version>
112+
<scope>test</scope>
113+
</dependency>
88114
</dependencies>
89115

90116
<build>
91117
<pluginManagement>
92118
<plugins>
93119
<plugin>
94120
<artifactId>maven-surefire-plugin</artifactId>
95-
<version>2.22.2</version> <!-- JUnit 5 requirement -->
121+
<version>3.2.5</version> <!-- JUnit 5 requirement -->
96122
</plugin>
97123
</plugins>
98124
</pluginManagement>
99125
<plugins>
100126
<plugin>
101127
<groupId>org.apache.maven.plugins</groupId>
102128
<artifactId>maven-compiler-plugin</artifactId>
103-
<version>3.10.1</version>
129+
<version>3.13.0</version>
104130
</plugin>
105131
<plugin>
106132
<groupId>org.jacoco</groupId>
107133
<artifactId>jacoco-maven-plugin</artifactId>
108-
<version>0.8.8</version>
134+
<version>0.8.12</version>
109135
<executions>
110136
<execution>
111137
<id>prepare-agent</id>
@@ -125,7 +151,7 @@
125151
<plugin>
126152
<groupId>org.apache.maven.plugins</groupId>
127153
<artifactId>maven-source-plugin</artifactId>
128-
<version>3.2.1</version>
154+
<version>3.3.1</version>
129155
<executions>
130156
<execution>
131157
<id>attach-sources</id>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
* Table Wrapper Spring Boot Starter
3+
* Copyright (C) 2024 Spacious Team <[email protected]>
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Affero General Public License as
7+
* published by the Free Software Foundation, either version 3 of the
8+
* License, or (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU Affero General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Affero General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
package org.spacious_team.table_wrapper.autoconfigure;
20+
21+
import org.spacious_team.table_wrapper.api.ReportPage;
22+
23+
import java.io.InputStream;
24+
import java.nio.file.Path;
25+
import java.util.List;
26+
27+
public interface ContextAwareReportPageFactory extends ReportPageFactory {
28+
29+
/**
30+
* Returns the ReportPage implementation classes that can be instantiated by this factory.
31+
*/
32+
List<Class<? extends ReportPage>> getRegisteredReportPageTypes();
33+
34+
/**
35+
* Register prototype spring bean definition for ReportPage implementation.
36+
* This class instance can subsequently be created using the method {@link #create(Object...)}
37+
*/
38+
void registerBeanDefinition(Class<? extends ReportPage> clazz);
39+
40+
/**
41+
* Chooses ReportPage implementation by its constructor argument types and creates it.
42+
* Use this method if ReportPage should be created with nonstandard configuration.
43+
*
44+
* @throws ReportPageInstantiationException if ReportPage implementations' constructor not found
45+
* or ReportPage instance creation fails
46+
* @see ReportPageFactory#create(Path)
47+
* @see ReportPageFactory#create(InputStream)
48+
*/
49+
ReportPage create(Object... args);
50+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
* Table Wrapper Spring Boot Starter
3+
* Copyright (C) 2024 Spacious Team <[email protected]>
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Affero General Public License as
7+
* published by the Free Software Foundation, either version 3 of the
8+
* License, or (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU Affero General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Affero General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
package org.spacious_team.table_wrapper.autoconfigure;
20+
21+
import lombok.Getter;
22+
import lombok.RequiredArgsConstructor;
23+
import org.spacious_team.table_wrapper.api.ReportPage;
24+
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
25+
import org.springframework.beans.factory.config.BeanDefinition;
26+
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
27+
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
28+
import org.springframework.context.ApplicationContext;
29+
30+
import java.util.List;
31+
import java.util.concurrent.CopyOnWriteArrayList;
32+
33+
import static org.springframework.beans.factory.config.BeanDefinition.SCOPE_PROTOTYPE;
34+
35+
@Getter
36+
@RequiredArgsConstructor
37+
public class DefaultContextAwareReportPageFactory extends DefaultReportPageFactory implements ContextAwareReportPageFactory {
38+
39+
private final List<Class<? extends ReportPage>> registeredReportPageTypes = new CopyOnWriteArrayList<>();
40+
private final ApplicationContext context;
41+
42+
@Override
43+
public void registerBeanDefinition(Class<? extends ReportPage> clazz) {
44+
registeredReportPageTypes.add(clazz);
45+
String beanName = getBeanName(clazz);
46+
BeanDefinition beanDefinition = BeanDefinitionBuilder.rootBeanDefinition(clazz)
47+
.setScope(SCOPE_PROTOTYPE)
48+
.getBeanDefinition();
49+
getBeanDefinitionRegistry()
50+
.registerBeanDefinition(beanName, beanDefinition);
51+
}
52+
53+
private static String getBeanName(Class<?> clazz) {
54+
char[] chars = clazz.getSimpleName().toCharArray();
55+
chars[0] = Character.toLowerCase(chars[0]);
56+
return new String(chars);
57+
}
58+
59+
private BeanDefinitionRegistry getBeanDefinitionRegistry() {
60+
AutowireCapableBeanFactory factory = context.getAutowireCapableBeanFactory();
61+
return (BeanDefinitionRegistry) factory;
62+
}
63+
64+
@Override
65+
public ReportPage create(Object... args) {
66+
for (Class<? extends ReportPage> clazz : registeredReportPageTypes) {
67+
try {
68+
return context.getBean(clazz, args);
69+
} catch (Exception ignore) {
70+
}
71+
}
72+
throw new ReportPageInstantiationException("Can't create ReportPage with arguments: " + List.of(args));
73+
}
74+
}

0 commit comments

Comments
 (0)