/mycila-testing/tags/2.0-rc1/mycila-testing-plugins/mycila-testing-db/src/main/java/com/mycila/testing/plugin/db/DriverDataSourceImpl.java

http://mycila.googlecode.com/ · Java · 133 lines · 91 code · 21 blank · 21 comment · 10 complexity · fb279544cfbfe4dcdba2a2784e595d60 MD5 · raw file

  1. /**
  2. * Copyright (C) 2008 Mathieu Carbou <mathieu.carbou@gmail.com>
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mycila.testing.plugin.db;
  17. import com.mycila.testing.plugin.db.api.DbDataSource;
  18. import com.mycila.testing.plugin.db.api.DbProp;
  19. import com.mycila.testing.plugin.db.api.Isolation;
  20. import javax.sql.DataSource;
  21. import java.io.PrintWriter;
  22. import java.sql.Connection;
  23. import java.sql.DriverManager;
  24. import java.sql.SQLException;
  25. import java.util.Properties;
  26. /**
  27. * @author Mathieu Carbou (mathieu.carbou@gmail.com)
  28. */
  29. final class DriverDataSourceImpl implements DataSource {
  30. private final String url;
  31. private String username;
  32. private String password;
  33. private Properties connectionProperties = new Properties();
  34. private Isolation defaultIsolation = Isolation.DEFAULT;
  35. private DriverDataSourceImpl(String url) {
  36. this.url = url;
  37. }
  38. private DriverDataSourceImpl withUsername(String username) {
  39. this.username = username;
  40. return this;
  41. }
  42. private DriverDataSourceImpl withPassword(String password) {
  43. this.password = password;
  44. return this;
  45. }
  46. private DriverDataSourceImpl withProperty(String property, Object value) {
  47. connectionProperties.put(property, value);
  48. return this;
  49. }
  50. private DriverDataSourceImpl withDefaultIsolation(Isolation isolation) {
  51. this.defaultIsolation = isolation;
  52. return this;
  53. }
  54. public Connection getConnection() throws SQLException {
  55. return getConnectionFromDriverManager(username, password);
  56. }
  57. public Connection getConnection(String username, String password) throws SQLException {
  58. return getConnectionFromDriverManager(username, password);
  59. }
  60. private Connection getConnectionFromDriverManager(String username, String password) throws SQLException {
  61. if (username != null) {
  62. connectionProperties.setProperty("user", username);
  63. }
  64. if (password != null) {
  65. connectionProperties.setProperty("password", password);
  66. }
  67. Connection connection = DriverManager.getConnection(url, connectionProperties);
  68. if (defaultIsolation != Isolation.DEFAULT && connection.getTransactionIsolation() != defaultIsolation.value()) {
  69. connection.setTransactionIsolation(defaultIsolation.value());
  70. }
  71. return connection;
  72. }
  73. public PrintWriter getLogWriter() throws SQLException {
  74. throw new UnsupportedOperationException("getLogWriter");
  75. }
  76. public void setLogWriter(PrintWriter out) throws SQLException {
  77. throw new UnsupportedOperationException("setLogWriter");
  78. }
  79. public void setLoginTimeout(int seconds) throws SQLException {
  80. throw new UnsupportedOperationException("setLoginTimeout");
  81. }
  82. public int getLoginTimeout() throws SQLException {
  83. return 0;
  84. }
  85. //---------------------------------------------------------------------
  86. // Implementation of JDBC 4.0's Wrapper interface
  87. //---------------------------------------------------------------------
  88. public Object unwrap(Class iface) throws SQLException {
  89. if (!DataSource.class.equals(iface)) {
  90. throw new SQLException("DataSource of type [" + getClass().getName() + "] can only be unwrapped as [javax.sql.DataSource], not as [" + iface.getName());
  91. }
  92. return this;
  93. }
  94. public boolean isWrapperFor(Class iface) throws SQLException {
  95. return DataSource.class.equals(iface);
  96. }
  97. static DriverDataSourceImpl from(DbDataSource driverDataSource) {
  98. try {
  99. Class.forName(driverDataSource.driver().getName());
  100. } catch (ClassNotFoundException e) {
  101. throw new RuntimeException(e.getMessage(), e);
  102. }
  103. DriverDataSourceImpl dataSource = new DriverDataSourceImpl(driverDataSource.url())
  104. .withUsername(driverDataSource.username())
  105. .withPassword(driverDataSource.password())
  106. .withDefaultIsolation(driverDataSource.defaultIsolation());
  107. for (DbProp property : driverDataSource.properties()) {
  108. dataSource.withProperty(property.name(), property.value());
  109. }
  110. return dataSource;
  111. }
  112. }