/data-connector-agent/src/java/com/google/dataconnector/util/ClientGuiceModule.java

http://google-secure-data-connector.googlecode.com/ · Java · 102 lines · 61 code · 13 blank · 28 comment · 2 complexity · 7e119f31bf3c62ab8a9457fedb1b15ed MD5 · raw file

  1. /* Copyright 2008 Google Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. *
  15. * $Id: ClientGuiceModule.java 529 2010-02-26 15:51:36Z raycolline $
  16. */
  17. package com.google.dataconnector.util;
  18. import com.google.dataconnector.protocol.ProtocolGuiceModule;
  19. import com.google.inject.AbstractModule;
  20. import com.google.inject.Guice;
  21. import com.google.inject.Injector;
  22. import com.google.inject.Provides;
  23. import com.google.inject.Singleton;
  24. import com.google.inject.name.Named;
  25. import java.io.ByteArrayInputStream;
  26. import java.io.IOException;
  27. import java.net.Inet4Address;
  28. import java.net.InetAddress;
  29. import java.net.UnknownHostException;
  30. import java.util.Properties;
  31. import java.util.concurrent.SynchronousQueue;
  32. import java.util.concurrent.ThreadPoolExecutor;
  33. import java.util.concurrent.TimeUnit;
  34. import javax.net.SocketFactory;
  35. /**
  36. * Client Guice module.
  37. *
  38. * TODO(rayc) write unit tests for this module.
  39. *
  40. * @author rayc@google.com (Ray Colline)
  41. */
  42. public class ClientGuiceModule extends AbstractModule {
  43. private static final int MAX_THREADS = 500;
  44. private static Injector injector = null;
  45. @Override
  46. protected void configure() {}
  47. public static Injector getInjector() {
  48. if (injector == null) {
  49. injector = Guice.createInjector(new ClientGuiceModule(), new ProtocolGuiceModule());
  50. }
  51. return injector;
  52. }
  53. @Provides @Singleton
  54. public SocketFactory getSocketFactory() {
  55. return SocketFactory.getDefault();
  56. }
  57. @Provides @Singleton
  58. public ThreadPoolExecutor getThreadPoolExecutor() {
  59. return new ThreadPoolExecutor(50, MAX_THREADS, 60L, TimeUnit.SECONDS,
  60. new SynchronousQueue<Runnable>());
  61. }
  62. /**
  63. * Provides the runtime for methods needing to make processes.
  64. *
  65. * @return the VM's runtime.
  66. */
  67. @Provides
  68. public Runtime getRuntime() {
  69. return Runtime.getRuntime();
  70. }
  71. @Provides @Singleton @Named("Socks Properties")
  72. public Properties getSocksProperties(LocalConf localConf) {
  73. final Properties properties = new Properties();
  74. try {
  75. properties.load(new ByteArrayInputStream(localConf.getSocksProperties().trim().getBytes()));
  76. return properties;
  77. } catch (IOException e) {
  78. throw new RuntimeException("Invalid socks properties", e);
  79. }
  80. }
  81. @Provides @Singleton @Named("localhost")
  82. public InetAddress getLocalHostInetAddress() {
  83. try {
  84. return Inet4Address.getByName("127.0.0.1");
  85. } catch (UnknownHostException e) {
  86. throw new RuntimeException("Could not resolve localhost", e);
  87. }
  88. }
  89. }