| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- using System;
- using System.IO;
- using System.Linq;
- using UnityEngine;
- using Codice.Client.BaseCommands;
- using Codice.Client.Common;
- using Codice.Client.Common.FsNodeReaders;
- using Codice.Client.Common.Threading;
- using Codice.CM.Common;
- using Codice.CM.ConfigureHelper;
- using Codice.LogWrapper;
- using Codice.Utils;
- using PlasticGui;
- using PlasticPipe.Certificates;
- using Unity.PlasticSCM.Editor.Configuration;
- using Unity.PlasticSCM.Editor.UI;
- using MacUI;
- namespace Unity.PlasticSCM.Editor
- {
- internal static class PlasticApp
- {
- internal static void InitializeIfNeeded()
- {
- if (mIsInitialized)
- return;
- ConfigureLogging();
- RegisterExceptionHandlers();
- InitLocalization();
- ThreadWaiter.Initialize(new UnityThreadWaiterBuilder());
- ServicePointConfigurator.ConfigureServicePoint();
- CertificateUi.RegisterHandler(new ChannelCertificateUiImpl());
- SetupFsWatcher();
- EditionManager.Get().DisableCapability(
- EnumEditionCapabilities.Extensions);
- ClientHandlers.Register();
- PlasticGuiConfig.SetConfigFile(
- PlasticGuiConfig.UNITY_GUI_CONFIG_FILE);
- mIsInitialized = true;
- }
- internal static void Dispose()
- {
- UnRegisterExceptionHandlers();
- }
- static void InitLocalization()
- {
- string language = null;
- try
- {
- language = ClientConfig.Get().GetLanguage();
- }
- catch
- {
- language = string.Empty;
- }
- Localization.Init(language);
- PlasticLocalization.SetLanguage(language);
- }
- static void ConfigureLogging()
- {
- try
- {
- string log4netpath = ToolConfig.GetUnityPlasticLogConfigFile();
- if (!File.Exists(log4netpath))
- WriteLogConfiguration.For(log4netpath);
- XmlConfigurator.Configure(new FileInfo(log4netpath));
- }
- catch
- {
- //it failed configuring the logging info; nothing to do.
- }
- }
- static void RegisterExceptionHandlers()
- {
- AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException;
- Application.logMessageReceivedThreaded += HandleLog;
- }
- static void UnRegisterExceptionHandlers()
- {
- AppDomain.CurrentDomain.UnhandledException -= HandleUnhandledException;
- Application.logMessageReceivedThreaded -= HandleLog;
- }
- static void HandleUnhandledException(object sender, UnhandledExceptionEventArgs args)
- {
- Exception ex = (Exception)args.ExceptionObject;
- if (IsExitGUIException(ex) ||
- !IsPlasticStackTrace(ex.StackTrace))
- return;
- GUIActionRunner.RunGUIAction(delegate {
- ExceptionsHandler.HandleException("HandleUnhandledException", ex);
- });
- }
- static void HandleLog(string logString, string stackTrace, LogType type)
- {
- if (type != LogType.Exception)
- return;
- if (!IsPlasticStackTrace(stackTrace))
- return;
- GUIActionRunner.RunGUIAction(delegate {
- mLog.ErrorFormat("[HandleLog] Unexpected error: {0}", logString);
- mLog.DebugFormat("Stack trace: {0}", stackTrace);
- string message = logString;
- if (ExceptionsHandler.DumpStackTrace())
- message += Environment.NewLine + stackTrace;
- GuiMessage.ShowError(message);
- });
- }
- static void SetupFsWatcher()
- {
- if (!PlatformIdentifier.IsMac())
- return;
- WorkspaceWatcherFsNodeReadersCache.Get().SetMacFsWatcherBuilder(
- new MacFsWatcherBuilder());
- }
- static bool IsPlasticStackTrace(string stackTrace)
- {
- if (stackTrace == null)
- return false;
- string[] namespaces = new[] {
- "Codice.",
- "GluonGui.",
- "PlasticGui."
- };
- return namespaces.Any(stackTrace.Contains);
- }
- static bool IsExitGUIException(Exception ex)
- {
- return ex is ExitGUIException;
- }
- static bool mIsInitialized;
- static readonly ILog mLog = LogManager.GetLogger("PlasticApp");
- }
- }
|