activerecord-jdbc-alt-adapter 50.3.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.travis.yml +100 -0
  4. data/.yardopts +4 -0
  5. data/CONTRIBUTING.md +50 -0
  6. data/Gemfile +92 -0
  7. data/History.md +1191 -0
  8. data/LICENSE.txt +26 -0
  9. data/README.md +240 -0
  10. data/RUNNING_TESTS.md +127 -0
  11. data/Rakefile +336 -0
  12. data/Rakefile.jdbc +20 -0
  13. data/activerecord-jdbc-adapter.gemspec +55 -0
  14. data/activerecord-jdbc-alt-adapter.gemspec +56 -0
  15. data/lib/active_record/connection_adapters/as400_adapter.rb +2 -0
  16. data/lib/active_record/connection_adapters/db2_adapter.rb +1 -0
  17. data/lib/active_record/connection_adapters/derby_adapter.rb +1 -0
  18. data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
  19. data/lib/active_record/connection_adapters/h2_adapter.rb +1 -0
  20. data/lib/active_record/connection_adapters/hsqldb_adapter.rb +1 -0
  21. data/lib/active_record/connection_adapters/informix_adapter.rb +1 -0
  22. data/lib/active_record/connection_adapters/jdbc_adapter.rb +1 -0
  23. data/lib/active_record/connection_adapters/jndi_adapter.rb +1 -0
  24. data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
  25. data/lib/active_record/connection_adapters/mssql_adapter.rb +1 -0
  26. data/lib/active_record/connection_adapters/mysql2_adapter.rb +1 -0
  27. data/lib/active_record/connection_adapters/mysql_adapter.rb +1 -0
  28. data/lib/active_record/connection_adapters/postgresql_adapter.rb +1 -0
  29. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +1 -0
  30. data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
  31. data/lib/activerecord-jdbc-adapter.rb +1 -0
  32. data/lib/arel/visitors/compat.rb +60 -0
  33. data/lib/arel/visitors/db2.rb +137 -0
  34. data/lib/arel/visitors/derby.rb +112 -0
  35. data/lib/arel/visitors/firebird.rb +79 -0
  36. data/lib/arel/visitors/h2.rb +25 -0
  37. data/lib/arel/visitors/hsqldb.rb +32 -0
  38. data/lib/arel/visitors/postgresql_jdbc.rb +6 -0
  39. data/lib/arel/visitors/sql_server.rb +225 -0
  40. data/lib/arel/visitors/sql_server/ng42.rb +294 -0
  41. data/lib/arel/visitors/sqlserver.rb +214 -0
  42. data/lib/arjdbc.rb +19 -0
  43. data/lib/arjdbc/abstract/connection_management.rb +35 -0
  44. data/lib/arjdbc/abstract/core.rb +74 -0
  45. data/lib/arjdbc/abstract/database_statements.rb +64 -0
  46. data/lib/arjdbc/abstract/statement_cache.rb +58 -0
  47. data/lib/arjdbc/abstract/transaction_support.rb +86 -0
  48. data/lib/arjdbc/db2.rb +4 -0
  49. data/lib/arjdbc/db2/adapter.rb +789 -0
  50. data/lib/arjdbc/db2/as400.rb +130 -0
  51. data/lib/arjdbc/db2/column.rb +167 -0
  52. data/lib/arjdbc/db2/connection_methods.rb +44 -0
  53. data/lib/arjdbc/derby.rb +3 -0
  54. data/lib/arjdbc/derby/active_record_patch.rb +13 -0
  55. data/lib/arjdbc/derby/adapter.rb +540 -0
  56. data/lib/arjdbc/derby/connection_methods.rb +20 -0
  57. data/lib/arjdbc/derby/schema_creation.rb +15 -0
  58. data/lib/arjdbc/discover.rb +104 -0
  59. data/lib/arjdbc/firebird.rb +4 -0
  60. data/lib/arjdbc/firebird/adapter.rb +434 -0
  61. data/lib/arjdbc/firebird/connection_methods.rb +23 -0
  62. data/lib/arjdbc/h2.rb +3 -0
  63. data/lib/arjdbc/h2/adapter.rb +303 -0
  64. data/lib/arjdbc/h2/connection_methods.rb +27 -0
  65. data/lib/arjdbc/hsqldb.rb +3 -0
  66. data/lib/arjdbc/hsqldb/adapter.rb +297 -0
  67. data/lib/arjdbc/hsqldb/connection_methods.rb +28 -0
  68. data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
  69. data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
  70. data/lib/arjdbc/informix.rb +5 -0
  71. data/lib/arjdbc/informix/adapter.rb +162 -0
  72. data/lib/arjdbc/informix/connection_methods.rb +9 -0
  73. data/lib/arjdbc/jdbc.rb +59 -0
  74. data/lib/arjdbc/jdbc/adapter.rb +475 -0
  75. data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
  76. data/lib/arjdbc/jdbc/base_ext.rb +15 -0
  77. data/lib/arjdbc/jdbc/callbacks.rb +53 -0
  78. data/lib/arjdbc/jdbc/column.rb +97 -0
  79. data/lib/arjdbc/jdbc/connection.rb +14 -0
  80. data/lib/arjdbc/jdbc/connection_methods.rb +37 -0
  81. data/lib/arjdbc/jdbc/error.rb +65 -0
  82. data/lib/arjdbc/jdbc/extension.rb +59 -0
  83. data/lib/arjdbc/jdbc/java.rb +13 -0
  84. data/lib/arjdbc/jdbc/railtie.rb +2 -0
  85. data/lib/arjdbc/jdbc/rake_tasks.rb +3 -0
  86. data/lib/arjdbc/jdbc/serialized_attributes_helper.rb +3 -0
  87. data/lib/arjdbc/jdbc/type_cast.rb +166 -0
  88. data/lib/arjdbc/jdbc/type_converter.rb +142 -0
  89. data/lib/arjdbc/mssql.rb +7 -0
  90. data/lib/arjdbc/mssql/adapter.rb +384 -0
  91. data/lib/arjdbc/mssql/column.rb +29 -0
  92. data/lib/arjdbc/mssql/connection_methods.rb +79 -0
  93. data/lib/arjdbc/mssql/database_statements.rb +134 -0
  94. data/lib/arjdbc/mssql/errors.rb +6 -0
  95. data/lib/arjdbc/mssql/explain_support.rb +129 -0
  96. data/lib/arjdbc/mssql/extensions.rb +36 -0
  97. data/lib/arjdbc/mssql/limit_helpers.rb +231 -0
  98. data/lib/arjdbc/mssql/lock_methods.rb +77 -0
  99. data/lib/arjdbc/mssql/old_adapter.rb +804 -0
  100. data/lib/arjdbc/mssql/old_column.rb +200 -0
  101. data/lib/arjdbc/mssql/quoting.rb +101 -0
  102. data/lib/arjdbc/mssql/schema_creation.rb +31 -0
  103. data/lib/arjdbc/mssql/schema_definitions.rb +74 -0
  104. data/lib/arjdbc/mssql/schema_statements.rb +329 -0
  105. data/lib/arjdbc/mssql/transaction.rb +69 -0
  106. data/lib/arjdbc/mssql/types.rb +52 -0
  107. data/lib/arjdbc/mssql/types/binary_types.rb +33 -0
  108. data/lib/arjdbc/mssql/types/date_and_time_types.rb +134 -0
  109. data/lib/arjdbc/mssql/types/deprecated_types.rb +40 -0
  110. data/lib/arjdbc/mssql/types/numeric_types.rb +71 -0
  111. data/lib/arjdbc/mssql/types/string_types.rb +56 -0
  112. data/lib/arjdbc/mssql/utils.rb +66 -0
  113. data/lib/arjdbc/mysql.rb +3 -0
  114. data/lib/arjdbc/mysql/adapter.rb +140 -0
  115. data/lib/arjdbc/mysql/connection_methods.rb +166 -0
  116. data/lib/arjdbc/oracle/adapter.rb +863 -0
  117. data/lib/arjdbc/postgresql.rb +3 -0
  118. data/lib/arjdbc/postgresql/adapter.rb +687 -0
  119. data/lib/arjdbc/postgresql/base/array_decoder.rb +26 -0
  120. data/lib/arjdbc/postgresql/base/array_encoder.rb +25 -0
  121. data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
  122. data/lib/arjdbc/postgresql/base/pgconn.rb +11 -0
  123. data/lib/arjdbc/postgresql/column.rb +51 -0
  124. data/lib/arjdbc/postgresql/connection_methods.rb +67 -0
  125. data/lib/arjdbc/postgresql/name.rb +24 -0
  126. data/lib/arjdbc/postgresql/oid_types.rb +266 -0
  127. data/lib/arjdbc/railtie.rb +11 -0
  128. data/lib/arjdbc/sqlite3.rb +3 -0
  129. data/lib/arjdbc/sqlite3/adapter.rb +678 -0
  130. data/lib/arjdbc/sqlite3/connection_methods.rb +59 -0
  131. data/lib/arjdbc/sybase.rb +2 -0
  132. data/lib/arjdbc/sybase/adapter.rb +47 -0
  133. data/lib/arjdbc/tasks.rb +13 -0
  134. data/lib/arjdbc/tasks/database_tasks.rb +31 -0
  135. data/lib/arjdbc/tasks/databases.rake +48 -0
  136. data/lib/arjdbc/tasks/db2_database_tasks.rb +104 -0
  137. data/lib/arjdbc/tasks/derby_database_tasks.rb +95 -0
  138. data/lib/arjdbc/tasks/h2_database_tasks.rb +31 -0
  139. data/lib/arjdbc/tasks/hsqldb_database_tasks.rb +70 -0
  140. data/lib/arjdbc/tasks/jdbc_database_tasks.rb +169 -0
  141. data/lib/arjdbc/tasks/mssql_database_tasks.rb +46 -0
  142. data/lib/arjdbc/util/quoted_cache.rb +60 -0
  143. data/lib/arjdbc/util/serialized_attributes.rb +98 -0
  144. data/lib/arjdbc/util/table_copier.rb +110 -0
  145. data/lib/arjdbc/version.rb +3 -0
  146. data/lib/generators/jdbc/USAGE +9 -0
  147. data/lib/generators/jdbc/jdbc_generator.rb +17 -0
  148. data/lib/jdbc_adapter.rb +2 -0
  149. data/lib/jdbc_adapter/rake_tasks.rb +4 -0
  150. data/lib/jdbc_adapter/version.rb +4 -0
  151. data/pom.xml +114 -0
  152. data/rails_generators/jdbc_generator.rb +15 -0
  153. data/rails_generators/templates/config/initializers/jdbc.rb +10 -0
  154. data/rails_generators/templates/lib/tasks/jdbc.rake +11 -0
  155. data/rakelib/01-tomcat.rake +51 -0
  156. data/rakelib/02-test.rake +132 -0
  157. data/rakelib/bundler_ext.rb +11 -0
  158. data/rakelib/db.rake +75 -0
  159. data/rakelib/rails.rake +223 -0
  160. data/src/java/arjdbc/ArJdbcModule.java +276 -0
  161. data/src/java/arjdbc/db2/DB2Module.java +76 -0
  162. data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +126 -0
  163. data/src/java/arjdbc/derby/DerbyModule.java +178 -0
  164. data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +152 -0
  165. data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +174 -0
  166. data/src/java/arjdbc/h2/H2Module.java +50 -0
  167. data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +85 -0
  168. data/src/java/arjdbc/hsqldb/HSQLDBModule.java +73 -0
  169. data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +75 -0
  170. data/src/java/arjdbc/jdbc/AdapterJavaService.java +43 -0
  171. data/src/java/arjdbc/jdbc/Callable.java +44 -0
  172. data/src/java/arjdbc/jdbc/ConnectionFactory.java +45 -0
  173. data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +156 -0
  174. data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
  175. data/src/java/arjdbc/jdbc/DriverWrapper.java +119 -0
  176. data/src/java/arjdbc/jdbc/JdbcResult.java +130 -0
  177. data/src/java/arjdbc/jdbc/RubyConnectionFactory.java +61 -0
  178. data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +3979 -0
  179. data/src/java/arjdbc/mssql/MSSQLModule.java +90 -0
  180. data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +508 -0
  181. data/src/java/arjdbc/mysql/MySQLModule.java +152 -0
  182. data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +294 -0
  183. data/src/java/arjdbc/oracle/OracleModule.java +80 -0
  184. data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +455 -0
  185. data/src/java/arjdbc/postgresql/ByteaUtils.java +157 -0
  186. data/src/java/arjdbc/postgresql/PgDateTimeUtils.java +52 -0
  187. data/src/java/arjdbc/postgresql/PostgreSQLModule.java +77 -0
  188. data/src/java/arjdbc/postgresql/PostgreSQLResult.java +192 -0
  189. data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +948 -0
  190. data/src/java/arjdbc/sqlite3/SQLite3Module.java +73 -0
  191. data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +525 -0
  192. data/src/java/arjdbc/util/CallResultSet.java +826 -0
  193. data/src/java/arjdbc/util/DateTimeUtils.java +699 -0
  194. data/src/java/arjdbc/util/ObjectSupport.java +65 -0
  195. data/src/java/arjdbc/util/QuotingUtils.java +137 -0
  196. data/src/java/arjdbc/util/StringCache.java +63 -0
  197. data/src/java/arjdbc/util/StringHelper.java +145 -0
  198. metadata +269 -0
@@ -0,0 +1,76 @@
1
+ /*
2
+ * The MIT License
3
+ *
4
+ * Copyright 2013 Karol Bucek.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in
14
+ * all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ * THE SOFTWARE.
23
+ */
24
+ package arjdbc.db2;
25
+
26
+ import static arjdbc.util.QuotingUtils.BYTES_0;
27
+ import static arjdbc.util.QuotingUtils.BYTES_1;
28
+ import static arjdbc.util.QuotingUtils.quoteSingleQuotesWithFallback;
29
+
30
+ import org.jruby.Ruby;
31
+ import org.jruby.RubyModule;
32
+ import org.jruby.RubyString;
33
+ import org.jruby.anno.JRubyMethod;
34
+ import org.jruby.runtime.ThreadContext;
35
+ import org.jruby.runtime.builtin.IRubyObject;
36
+
37
+ /**
38
+ * ArJdbc::DB2
39
+ *
40
+ * @author kares
41
+ */
42
+ public class DB2Module {
43
+
44
+ public static RubyModule load(final RubyModule arJdbc) {
45
+ RubyModule db2 = arJdbc.defineModuleUnder("DB2");
46
+ db2.defineAnnotatedMethods( DB2Module.class );
47
+ return db2;
48
+ }
49
+
50
+ public static RubyModule load(final Ruby runtime) {
51
+ return load( arjdbc.ArJdbcModule.get(runtime) );
52
+ }
53
+
54
+ @JRubyMethod(name = "quote_string", required = 1, frame = false)
55
+ public static IRubyObject quote_string(
56
+ final ThreadContext context,
57
+ final IRubyObject self,
58
+ final IRubyObject string) {
59
+ return quoteSingleQuotesWithFallback(context, string);
60
+ }
61
+
62
+ @JRubyMethod(name = "quoted_true", required = 0, frame = false)
63
+ public static IRubyObject quoted_true(
64
+ final ThreadContext context,
65
+ final IRubyObject self) {
66
+ return RubyString.newString(context.runtime, BYTES_1);
67
+ }
68
+
69
+ @JRubyMethod(name = "quoted_false", required = 0, frame = false)
70
+ public static IRubyObject quoted_false(
71
+ final ThreadContext context,
72
+ final IRubyObject self) {
73
+ return RubyString.newString(context.runtime, BYTES_0);
74
+ }
75
+
76
+ }
@@ -0,0 +1,126 @@
1
+ /***** BEGIN LICENSE BLOCK *****
2
+ * Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
3
+ * Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
4
+ * Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
5
+ * Copyright (c) 2008-2009 Thomas E Enebo <enebo@acm.org>
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining
8
+ * a copy of this software and associated documentation files (the
9
+ * "Software"), to deal in the Software without restriction, including
10
+ * without limitation the rights to use, copy, modify, merge, publish,
11
+ * distribute, sublicense, and/or sell copies of the Software, and to
12
+ * permit persons to whom the Software is furnished to do so, subject to
13
+ * the following conditions:
14
+ *
15
+ * The above copyright notice and this permission notice shall be
16
+ * included in all copies or substantial portions of the Software.
17
+ *
18
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+ ***** END LICENSE BLOCK *****/
26
+ package arjdbc.db2;
27
+
28
+ import arjdbc.jdbc.Callable;
29
+ import arjdbc.jdbc.RubyJdbcConnection;
30
+ import arjdbc.util.StringHelper;
31
+
32
+ import java.sql.Connection;
33
+ import java.sql.PreparedStatement;
34
+ import java.sql.ResultSet;
35
+ import java.sql.SQLException;
36
+
37
+ import org.jruby.Ruby;
38
+ import org.jruby.RubyBoolean;
39
+ import org.jruby.RubyClass;
40
+ import org.jruby.RubyString;
41
+ import org.jruby.anno.JRubyMethod;
42
+ import org.jruby.runtime.ObjectAllocator;
43
+ import org.jruby.runtime.ThreadContext;
44
+ import org.jruby.runtime.builtin.IRubyObject;
45
+ import org.jruby.util.ByteList;
46
+
47
+ /**
48
+ *
49
+ * @author mikestone
50
+ */
51
+ public class DB2RubyJdbcConnection extends RubyJdbcConnection {
52
+
53
+ public DB2RubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
54
+ super(runtime, metaClass);
55
+ }
56
+
57
+ public static RubyClass createDB2JdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
58
+ RubyClass clazz = getConnectionAdapters(runtime).
59
+ defineClassUnder("DB2JdbcConnection", jdbcConnection, ALLOCATOR);
60
+ clazz.defineAnnotatedMethods(DB2RubyJdbcConnection.class);
61
+
62
+ return clazz;
63
+ }
64
+
65
+ public static RubyClass load(final Ruby runtime) {
66
+ RubyClass jdbcConnection = getJdbcConnection(runtime);
67
+ return createDB2JdbcConnectionClass(runtime, jdbcConnection);
68
+ }
69
+
70
+ protected static ObjectAllocator ALLOCATOR = new ObjectAllocator() {
71
+ public IRubyObject allocate(Ruby runtime, RubyClass klass) {
72
+ return new DB2RubyJdbcConnection(runtime, klass);
73
+ }
74
+ };
75
+
76
+ @JRubyMethod(name = "select?", required = 1, meta = true, frame = false)
77
+ public static RubyBoolean select_p(final ThreadContext context,
78
+ final IRubyObject self, final IRubyObject sql) {
79
+ final RubyString sqlStr = sql.asString();
80
+ if ( isValues(sqlStr) ) return context.runtime.getTrue();
81
+ return arjdbc.jdbc.RubyJdbcConnection.select_p(context, self, sqlStr);
82
+ }
83
+
84
+ // DB2 supports 'stand-alone' VALUES expressions
85
+ private static final byte[] VALUES = new byte[]{ 'v','a','l','u', 'e', 's' };
86
+
87
+ private static boolean isValues(final RubyString sql) {
88
+ final ByteList sqlBytes = sql.getByteList();
89
+ return StringHelper.startsWithIgnoreCase(sqlBytes, VALUES);
90
+ }
91
+
92
+ private static final String[] TABLE_TYPES = new String[] {
93
+ "TABLE", "VIEW", "SYNONYM", "MATERIALIZED QUERY TABLE", "ALIAS"
94
+ };
95
+
96
+ @Override
97
+ protected String[] getTableTypes() {
98
+ return TABLE_TYPES;
99
+ }
100
+
101
+ @Override
102
+ protected boolean databaseSupportsSchemas() {
103
+ return true;
104
+ }
105
+
106
+ @JRubyMethod(name = {"identity_val_local", "last_insert_id"})
107
+ public IRubyObject identity_val_local(final ThreadContext context)
108
+ throws SQLException {
109
+ return withConnection(context, new Callable<IRubyObject>() {
110
+ public IRubyObject call(final Connection connection) throws SQLException {
111
+ PreparedStatement statement = null; ResultSet genKeys = null;
112
+ try {
113
+ statement = connection.prepareStatement("VALUES IDENTITY_VAL_LOCAL()");
114
+ genKeys = statement.executeQuery();
115
+ return doMapGeneratedKeys(context.runtime, genKeys, true);
116
+ }
117
+ catch (final SQLException e) {
118
+ debugMessage(context.runtime, "failed to get generated keys: ", e);
119
+ throw e;
120
+ }
121
+ finally { close(genKeys); close(statement); }
122
+ }
123
+ });
124
+ }
125
+
126
+ }
@@ -0,0 +1,178 @@
1
+ /***** BEGIN LICENSE BLOCK *****
2
+ * Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
3
+ * Copyright (c) 2006-2011 Nick Sieger <nick@nicksieger.com>
4
+ * Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining
7
+ * a copy of this software and associated documentation files (the
8
+ * "Software"), to deal in the Software without restriction, including
9
+ * without limitation the rights to use, copy, modify, merge, publish,
10
+ * distribute, sublicense, and/or sell copies of the Software, and to
11
+ * permit persons to whom the Software is furnished to do so, subject to
12
+ * the following conditions:
13
+ *
14
+ * The above copyright notice and this permission notice shall be
15
+ * included in all copies or substantial portions of the Software.
16
+ *
17
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+ ***** END LICENSE BLOCK *****/
25
+
26
+ package arjdbc.derby;
27
+
28
+ import static arjdbc.util.QuotingUtils.BYTES_0;
29
+ import static arjdbc.util.QuotingUtils.BYTES_1;
30
+ import static arjdbc.util.QuotingUtils.BYTES_SINGLE_Q_x2;
31
+
32
+ import org.jruby.Ruby;
33
+ import org.jruby.RubyModule;
34
+ import org.jruby.RubyString;
35
+ import org.jruby.anno.JRubyMethod;
36
+ import org.jruby.runtime.ThreadContext;
37
+ import org.jruby.runtime.builtin.IRubyObject;
38
+ import org.jruby.util.ByteList;
39
+
40
+ public class DerbyModule {
41
+
42
+ public static RubyModule load(final RubyModule arJdbc) {
43
+ RubyModule derby = arJdbc.defineModuleUnder("Derby");
44
+ derby.defineAnnotatedMethods( DerbyModule.class );
45
+ RubyModule column = derby.defineModuleUnder("Column");
46
+ column.defineAnnotatedMethods(Column.class);
47
+ return derby;
48
+ }
49
+
50
+ public static RubyModule load(final Ruby runtime) {
51
+ return load( arjdbc.ArJdbcModule.get(runtime) );
52
+ }
53
+
54
+ public static class Column {
55
+
56
+ @JRubyMethod(name = "type_cast", required = 1)
57
+ public static IRubyObject type_cast(final ThreadContext context,
58
+ final IRubyObject self, final IRubyObject value) {
59
+
60
+ if ( value.isNil() ||
61
+ ( (value instanceof RubyString) && value.toString().trim().equalsIgnoreCase("null") ) ) {
62
+ return context.nil;
63
+ }
64
+
65
+ final String type = self.getInstanceVariables().getInstanceVariable("@type").toString();
66
+
67
+ switch (type.charAt(0)) {
68
+ case 's': //string
69
+ return value;
70
+ case 't': //text, timestamp, time
71
+ if ( type.equals("time") ) {
72
+ return self.getMetaClass().callMethod(context, "string_to_dummy_time", value);
73
+ }
74
+ if ( type.equals("timestamp") ) {
75
+ return self.getMetaClass().callMethod(context, "string_to_time", value);
76
+ }
77
+ return value; // text
78
+ case 'i': //integer
79
+ case 'p': //primary key
80
+ if ( value.respondsTo("to_i") ) {
81
+ return value.callMethod(context, "to_i");
82
+ }
83
+ return context.getRuntime().newFixnum( value.isTrue() ? 1 : 0 );
84
+ case 'd': //decimal, datetime, date
85
+ if ( type.equals("datetime") ) {
86
+ return self.getMetaClass().callMethod(context, "string_to_time", value);
87
+ }
88
+ if ( type.equals("date") ) {
89
+ return self.getMetaClass().callMethod(context, "string_to_date", value);
90
+ }
91
+ return self.getMetaClass().callMethod(context, "value_to_decimal", value);
92
+ case 'f': //float
93
+ return value.callMethod(context, "to_f");
94
+ case 'b': //binary, boolean
95
+ return type.equals("binary") ?
96
+ self.getMetaClass().callMethod(context, "binary_to_string", value) :
97
+ self.getMetaClass().callMethod(context, "value_to_boolean", value) ;
98
+ }
99
+ return value;
100
+ }
101
+
102
+ }
103
+
104
+ @JRubyMethod(name = "quote_binary", required = 1)
105
+ public static IRubyObject quote_binary(final ThreadContext context,
106
+ final IRubyObject self, final IRubyObject string) {
107
+ final byte[] empty = ByteList.NULL_ARRAY; // ""
108
+ return quoteStringHex(context.runtime, empty, string, empty);
109
+ }
110
+
111
+ private final static byte[] HEX = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
112
+
113
+ private static RubyString quoteStringHex(final Ruby runtime,
114
+ final byte[] before, final IRubyObject string, final byte[] after) {
115
+
116
+ final ByteList input = ((RubyString) string).getByteList();
117
+ final int size = input.getRealSize();
118
+ final ByteList output = new ByteList( before.length + size * 2 + after.length );
119
+ output.append( before );
120
+
121
+ final byte[] inputBytes = input.unsafeBytes();
122
+
123
+ int written = 0;
124
+ for (int i = input.getBegin(); i < input.getBegin() + size; i++) {
125
+ final byte b = inputBytes[i];
126
+ byte h = HEX[ ( ((char) b) >> 4 ) % 16 ];
127
+ byte l = HEX[ ( (char) b ) % 16 ];
128
+ output.append(h).append(l);
129
+ written += 2;
130
+ if ( written >= 16334 ) { // max hex length = 16334
131
+ output.append("'||X'".getBytes());
132
+ written = 0;
133
+ }
134
+ }
135
+
136
+ output.append( after );
137
+ return RubyString.newString(runtime, output);
138
+ }
139
+
140
+ @JRubyMethod(name = "quote_string", required = 1)
141
+ public static IRubyObject quote_string(final IRubyObject self, IRubyObject string) {
142
+ if ( ! ( string instanceof RubyString ) ) {
143
+ string = string.asString(); // e.g. Multibyte::Chars
144
+ }
145
+
146
+ ByteList bytes = ((RubyString) string).getByteList();
147
+
148
+ boolean newBytes = false;
149
+ for ( int i = 0; i < bytes.length(); i++ ) {
150
+ switch ( bytes.get(i) ) {
151
+ case '\'': break;
152
+ default: continue;
153
+ }
154
+ // on first replacement allocate so we don't manip original
155
+ if ( ! newBytes ) {
156
+ bytes = new ByteList(bytes);
157
+ newBytes = true;
158
+ }
159
+ bytes.replace(i, 1, BYTES_SINGLE_Q_x2);
160
+ i += 1;
161
+ }
162
+
163
+ return newBytes ? RubyString.newString(self.getRuntime(), bytes) : string;
164
+ }
165
+
166
+ @JRubyMethod(name = "quoted_true", required = 0, frame = false)
167
+ public static RubyString quoted_true(
168
+ final ThreadContext context, final IRubyObject self) {
169
+ return RubyString.newStringShared(context.runtime, BYTES_1);
170
+ }
171
+
172
+ @JRubyMethod(name = "quoted_false", required = 0, frame = false)
173
+ public static RubyString quoted_false(
174
+ final ThreadContext context, final IRubyObject self) {
175
+ return RubyString.newStringShared(context.runtime, BYTES_0);
176
+ }
177
+
178
+ }
@@ -0,0 +1,152 @@
1
+ /*
2
+ * The MIT License
3
+ *
4
+ * Copyright 2013 Karol Bucek.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in
14
+ * all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ * THE SOFTWARE.
23
+ */
24
+ package arjdbc.derby;
25
+
26
+ import arjdbc.jdbc.Callable;
27
+ import arjdbc.jdbc.DriverWrapper;
28
+ import arjdbc.jdbc.RubyJdbcConnection;
29
+
30
+ import java.sql.Connection;
31
+ import java.sql.PreparedStatement;
32
+ import java.sql.ResultSet;
33
+ import java.sql.SQLException;
34
+
35
+ import org.jruby.Ruby;
36
+ import org.jruby.RubyBoolean;
37
+ import org.jruby.RubyClass;
38
+ import org.jruby.RubyString;
39
+ import org.jruby.anno.JRubyMethod;
40
+ import org.jruby.exceptions.RaiseException;
41
+ import org.jruby.runtime.ObjectAllocator;
42
+ import org.jruby.runtime.ThreadContext;
43
+ import org.jruby.runtime.builtin.IRubyObject;
44
+ import org.jruby.util.ByteList;
45
+
46
+ /**
47
+ * ArJdbc::DerbyJdbcConnection
48
+ *
49
+ * @author kares
50
+ */
51
+ public class DerbyRubyJdbcConnection extends RubyJdbcConnection {
52
+ private static final long serialVersionUID = 4809475910953623325L;
53
+
54
+ public DerbyRubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
55
+ super(runtime, metaClass);
56
+ }
57
+
58
+ public static RubyClass createDerbyJdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
59
+ final RubyClass clazz = getConnectionAdapters(runtime). // ActiveRecord::ConnectionAdapters
60
+ defineClassUnder("DerbyJdbcConnection", jdbcConnection, ALLOCATOR);
61
+ clazz.defineAnnotatedMethods(DerbyRubyJdbcConnection.class);
62
+ return clazz;
63
+ }
64
+
65
+ public static RubyClass load(final Ruby runtime) {
66
+ RubyClass jdbcConnection = getJdbcConnection(runtime);
67
+ return createDerbyJdbcConnectionClass(runtime, jdbcConnection);
68
+ }
69
+
70
+ protected static ObjectAllocator ALLOCATOR = new ObjectAllocator() {
71
+ public IRubyObject allocate(Ruby runtime, RubyClass klass) {
72
+ return new DerbyRubyJdbcConnection(runtime, klass);
73
+ }
74
+ };
75
+
76
+ @Override
77
+ protected DriverWrapper newDriverWrapper(final ThreadContext context, final String driver) {
78
+ DriverWrapper driverWrapper = super.newDriverWrapper(context, driver);
79
+
80
+ final java.sql.Driver jdbcDriver = driverWrapper.getDriverInstance();
81
+ if ( jdbcDriver.getClass().getName().startsWith("org.apache.derby.") ) {
82
+ final int major = jdbcDriver.getMajorVersion();
83
+ final int minor = jdbcDriver.getMinorVersion();
84
+ if ( major < 10 || ( major == 10 && minor < 5 ) ) {
85
+ final RubyClass errorClass = getConnectionNotEstablished(context.runtime);
86
+ throw context.runtime.newRaiseException(errorClass,
87
+ "adapter requires Derby >= 10.5 got: " + major + "." + minor + "");
88
+ }
89
+ if ( major == 10 && minor < 8 ) { // 10.8 ~ supports JDBC 4.1
90
+ // config[:connection_alive_sql] ||= 'SELECT 1 FROM SYS.SYSSCHEMAS FETCH FIRST 1 ROWS ONLY'
91
+ setConfigValueIfNotSet(context, "connection_alive_sql", // FROM clause mandatory
92
+ context.runtime.newString("SELECT 1 FROM SYS.SYSSCHEMAS FETCH FIRST 1 ROWS ONLY"));
93
+ }
94
+ }
95
+
96
+ return driverWrapper;
97
+ }
98
+
99
+ @JRubyMethod(name = "select?", required = 1, meta = true, frame = false)
100
+ public static RubyBoolean select_p(final ThreadContext context,
101
+ final IRubyObject self, final IRubyObject sql) {
102
+ final RubyString sqlStr = sql.asString();
103
+ if ( isValues(sqlStr) ) return context.runtime.getTrue();
104
+ return arjdbc.jdbc.RubyJdbcConnection.select_p(context, self, sqlStr);
105
+ }
106
+
107
+ // Derby supports 'stand-alone' VALUES expressions
108
+ private static final byte[] VALUES = new byte[]{ 'v','a','l','u','e','s' };
109
+
110
+ private static boolean isValues(final RubyString sql) {
111
+ final ByteList sqlBytes = sql.getByteList();
112
+ return startsWithIgnoreCase(sqlBytes, VALUES);
113
+ }
114
+
115
+ @JRubyMethod(name = {"identity_val_local", "last_insert_id"})
116
+ public IRubyObject identity_val_local(final ThreadContext context)
117
+ throws SQLException {
118
+ return withConnection(context, new Callable<IRubyObject>() {
119
+ public IRubyObject call(final Connection connection) throws SQLException {
120
+ PreparedStatement statement = null; ResultSet genKeys = null;
121
+ try {
122
+ statement = connection.prepareStatement("values IDENTITY_VAL_LOCAL()");
123
+ genKeys = statement.executeQuery();
124
+ return doMapGeneratedKeys(context.getRuntime(), genKeys, true);
125
+ }
126
+ catch (final SQLException e) {
127
+ debugMessage(context.runtime, "failed to get generated keys: ", e);
128
+ throw e;
129
+ }
130
+ finally { close(genKeys); close(statement); }
131
+ }
132
+ });
133
+ }
134
+
135
+ @Override
136
+ protected boolean supportsGeneratedKeys(final Connection connection) throws SQLException {
137
+ return true; // driver reports false from supportsGetGeneratedKeys()
138
+ }
139
+
140
+ @Override
141
+ protected IRubyObject matchTables(final ThreadContext context,
142
+ final Connection connection,
143
+ final String catalog, String schemaPattern,
144
+ final String tablePattern, final String[] types,
145
+ final boolean checkExistsOnly) throws SQLException {
146
+ if (schemaPattern != null && schemaPattern.equals("")) {
147
+ schemaPattern = null; // Derby doesn't like empty-string schema name
148
+ }
149
+ return super.matchTables(context, connection, catalog, schemaPattern, tablePattern, types, checkExistsOnly);
150
+ }
151
+
152
+ }