[698] | 1 | package net.oni2.aeinstaller.backend.oni;
|
---|
| 2 |
|
---|
| 3 | import java.io.File;
|
---|
| 4 | import java.io.IOException;
|
---|
| 5 | import java.util.Vector;
|
---|
| 6 |
|
---|
[699] | 7 | import net.oni2.aeinstaller.backend.CaseInsensitiveFile;
|
---|
[698] | 8 | import net.oni2.aeinstaller.backend.Paths;
|
---|
[720] | 9 | import net.oni2.platformtools.applicationinvoker.ApplicationInvoker;
|
---|
| 10 | import net.oni2.platformtools.applicationinvoker.ApplicationInvocationResult;
|
---|
| 11 | import net.oni2.platformtools.applicationinvoker.EExeType;
|
---|
| 12 | import net.oni2.platformtools.applicationinvoker.ERuntimeNotInstalledException;
|
---|
[698] | 13 |
|
---|
| 14 | /**
|
---|
| 15 | * @author Christian Illy
|
---|
| 16 | */
|
---|
| 17 | public class XMLTools {
|
---|
| 18 |
|
---|
| 19 | /**
|
---|
| 20 | * Patch the given XML file with the given patch
|
---|
| 21 | *
|
---|
| 22 | * @param patch
|
---|
| 23 | * Patchfile
|
---|
| 24 | * @param source
|
---|
| 25 | * File to patch
|
---|
| 26 | *
|
---|
| 27 | * @return XMLTools output
|
---|
| 28 | */
|
---|
[720] | 29 | public static ApplicationInvocationResult patch(File patch, File source) {
|
---|
| 30 | Vector<String> params = new Vector<String>();
|
---|
[698] | 31 | // xmlTools.exe patchfile -filename:PATCH -forceinfiles:TOPATCH
|
---|
[720] | 32 | params.add("patchfile");
|
---|
| 33 | params.add("-filename:" + patch.getPath());
|
---|
[744] | 34 | if (source != null)
|
---|
| 35 | params.add("-forceinfiles:" + source.getPath());
|
---|
[720] | 36 | ApplicationInvocationResult res = null;
|
---|
[698] | 37 | try {
|
---|
[720] | 38 | res = ApplicationInvoker.executeAndWait(EExeType.DOTNET, null,
|
---|
[767] | 39 | getProgramFile(), params, false);
|
---|
[698] | 40 | } catch (IOException e) {
|
---|
| 41 | e.printStackTrace();
|
---|
[720] | 42 | } catch (ERuntimeNotInstalledException e) {
|
---|
| 43 | e.printStackTrace();
|
---|
[698] | 44 | }
|
---|
| 45 | return res;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | private static File getProgramFile() {
|
---|
[720] | 49 | File toolsPath = CaseInsensitiveFile.getCaseInsensitiveFile(
|
---|
| 50 | Paths.getEditionBasePath(), "Tools");
|
---|
| 51 | return CaseInsensitiveFile.getCaseInsensitiveFile(toolsPath,
|
---|
| 52 | "xmlTools.exe");
|
---|
[698] | 53 | }
|
---|
| 54 | }
|
---|