/cmp/src/main/java/org/jboss/as/cmp/jdbc/keygen/JDBCPkSqlCreateCommand.java

http://github.com/jbossas/jboss-as · Java · 94 lines · 57 code · 9 blank · 28 comment · 5 complexity · 3823d08e3c2fef9ffcbd4bac91701431 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright 2008, Red Hat Middleware LLC, and individual contributors
  4. * as indicated by the @author tags. See the copyright.txt file in the
  5. * distribution for a full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.jboss.as.cmp.jdbc.keygen;
  23. import java.sql.Connection;
  24. import java.sql.ResultSet;
  25. import java.sql.SQLException;
  26. import java.sql.Statement;
  27. import javax.ejb.CreateException;
  28. import javax.sql.DataSource;
  29. import org.jboss.as.cmp.CmpMessages;
  30. import org.jboss.as.cmp.context.CmpEntityBeanContext;
  31. import org.jboss.as.cmp.jdbc.JDBCInsertPKCreateCommand;
  32. import org.jboss.as.cmp.jdbc.JDBCStoreManager;
  33. import org.jboss.as.cmp.jdbc.JDBCUtil;
  34. import org.jboss.as.cmp.jdbc.bridge.JDBCCMPFieldBridge;
  35. import org.jboss.as.cmp.jdbc.metadata.JDBCEntityCommandMetaData;
  36. /**
  37. * Create command that uses an SQL statement to generate the primary key.
  38. * Typically used with databases that support sequences.
  39. *
  40. * @author <a href="mailto:loubyansky@hotmail.com">Alex Loubyansky</a>
  41. * @version $Revision: 81030 $
  42. */
  43. public class JDBCPkSqlCreateCommand extends JDBCInsertPKCreateCommand {
  44. protected String pkSQL;
  45. protected JDBCCMPFieldBridge pkField;
  46. public void init(JDBCStoreManager manager) {
  47. super.init(manager);
  48. pkField = getGeneratedPKField();
  49. }
  50. protected void initEntityCommand(JDBCEntityCommandMetaData entityCommand) {
  51. super.initEntityCommand(entityCommand);
  52. pkSQL = entityCommand.getAttribute("pk-sql");
  53. if (pkSQL == null) {
  54. throw CmpMessages.MESSAGES.pkSqlMustBeSet(entity.getEntityName());
  55. }
  56. if (debug) {
  57. log.debug("Generate PK sql is: " + pkSQL);
  58. }
  59. }
  60. protected void generateFields(CmpEntityBeanContext ctx) throws CreateException {
  61. super.generateFields(ctx);
  62. Connection con = null;
  63. Statement s = null;
  64. ResultSet rs = null;
  65. try {
  66. if (debug) {
  67. log.debug("Executing SQL: " + pkSQL);
  68. }
  69. DataSource dataSource = entity.getDataSource();
  70. con = dataSource.getConnection();
  71. s = con.createStatement();
  72. rs = s.executeQuery(pkSQL);
  73. if (!rs.next()) {
  74. throw CmpMessages.MESSAGES.errorFetchingNextPk();
  75. }
  76. pkField.loadInstanceResults(rs, 1, ctx);
  77. } catch (SQLException e) {
  78. throw CmpMessages.MESSAGES.errorFetchingPkValue(e);
  79. } finally {
  80. JDBCUtil.safeClose(rs);
  81. JDBCUtil.safeClose(s);
  82. JDBCUtil.safeClose(con);
  83. }
  84. }
  85. }