/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

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.arquillian.extension.junit.bridge.connector;
  15. import java.io.IOException;
  16. import java.net.InetAddress;
  17. import java.util.Map;
  18. import org.osgi.framework.BundleContext;
  19. import org.osgi.service.component.annotations.Activate;
  20. import org.osgi.service.component.annotations.Component;
  21. import org.osgi.service.component.annotations.Deactivate;
  22. import org.osgi.service.component.annotations.Reference;
  23. import org.osgi.service.log.Logger;
  24. import org.osgi.service.log.LoggerFactory;
  25. /**
  26. * @author Matthew Tambara
  27. */
  28. @Component(
  29. configurationPid = "com.liferay.arquillian.extension.junit.bridge.connector.ArquillianConnectorConfiguration",
  30. immediate = true, service = {}
  31. )
  32. public class ArquillianConnector {
  33. @Activate
  34. protected void activate(
  35. BundleContext bundleContext, Map<String, String> properties) {
  36. int port = _DEFAULT_PORT;
  37. String portString = properties.get("port");
  38. if (portString != null) {
  39. port = Integer.valueOf(portString);
  40. }
  41. Logger logger = _loggerFactory.getLogger(ArquillianConnector.class);
  42. logger.info("Listening on port {}", port);
  43. try {
  44. _arquillianConnectorThread = new ArquillianConnectorThread(
  45. bundleContext, _inetAddress, port, properties.get("passcode"),
  46. logger);
  47. }
  48. catch (IOException ioException) {
  49. logger.error(
  50. "Encountered a problem while using {}:{}. Shutting down now.",
  51. _inetAddress.getHostAddress(), port, ioException);
  52. System.exit(-10);
  53. }
  54. _arquillianConnectorThread.start();
  55. }
  56. @Deactivate
  57. protected void deactivate() throws Exception {
  58. _arquillianConnectorThread.close();
  59. _arquillianConnectorThread.join();
  60. }
  61. private static final int _DEFAULT_PORT = 32763;
  62. private static final InetAddress _inetAddress =
  63. InetAddress.getLoopbackAddress();
  64. private ArquillianConnectorThread _arquillianConnectorThread;
  65. @Reference
  66. private LoggerFactory _loggerFactory;
  67. }