/cmp/src/main/java/org/jboss/as/cmp/jdbc/metadata/JDBCOptimisticLockingMetaData.java

http://github.com/jbossas/jboss-as · Java · 166 lines · 102 code · 18 blank · 46 comment · 31 complexity · 9852d3535621eca1b197872b4ddda3f7 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.metadata;
  23. import java.util.Date;
  24. import static org.jboss.as.cmp.CmpMessages.MESSAGES;
  25. import org.jboss.as.cmp.jdbc.metadata.parser.ParsedCmpField;
  26. import org.jboss.as.cmp.jdbc.metadata.parser.ParsedOptimisticLocking;
  27. /**
  28. * Optimistic locking metadata
  29. *
  30. * @author <a href="mailto:aloubyansky@hotmail.com">Alex Loubyansky</a>
  31. * @version $Revision: 81030 $
  32. */
  33. public final class JDBCOptimisticLockingMetaData {
  34. // Constants ---------------------------------------
  35. public enum LockingStrategy {
  36. FIELD_GROUP_STRATEGY, MODIFIED_STRATEGY, READ_STRATEGY, VERSION_COLUMN_STRATEGY, TIMESTAMP_COLUMN_STRATEGY, KEYGENERATOR_COLUMN_STRATEGY
  37. }
  38. // Attributes --------------------------------------
  39. /**
  40. * locking strategy
  41. */
  42. private final LockingStrategy lockingStrategy;
  43. /**
  44. * group name for field group strategy
  45. */
  46. private final String groupName;
  47. /**
  48. * locking field for version- or timestamp-column strategy
  49. */
  50. private final JDBCCMPFieldMetaData lockingField;
  51. /**
  52. * key generator factory
  53. */
  54. private final String keyGeneratorFactory;
  55. public JDBCOptimisticLockingMetaData(JDBCEntityMetaData entity, ParsedOptimisticLocking optimisticLocking) {
  56. lockingStrategy = optimisticLocking.getLockingStrategy();
  57. switch (lockingStrategy) {
  58. case FIELD_GROUP_STRATEGY: {
  59. groupName = optimisticLocking.getGroupName();
  60. lockingField = null;
  61. keyGeneratorFactory = null;
  62. break;
  63. }
  64. case MODIFIED_STRATEGY: {
  65. groupName = null;
  66. lockingField = null;
  67. keyGeneratorFactory = null;
  68. break;
  69. }
  70. case READ_STRATEGY: {
  71. groupName = null;
  72. lockingField = null;
  73. keyGeneratorFactory = null;
  74. break;
  75. }
  76. case VERSION_COLUMN_STRATEGY: {
  77. if (optimisticLocking.getLockingField().getFieldType() != null)
  78. throw MESSAGES.fieldTypeNotAllowedForColumn("version", Long.class.getName());
  79. lockingField = constructLockingField(entity, optimisticLocking.getLockingField());
  80. groupName = null;
  81. keyGeneratorFactory = null;
  82. break;
  83. }
  84. case TIMESTAMP_COLUMN_STRATEGY: {
  85. if (optimisticLocking.getLockingField().getFieldType() != null)
  86. throw MESSAGES.fieldTypeNotAllowedForColumn("timestamp", Date.class.getName());
  87. lockingField = constructLockingField(entity, optimisticLocking.getLockingField());
  88. groupName = null;
  89. keyGeneratorFactory = null;
  90. break;
  91. }
  92. case KEYGENERATOR_COLUMN_STRATEGY: {
  93. lockingField = constructLockingField(entity, optimisticLocking.getLockingField());
  94. groupName = null;
  95. keyGeneratorFactory = optimisticLocking.getKeyGeneratorFactory();
  96. break;
  97. }
  98. default: {
  99. throw MESSAGES.unknownLockingStrategy(entity.getName(), entity.getName());
  100. }
  101. }
  102. }
  103. private JDBCCMPFieldMetaData constructLockingField(JDBCEntityMetaData entity, ParsedCmpField lockingField) {
  104. // field name
  105. String fieldName = lockingField != null ? lockingField.getFieldName() : null;
  106. if (fieldName == null || fieldName.trim().length() < 1)
  107. fieldName = (lockingStrategy == LockingStrategy.VERSION_COLUMN_STRATEGY ? "version_lock" :
  108. (lockingStrategy == LockingStrategy.TIMESTAMP_COLUMN_STRATEGY ? "timestamp_lock" : "generated_lock"));
  109. // column name
  110. String columnName = lockingField != null ? lockingField.getColumnName() : null;
  111. if (columnName == null || columnName.trim().length() < 1)
  112. columnName = (lockingStrategy == LockingStrategy.VERSION_COLUMN_STRATEGY ? "version_lock" :
  113. (lockingStrategy == LockingStrategy.TIMESTAMP_COLUMN_STRATEGY ? "timestamp_lock" : "generated_lock"));
  114. // field type
  115. Class<?> fieldType = null;
  116. if (lockingStrategy == LockingStrategy.VERSION_COLUMN_STRATEGY)
  117. fieldType = java.lang.Long.class;
  118. else if (lockingStrategy == LockingStrategy.TIMESTAMP_COLUMN_STRATEGY)
  119. fieldType = java.util.Date.class;
  120. if (lockingField != null && lockingField.getFieldType() != null) {
  121. fieldType = lockingField.getFieldType();
  122. }
  123. // JDBC/SQL Type
  124. int jdbcType;
  125. String sqlType;
  126. if (lockingField != null && lockingField.getJdbcType() != null) {
  127. jdbcType = lockingField.getJdbcType();
  128. sqlType = lockingField.getSqlType();
  129. } else {
  130. jdbcType = Integer.MIN_VALUE;
  131. sqlType = null;
  132. }
  133. return new JDBCCMPFieldMetaData(entity, fieldName, fieldType, columnName, jdbcType, sqlType);
  134. }
  135. // Public ------------------------------------------
  136. public LockingStrategy getLockingStrategy() {
  137. return lockingStrategy;
  138. }
  139. public String getGroupName() {
  140. return groupName;
  141. }
  142. public JDBCCMPFieldMetaData getLockingField() {
  143. return lockingField;
  144. }
  145. public String getKeyGeneratorFactory() {
  146. return keyGeneratorFactory;
  147. }
  148. }