~reviczky/+junk/gtksharp

« back to all changes in this revision

Viewing changes to msi/unmanaged/redirector.cs

  • Committer: Adam Reviczky
  • Date: 2014-07-08 22:53:28 UTC
  • Revision ID: adam.reviczky@kclalumni.net-20140708225328-kt03dwtjwif21k3r
July 05, 2014 (7ea0c4afaf)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Redirector.cs - launches a program and sends its output to a file.
 
2
//
 
3
// Author: Mike Kestner <mkestner@speakeasy.net>
 
4
//
 
5
// Copyright (c) 2009 Novell, Inc.
 
6
//
 
7
// Permission is hereby granted, free of charge, to any person obtaining
 
8
// a copy of this software and associated documentation files (the
 
9
// "Software"), to deal in the Software without restriction, including
 
10
// without limitation the rights to use, copy, modify, merge, publish,
 
11
// distribute, sublicense, and/or sell copies of the Software, and to
 
12
// permit persons to whom the Software is furnished to do so, subject to
 
13
// the following conditions:
 
14
// 
 
15
// The above copyright notice and this permission notice shall be
 
16
// included in all copies or substantial portions of the Software.
 
17
// 
 
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
19
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
20
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
21
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
22
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
23
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
24
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
25
 
 
26
 
 
27
namespace GtkSharpInstaller {
 
28
 
 
29
        using System;
 
30
        using System.IO;
 
31
        using System.Diagnostics;
 
32
 
 
33
        public class Redirector  {
 
34
 
 
35
                public static int Main (string[] args)
 
36
                {
 
37
                        if (args.Length != 2) {
 
38
                                Console.Error.WriteLine ("Usage: redirector.exe <program> <file>");
 
39
                                return 1;
 
40
                        }
 
41
 
 
42
                        var outfile = new FileInfo (args [1]);
 
43
                        outfile.Directory.Create ();
 
44
 
 
45
                        ProcessStartInfo info = new ProcessStartInfo (args [0]);
 
46
                        info.RedirectStandardOutput = true;
 
47
                        info.UseShellExecute = false;
 
48
                        Process proc = Process.Start (info);
 
49
                        StreamWriter sw = new StreamWriter (outfile.Create ());
 
50
                        sw.WriteLine (proc.StandardOutput.ReadToEnd ());
 
51
                        sw.Close ();
 
52
                        return 0;
 
53
                }
 
54
        }
 
55
}
 
56