-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add actual transformation functionality
Add actual transformation functionality to hale-transformer-api service. SVC-1714
- Loading branch information
1 parent
222f1be
commit 246e8f9
Showing
13 changed files
with
742 additions
and
35 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 |
---|---|---|
|
@@ -43,3 +43,5 @@ out/ | |
*.code-workspace | ||
# Local History for Visual Studio Code | ||
.history/ | ||
.vscode/settings.json | ||
|
28 changes: 28 additions & 0 deletions
28
src/main/java/to/wetransform/hale/transformer/RunContext.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,28 @@ | ||
package to.wetransform.hale.transformer; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.apache.commons.io.FileUtils; | ||
|
||
public class RunContext { | ||
|
||
private final List<Path> tempFiles = new ArrayList<>(); | ||
|
||
public File createTempDir() throws IOException { | ||
Path path = Files.createTempDirectory("hale-transformer"); | ||
tempFiles.add(path); | ||
return path.toFile(); | ||
} | ||
|
||
public void cleanUp() throws IOException { | ||
for (Path path : tempFiles) { | ||
FileUtils.deleteDirectory(path.toFile()); | ||
} | ||
tempFiles.clear(); | ||
} | ||
} |
Oops, something went wrong.