View Javadoc

1   package liquibase.database.structure;
2   
3   import java.util.ArrayList;
4   import java.util.HashSet;
5   import java.util.List;
6   import java.util.Set;
7   
8   import liquibase.util.StringUtils;
9   
10  public class Index implements DatabaseObject, Comparable<Index> {
11  
12      /** Marks Index as associated with Primary Key [PK] */
13      public final static String MARK_PRIMARY_KEY = "primaryKey";
14      /** Marks Index as associated with Foreign Key [FK] */
15      public final static String MARK_FOREIGN_KEY = "foreignKey";
16      /** Marks Index as associated with Unique Constraint [UC] */
17      public final static String MARK_UNIQUE_CONSTRAINT = "uniqueConstraint";
18  
19      private String name;
20      private Table table;
21      private String tablespace;
22      private Boolean unique;
23      private List<String> columns = new ArrayList<String>();
24      private String filterCondition;
25      // Contain associations of index
26      // for example: foreignKey, primaryKey or uniqueConstraint
27      private Set<String> associatedWith = new HashSet<String>();
28  
29      @Override
30      public DatabaseObject[] getContainingObjects() {
31          return new DatabaseObject[] { table };
32      }
33  
34      public String getName() {
35          return name;
36      }
37  
38      public void setName(String name) {
39          this.name = name;
40      }
41  
42      public Table getTable() {
43          return table;
44      }
45  
46      public void setTable(Table table) {
47          this.table = table;
48      }
49  
50      public String getTablespace() {
51          return tablespace;
52      }
53  
54      public void setTablespace(String tablespace) {
55          this.tablespace = tablespace;
56      }
57  
58      public List<String> getColumns() {
59          return columns;
60      }
61  
62      public String getColumnNames() {
63          return StringUtils.join(columns, ", ");
64      }
65  
66      public String getFilterCondition() {
67          return filterCondition;
68      }
69  
70      public void setFilterCondition(String filterCondition) {
71          this.filterCondition = filterCondition;
72      }
73  
74      public void setUnique(Boolean value) {
75          this.unique = value;
76      }
77  
78      public Boolean isUnique() {
79          return this.unique;
80      }
81  
82      public Set<String> getAssociatedWith() {
83          return associatedWith;
84      }
85  
86      public String getAssociatedWithAsString() {
87          return StringUtils.join(associatedWith, ",");
88      }
89  
90      public void addAssociatedWith(String item) {
91          associatedWith.add(item);
92      }
93  
94      public boolean isAssociatedWith(String keyword) {
95          return associatedWith.contains(keyword);
96      }
97  
98      @Override
99      public boolean equals(Object o) {
100         if (this == o)
101             return true;
102         if (o == null || getClass() != o.getClass())
103             return false;
104 
105         Index index = (Index) o;
106         boolean equals = true;
107         for (String column : index.getColumns()) {
108             if (!columns.contains(column)) {
109                 equals = false;
110             }
111         }
112 
113         if (this.unique == null && index.isUnique() == null) {
114             // continue check
115         } else if (this.unique == null && index.isUnique() != null) {
116             equals = false;
117         } else if (this.unique != null && index.isUnique() == null) {
118             equals = false;
119         } else if (!this.unique.equals(index.isUnique())) {
120             equals = false;
121         }
122 
123         return equals || table.getName().equalsIgnoreCase(index.table.getName());
124 
125     }
126 
127     @Override
128     public int hashCode() {
129         int result;
130         result = table.getName().toUpperCase().hashCode();
131         result = 31 * result + columns.hashCode();
132         result = 31 * result + (unique == null ? 2 : unique ? 1 : 0);
133         return result;
134     }
135 
136     @Override
137     public int compareTo(Index o) {
138         int returnValue = this.table.getName().compareTo(o.table.getName());
139 
140         if (returnValue == 0) {
141             String thisName = StringUtils.trimToEmpty(this.getName());
142             String oName = StringUtils.trimToEmpty(o.getName());
143             returnValue = thisName.compareTo(oName);
144         }
145 
146         // We should not have two indexes that have the same name and tablename
147         /*
148          * if (returnValue == 0) { returnValue = this.getColumnName().compareTo(o.getColumnName()); }
149          */
150 
151         return returnValue;
152     }
153 
154     @Override
155     public String toString() {
156         StringBuffer stringBuffer = new StringBuffer();
157         stringBuffer.append(getName());
158         if (this.unique != null && !this.unique) {
159             stringBuffer.append(" unique ");
160         }
161         if (table != null && columns != null) {
162             stringBuffer.append(" on ").append(table.getName());
163             if (columns != null) {
164                 stringBuffer.append("(");
165                 for (String column : columns) {
166                     stringBuffer.append(column).append(", ");
167                 }
168                 stringBuffer.delete(stringBuffer.length() - 2, stringBuffer.length());
169                 stringBuffer.append(")");
170             }
171         }
172         return stringBuffer.toString();
173     }
174 }