aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/MacAppHost.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Mac/MacAppHost.cs')
-rw-r--r--MediaBrowser.Server.Mac/MacAppHost.cs97
1 files changed, 0 insertions, 97 deletions
diff --git a/MediaBrowser.Server.Mac/MacAppHost.cs b/MediaBrowser.Server.Mac/MacAppHost.cs
deleted file mode 100644
index ddcc33778..000000000
--- a/MediaBrowser.Server.Mac/MacAppHost.cs
+++ /dev/null
@@ -1,97 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Reflection;
-using Emby.Server.Implementations;
-using Emby.Server.Implementations.FFMpeg;
-using MediaBrowser.Model.IO;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.Model.System;
-using Emby.Server.Mac.Native;
-using System.Diagnostics;
-using MediaBrowser.Controller.Connect;
-using Emby.Server.Connect;
-using Emby.Server.Sync;
-using MediaBrowser.Controller.Sync;
-using Emby.Server.CinemaMode;
-
-namespace MediaBrowser.Server.Mac
-{
- public class MacAppHost : ApplicationHost
- {
- public MacAppHost(ServerApplicationPaths applicationPaths, ILogManager logManager, StartupOptions options, IFileSystem fileSystem, IPowerManagement powerManagement, string releaseAssetFilename, IEnvironmentInfo environmentInfo, MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder, ISystemEvents systemEvents, MediaBrowser.Common.Net.INetworkManager networkManager) : base(applicationPaths, logManager, options, fileSystem, powerManagement, releaseAssetFilename, environmentInfo, imageEncoder, systemEvents, networkManager)
- {
- }
-
- public override bool CanSelfRestart
- {
- get
- {
- return true;
- }
- }
-
- public override bool CanSelfUpdate
- {
- get
- {
- return false;
- }
- }
-
- protected override bool SupportsDualModeSockets
- {
- get
- {
- return true;
- }
- }
-
- protected override IConnectManager CreateConnectManager()
- {
- return new ConnectManager();
- }
-
- protected override ISyncManager CreateSyncManager()
- {
- return new SyncManager();
- }
-
- protected override void RestartInternal()
- {
- MainClass.Restart();
- }
-
- protected override List<Assembly> GetAssembliesWithPartsInternal()
- {
- var list = new List<Assembly>();
-
- list.Add(GetType().Assembly);
- list.Add(typeof(DefaultIntroProvider).Assembly);
- list.Add(typeof(ConnectManager).Assembly);
- list.Add(typeof(SyncManager).Assembly);
-
-
- return list;
- }
-
- protected override void ShutdownInternal()
- {
- MainClass.Shutdown();
- }
-
- protected override void AuthorizeServer()
- {
- throw new NotImplementedException();
- }
-
- protected override void ConfigureAutoRunInternal(bool autorun)
- {
- throw new NotImplementedException();
- }
-
- public override bool SupportsAutoRunAtStartup
- {
- get { return false; }
- }
- }
-}