source: java/installer2/src/net/oni2/aeinstaller/backend/oni/XMLTools.java@ 722

Last change on this file since 722 was 720, checked in by alloc, 12 years ago

AEI2: Looooots of refactorings for breaking out independent features into libraries

File size: 1.6 KB
Line 
1package net.oni2.aeinstaller.backend.oni;
2
3import java.io.File;
4import java.io.IOException;
5import java.util.Vector;
6
7import net.oni2.aeinstaller.backend.CaseInsensitiveFile;
8import net.oni2.aeinstaller.backend.Paths;
9import net.oni2.platformtools.applicationinvoker.ApplicationInvoker;
10import net.oni2.platformtools.applicationinvoker.ApplicationInvocationResult;
11import net.oni2.platformtools.applicationinvoker.EExeType;
12import net.oni2.platformtools.applicationinvoker.ERuntimeNotInstalledException;
13
14/**
15 * @author Christian Illy
16 */
17public 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 */
29 public static ApplicationInvocationResult patch(File patch, File source) {
30 Vector<String> params = new Vector<String>();
31 // xmlTools.exe patchfile -filename:PATCH -forceinfiles:TOPATCH
32 params.add("patchfile");
33 params.add("-filename:" + patch.getPath());
34 params.add("-forceinfiles:" + source.getPath());
35 ApplicationInvocationResult res = null;
36 try {
37 res = ApplicationInvoker.executeAndWait(EExeType.DOTNET, null,
38 getProgramFile(), params);
39 } catch (IOException e) {
40 e.printStackTrace();
41 } catch (ERuntimeNotInstalledException e) {
42 e.printStackTrace();
43 }
44 return res;
45 }
46
47 private static File getProgramFile() {
48 File toolsPath = CaseInsensitiveFile.getCaseInsensitiveFile(
49 Paths.getEditionBasePath(), "Tools");
50 return CaseInsensitiveFile.getCaseInsensitiveFile(toolsPath,
51 "xmlTools.exe");
52 }
53}
Note: See TracBrowser for help on using the repository browser.