Menu

[r1537]: / trunk / GoogleContactsSync / Program.cs  Maximize  Restore  History

Download this file

102 lines (90 with data), 3.9 kB

  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
using Serilog;
using Serilog.Events;
using Serilog.Exceptions;
using System;
using System.Globalization;
using System.Net;
using System.Threading;
using System.Windows.Forms;
using static GoContactSyncMod.InMemorySink;
namespace GoContactSyncMod
{
internal static class Program
{
private const string MUTEXGUID = "ACBBBC09-F76C-4874-AAFF-4F3353A5A5A6";
private static Mutex mutex;
private static readonly InMemorySink sink = new InMemorySink();
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
//for very rare setups we could have error:
//"The client and server cannot communicate, because they do not possess a common algorithm"
//see also https://github.com/googleapis/google-api-dotnet-client/issues/911
//so lets add manually option to use TLS 1.2
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
ConfigureLogger();
//prevent more than one instance of the program
if (IsRunning())
{ //Instance already exists, so show only Main-Window
NativeMethods.PostMessage((IntPtr)NativeMethods.HWND_BROADCAST, NativeMethods.WM_GCSM_SHOWME, IntPtr.Zero, IntPtr.Zero);
return;
}
else
{
RegisterEventHandlers();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(SettingsForm.Instance);
}
GC.KeepAlive(mutex);
}
public static void EnableLogHandler(LogHandler log)
{
sink.OnLogReceived += log;
}
public static void DisableLogHandler(LogHandler log)
{
sink.OnLogReceived -= log;
}
private static void ConfigureLogger()
{
var Folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\GoContactSyncMOD\\";
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.WithExceptionDetails()
.WriteTo.Sink(sink, restrictedToMinimumLevel: LogEventLevel.Information)
.WriteTo.File(Folder + "log.txt",
rollingInterval: RollingInterval.Day,
rollOnFileSizeLimit: true,
fileSizeLimitBytes: 10 * 1024 * 1024, //roll file after 10MB
outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss} {Level:u3} {Message:lj}{NewLine}{Exception}")
.CreateLogger();
}
private static void RegisterEventHandlers()
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
}
public static bool IsRunning()
{
mutex = new Mutex(true, MUTEXGUID, out _);
return !mutex.WaitOne(TimeSpan.Zero, true);
}
/// <summary>
/// Fallback. If there is some try/catch missing we will handle it here, just before the application quits unhandled
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
if (e.ExceptionObject is Exception exception)
{
ErrorHandler.Handle(exception);
}
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.