2013-03-07 05:34:00 +00:00
|
|
|
|
using MediaBrowser.Common;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-12-09 02:24:48 +00:00
|
|
|
|
using ServiceStack.Logging;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.HttpServer
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ServerFactory
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class ServerFactory
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the server.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="applicationHost">The application host.</param>
|
2013-04-17 19:16:36 +00:00
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <param name="serverName">Name of the server.</param>
|
2013-12-07 15:52:38 +00:00
|
|
|
|
/// <param name="handlerPath">The handler path.</param>
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <param name="defaultRedirectpath">The default redirectpath.</param>
|
|
|
|
|
/// <returns>IHttpServer.</returns>
|
2013-12-07 15:52:38 +00:00
|
|
|
|
public static IHttpServer CreateServer(IApplicationHost applicationHost, ILogManager logManager, string serverName, string handlerPath, string defaultRedirectpath)
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-12-09 02:24:48 +00:00
|
|
|
|
LogManager.LogFactory = new ServerLogFactory(logManager);
|
|
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
|
return new HttpListenerHost(applicationHost, logManager, serverName, handlerPath, defaultRedirectpath);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|