-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,242 additions
and
53 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
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,148 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace Apache.Ignite | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Configuration; | ||
using System.Diagnostics.CodeAnalysis; | ||
using System.Linq; | ||
using System.Threading; | ||
using Apache.Ignite.Config; | ||
using Apache.Ignite.Core; | ||
using Apache.Ignite.Service; | ||
|
||
/// <summary> | ||
/// Runner class. | ||
/// </summary> | ||
public static class IgniteRunner | ||
{ | ||
/** Help commands. */ | ||
private static readonly IList<string> Help = new List<string> { "/help", "-help", "--help" }; | ||
|
||
/** Argument meaning that this is service call. */ | ||
public const string Svc = "/service"; | ||
|
||
/** Service install command. */ | ||
public const string SvcInstall = "/install"; | ||
|
||
/** Service uninstall command. */ | ||
public const string SvcUninstall = "/uninstall"; | ||
|
||
/// <summary> | ||
/// Application entry point. | ||
/// </summary> | ||
[SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase", Justification = "Reviewed")] | ||
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", | ||
Justification = "Main method catches all exceptions to report them.")] | ||
internal static void Main(string[] args) | ||
{ | ||
bool svc = false; | ||
bool install = false; | ||
|
||
try | ||
{ | ||
// Check for special cases. | ||
if (args.Length > 0) | ||
{ | ||
string first = args[0].ToLowerInvariant(); | ||
|
||
if (Help.Contains(first)) | ||
{ | ||
ConsoleUtils.PrintHelp("Apache.Ignite.exe", true); | ||
|
||
return; | ||
} | ||
|
||
if (Svc.Equals(first, StringComparison.Ordinal)) | ||
{ | ||
args = RemoveFirstArg(args); | ||
|
||
svc = true; | ||
} | ||
|
||
else if (SvcInstall.Equals(first, StringComparison.Ordinal)) | ||
{ | ||
args = RemoveFirstArg(args); | ||
|
||
install = true; | ||
} | ||
else if (SvcUninstall.Equals(first, StringComparison.Ordinal)) | ||
{ | ||
IgniteService.Uninstall(); | ||
|
||
return; | ||
} | ||
} | ||
|
||
if (!svc) | ||
{ | ||
// Pick application configuration first, command line arguments second. | ||
var allArgs = AppSettingsConfigurator.GetArgs(ConfigurationManager.AppSettings) | ||
.Concat(ArgsConfigurator.GetArgs(args)) | ||
.ToArray(); | ||
|
||
if (install) | ||
IgniteService.DoInstall(allArgs); | ||
else | ||
{ | ||
// Load assemblies before instantiating IgniteConfiguration, | ||
// it can reference types from those assemblies. | ||
allArgs = allArgs.LoadAssemblies().ToArray(); | ||
|
||
using (var ignite = Ignition.Start(Configurator.GetConfiguration(allArgs))) | ||
{ | ||
// Wait until stopped. | ||
using (var evt = new ManualResetEventSlim(false)) | ||
{ | ||
// ReSharper disable AccessToDisposedClosure | ||
ignite.Stopped += (s, a) => evt.Set(); | ||
Console.CancelKeyPress += (s, a) => evt.Set(); | ||
evt.Wait(); | ||
// ReSharper restore AccessToDisposedClosure | ||
} | ||
} | ||
} | ||
|
||
return; | ||
} | ||
} | ||
catch (Exception e) | ||
{ | ||
Console.WriteLine("ERROR: " + e); | ||
|
||
Environment.Exit(-1); | ||
} | ||
|
||
// If we are here, then this is a service call. | ||
// Use only arguments, not app.config. | ||
var cfg = Configurator.GetConfiguration(ArgsConfigurator.GetArgs(args).ToArray()); | ||
IgniteService.Run(cfg); | ||
} | ||
|
||
/// <summary> | ||
/// Remove the first argument. | ||
/// </summary> | ||
/// <param name="args">Arguments.</param> | ||
/// <returns>New arguments.</returns> | ||
private static string[] RemoveFirstArg(string[] args) | ||
{ | ||
return args.Skip(1).ToArray(); | ||
} | ||
} | ||
} |
Oops, something went wrong.