/* * Copyright (c) 2006-2015 DMDirc Developers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.dmdirc; import com.dmdirc.commandparser.parsers.ServerCommandParser; import com.dmdirc.config.profiles.Profile; import com.dmdirc.interfaces.CommandController; import com.dmdirc.interfaces.config.ConfigProvider; import com.dmdirc.interfaces.config.ConfigProviderMigrator; import com.dmdirc.interfaces.config.IdentityFactory; import com.dmdirc.ui.input.TabCompleterFactory; import com.dmdirc.ui.messages.BackBufferFactory; import java.net.URI; import java.util.concurrent.ScheduledExecutorService; import javax.inject.Inject; import javax.inject.Provider; import javax.inject.Singleton; /** * Factory for {@link Server}s */ @Singleton public class ServerFactoryImpl { private final ParserFactory parserFactory; private final TabCompleterFactory tabCompleterFactory; private final IdentityFactory identityFactory; private final Provider queryFactory; private final Provider commandController; private final DMDircMBassador eventBus; private final MessageEncoderFactory messageEncoderFactory; private final ConfigProvider userSettings; private final BackBufferFactory backBufferFactory; private final GroupChatManagerImplFactory groupChatManagerFactory; private final UserManager userManager; @Inject public ServerFactoryImpl( final ParserFactory parserFactory, final TabCompleterFactory tabCompleterFactory, final IdentityFactory identityFactory, final Provider queryFactory, final Provider commandController, final DMDircMBassador eventBus, final MessageEncoderFactory messageEncoderFactory, @ClientModule.UserConfig final ConfigProvider userSettings, final BackBufferFactory backBufferFactory, final GroupChatManagerImplFactory groupChatManagerFactory, final UserManager userManager) { this.parserFactory = parserFactory; this.tabCompleterFactory = tabCompleterFactory; this.identityFactory = identityFactory; this.queryFactory = queryFactory; this.commandController = commandController; this.eventBus = eventBus; this.messageEncoderFactory = messageEncoderFactory; this.userSettings = userSettings; this.backBufferFactory = backBufferFactory; this.groupChatManagerFactory = groupChatManagerFactory; this.userManager = userManager; } public Server getServer( final ConfigProviderMigrator configMigrator, final ScheduledExecutorService executorService, final URI uri, final Profile profile) { final Server server = new Server(configMigrator, parserFactory, tabCompleterFactory, identityFactory, queryFactory.get(), eventBus, messageEncoderFactory, userSettings, groupChatManagerFactory, executorService, uri, profile, backBufferFactory, userManager); server.setCommandParser(new ServerCommandParser(server.getConfigManager(), commandController.get(), eventBus, server)); return server; } }