/modules/test/arquillian-extension-junit-bridge-connector/src/main/java/com/liferay/arquillian/extension/junit/bridge/connector/ArquillianConnector.java
http://github.com/liferay/liferay-portal · Java · 89 lines · 51 code · 22 blank · 16 comment · 2 complexity · 5dd1b67049534111a75f27c37e1ae997 MD5 · raw file
- /**
- * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
- package com.liferay.arquillian.extension.junit.bridge.connector;
- import java.io.IOException;
- import java.net.InetAddress;
- import java.util.Map;
- import org.osgi.framework.BundleContext;
- import org.osgi.service.component.annotations.Activate;
- import org.osgi.service.component.annotations.Component;
- import org.osgi.service.component.annotations.Deactivate;
- import org.osgi.service.component.annotations.Reference;
- import org.osgi.service.log.Logger;
- import org.osgi.service.log.LoggerFactory;
- /**
- * @author Matthew Tambara
- */
- @Component(
- configurationPid = "com.liferay.arquillian.extension.junit.bridge.connector.ArquillianConnectorConfiguration",
- immediate = true, service = {}
- )
- public class ArquillianConnector {
- @Activate
- protected void activate(
- BundleContext bundleContext, Map<String, String> properties) {
- int port = _DEFAULT_PORT;
- String portString = properties.get("port");
- if (portString != null) {
- port = Integer.valueOf(portString);
- }
- Logger logger = _loggerFactory.getLogger(ArquillianConnector.class);
- logger.info("Listening on port {}", port);
- try {
- _arquillianConnectorThread = new ArquillianConnectorThread(
- bundleContext, _inetAddress, port, properties.get("passcode"),
- logger);
- }
- catch (IOException ioException) {
- logger.error(
- "Encountered a problem while using {}:{}. Shutting down now.",
- _inetAddress.getHostAddress(), port, ioException);
- System.exit(-10);
- }
- _arquillianConnectorThread.start();
- }
- @Deactivate
- protected void deactivate() throws Exception {
- _arquillianConnectorThread.close();
- _arquillianConnectorThread.join();
- }
- private static final int _DEFAULT_PORT = 32763;
- private static final InetAddress _inetAddress =
- InetAddress.getLoopbackAddress();
- private ArquillianConnectorThread _arquillianConnectorThread;
- @Reference
- private LoggerFactory _loggerFactory;
- }