1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
/*
* Config.cs - Windows Configuration
*
* (C) 2003-2010 Anope Team
* Contact us at team@anope.org
*
* This program is free but copyrighted software; see the file COPYING for
* details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
* Written by Scott <stealtharcher.scott@gmail.com>
* Written by Adam <Adam@anope.org>
*
* Compile with: csc /out:Config.exe Config.cs
*
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
namespace Config
{
class Config
{
static string InstallDirectory;
static bool UseNMake, BuildDebug;
static bool CheckResponse(string InstallerResponse)
{
if (System.String.Compare(InstallerResponse, "yes", true) == 0 || System.String.Compare(InstallerResponse, "y", true) == 0)
return true;
return false;
}
static string FindAnopeVersion()
{
if (!File.Exists(@"src\version.sh"))
return "Unknown";
Dictionary<string, string> versions = new Dictionary<string, string>();
string[] versionfile = File.ReadAllLines(@"src\version.sh");
foreach (string line in versionfile)
{
if (line.StartsWith("VERSION_"))
{
string key = line.Split('_')[1].Split('=')[0];
if (!versions.ContainsKey(key))
{
versions.Add(key, line.Split('=')[1].Replace("\"", "").Replace("\'", ""));
}
}
}
try
{
if (versions.ContainsKey("BUILD"))
return string.Format("{0}.{1}.{2}.{3}{4}", versions["MAJOR"], versions["MINOR"], versions["PATCH"], versions["BUILD"], versions["EXTRA"]);
else
return string.Format("{0}.{1}.{2}{3}", versions["MAJOR"], versions["MINOR"], versions["PATCH"], versions["EXTRA"]);
}
catch (Exception e)
{
Console.WriteLine(e.Message);
return "Unknown";
}
}
static void RunCMake(string cMake)
{
try
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("cmake")
{
RedirectStandardError = true,
RedirectStandardOutput = true,
UseShellExecute = false,
Arguments = cMake
};
Process pCMake = Process.Start(processStartInfo);
StreamReader stdout = pCMake.StandardOutput;
StreamReader stderr = pCMake.StandardError;
string stdoutr, stderrr;
List<string> errors = new List<string>();
while (!pCMake.HasExited)
{
if ((stdoutr = stdout.ReadLine()) != null)
Console.WriteLine(stdoutr);
if ((stderrr = stderr.ReadLine()) != null)
errors.Add(stderrr);
}
foreach (string error in errors)
{
Console.WriteLine(error);
}
Console.WriteLine("");
if (pCMake.ExitCode == 0)
{
if (UseNMake)
Console.WriteLine("To compile Anope, run 'nmake'. To install, run 'nmake install'");
else
Console.WriteLine("To compile Anope, open Anope.sln and build the solution. To install, do a build on the INSTALL project");
}
else
Console.WriteLine("There was an error attempting to run CMake! Check the above error message, and contact the Anope team if you are unsure how to proceed.");
}
catch (Exception e)
{
Console.WriteLine("");
Console.WriteLine(DateTime.UtcNow + " UTC: " + e.Message);
Console.WriteLine("There was an error attempting to run CMake! Check the above error message, and contact the Anope team if you are unsure how to proceed.");
}
}
static int Main()
{
string AnopeVersion = FindAnopeVersion();
if (File.Exists(".BANNER"))
Console.WriteLine(File.ReadAllText(".BANNER").Replace("CURVER", AnopeVersion).Replace("For more options type SOURCE_DIR/Config --help", ""));
Console.WriteLine("Press Enter to begin");
Console.WriteLine("");
Console.ReadKey();
Dictionary<int, string> InstallerQuestions = new Dictionary<int, string>();
InstallerQuestions.Add(0, "Where do you want Anope to be installed?");
InstallerQuestions.Add(1, "Would you like to build using NMake instead of using Visual Studio?\r\nNOTE: If you decide to use NMake, you must be in an environment where\r\nNMake can function, such as the Visual Studio command line. If you say\r\nyes to this while not in an environment that can run NMake, it can\r\ncause the CMake configuration to enter an endless loop. [y/n]");
InstallerQuestions.Add(2, "Would you like to build a debug version of Anope? [y/n]");
for (int i = 0; i < InstallerQuestions.Count; ++i)
{
Console.WriteLine(InstallerQuestions[i]);
string InstallerResponse = Console.ReadLine();
Console.WriteLine("");
if (InstallerResponse == null || InstallerResponse.Length < 1)
{
Console.WriteLine("Invlaid option");
--i;
continue;
}
switch (i)
{
case 0:
if (!Directory.Exists(InstallerResponse))
{
Console.WriteLine("Directory does not exist! Creating directory.");
Console.WriteLine("");
try
{
Directory.CreateDirectory(InstallerResponse);
InstallDirectory = InstallerResponse;
}
catch (Exception e)
{
Console.WriteLine("Unable to create directory: " + e.Message);
--i;
}
}
else if (File.Exists(InstallerResponse + @"\include\services.h"))
{
Console.WriteLine("You cannot use the Anope source directory as the target directory!");
--i;
}
else
InstallDirectory = InstallerResponse;
break;
case 1:
UseNMake = CheckResponse(InstallerResponse);
break;
case 2:
BuildDebug = CheckResponse(InstallerResponse);
break;
default:
break;
}
}
Console.WriteLine("Anope will be compiled with the following options:");
Console.WriteLine("Install directory: {0}", InstallDirectory);
Console.WriteLine("Use NMake: {0}", UseNMake ? "Yes" : "No");
Console.WriteLine("Using Visual Studio 2010: {0}", !UseNMake ? "Yes" : "No");
Console.WriteLine("Build debug: {0}", BuildDebug ? "Yes" : "No");
Console.WriteLine("Anope Version: {0}", AnopeVersion); ;
Console.WriteLine("Press Enter to continue...");
Console.ReadKey();
InstallDirectory = "-DINSTDIR:STRING=\"" + InstallDirectory.Replace('\\', '/') + "\" ";
string NMake = UseNMake ? "-G\"NMake Makefiles\" " : "";
string Debug = BuildDebug ? "-DCMAKE_BUILD_TYPE:STRING=DEBUG " : "-DCMAKE_BUILD_TYPE:STRING=RELEASE ";
string VisualStudio = !UseNMake ? "-G\"Visual Studio 10\" " : "";
string cMake = InstallDirectory + NMake + Debug + VisualStudio + Environment.CurrentDirectory.Replace('\\','/');
RunCMake(cMake);
return 0;
}
}
}
|