3858253f2854b2fc509fd0d9e1a88c1d9544e019
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / sql / metadata / ObjectMetaData.java
1 /*
2  * Created on 8/04/2003
3  *
4  */
5 package com.quantum.sql.metadata;
6
7 import java.util.Vector;
8
9 import com.quantum.util.StringMatrix;
10
11
12 /**
13  * Class to hold the Metadata of a database element
14  * @author panic
15  */
16 public class ObjectMetaData {
17         private StringMatrix columns = new StringMatrix();
18         private StringMatrix primaryKeys = new StringMatrix();
19         private StringMatrix foreignKeys = new StringMatrix();
20         private StringMatrix indexInfo = new StringMatrix();
21         private StringMatrix bestRowId = new StringMatrix();
22         
23         
24         /**
25          * Gives the order of the column in the primary key
26          * @param column
27          * @return the order of the column in the primary key, 0 if it's not part of it.
28          */
29         public int getPrimaryKeyOrder(String column){
30                 if (primaryKeys.size() == 0) return 0;
31                 StringMatrix keyColumns = primaryKeys.select("COLUMN_NAME", column); //$NON-NLS-1$
32                 if (keyColumns != null && keyColumns.size() > 0) {
33                          String index = keyColumns.get("KEY_SEQ", 0); // We suppose there is only a primary key //$NON-NLS-1$
34                          if (index != null ) return Integer.parseInt(index);
35                 }
36                 return 0;
37         }
38
39         /**
40          * Gives the type of the column
41          * @param column
42          * @return the type of the column using the values defined in java.sql.Types
43          */
44         public int getColumnType(String column){
45                 StringMatrix selectCol = columns.select("COLUMN_NAME", column); //$NON-NLS-1$
46                 if (selectCol != null && selectCol.size() > 0) {
47                          String type = selectCol.get("DATA_TYPE", 0); // It should be only one column //$NON-NLS-1$
48                          if (type != null ) return Integer.parseInt(type);
49                 }
50                 return 0;
51                 
52         }
53
54         /**
55          * Returns a String with the names of the columns, separated by commas 
56          */
57         public String getColumnsString() {
58                 String result = ""; //$NON-NLS-1$
59                 Vector columnNames = columns.getColumn("COLUMN_NAME"); //$NON-NLS-1$
60                 for (int i = 0; i < columnNames.size(); i++) {
61                         if (i > 0) result += ", "; //$NON-NLS-1$
62                         result += (String) columnNames.get(i);
63                 }
64                 return result;
65         }
66         
67         /**
68          * Returns a vector of Strings with the names of the columns
69          */
70         public Vector getColumnNamesVector() {
71                 Vector result = new Vector();
72                 Vector columnNames = columns.getColumn("COLUMN_NAME"); //$NON-NLS-1$
73                 for (int i = 0; i < columnNames.size(); i++) {
74                         result.add((String) columnNames.get(i)); 
75                 }
76                 return result;
77         }
78
79         // Inmediate getters and setters
80
81         /**
82          * @param matrix
83          */
84         public void setColumns(StringMatrix matrix) {
85                 columns = matrix;
86         }
87         /**
88          * @param matrix
89          */
90         public void setForeignKeys(StringMatrix matrix) {
91                 foreignKeys = matrix;
92         }
93
94         /**
95          * @param matrix
96          */
97         public void setPrimaryKeys(StringMatrix matrix) {
98                 primaryKeys = matrix;
99         }
100         /**
101          * @param matrix
102          */
103         public void setBestRowId(StringMatrix matrix) {
104                 bestRowId = matrix;
105         }
106         
107         /**
108          * @param matrix
109          */
110         public void setIndexInfo(StringMatrix matrix) {
111                 indexInfo = matrix;
112         }
113
114         /**
115          * @return
116          */
117         public StringMatrix getColumns() {
118                 return columns;
119         }
120
121         /**
122          * @return
123          */
124         public StringMatrix getForeignKeys() {
125                 return foreignKeys;
126         }
127
128         /**
129          * @return
130          */
131         public StringMatrix getPrimaryKeys() {
132                 return primaryKeys;
133         }
134
135         
136         /**
137          * @return
138          */
139         public StringMatrix getIndexInfo() {
140                 return indexInfo;
141         }
142         /**
143          * @return
144          */
145         public StringMatrix getBestRowId() {
146                 return bestRowId;
147         }
148
149
150         /**
151          * @param column
152          */
153         public void dropColumn(String columnName) {
154                 columns.dropMatching("COLUMN_NAME", columnName); //$NON-NLS-1$
155         }
156
157         // Common Object interface
158         
159         /* (non-Javadoc)
160          * @see java.lang.Object#clone()
161          */
162         public Object clone() {
163                 ObjectMetaData result = new ObjectMetaData();
164                 result.columns = (StringMatrix) columns.clone();
165                 result.primaryKeys = (StringMatrix) primaryKeys.clone();
166                 result.indexInfo = (StringMatrix) indexInfo.clone();
167                 result.foreignKeys = (StringMatrix) foreignKeys.clone();
168                 return result;
169         }
170
171         /* (non-Javadoc)
172          * @see java.lang.Object#equals(java.lang.Object)
173          */
174         public boolean equals(Object obj) {
175                 if (!(obj instanceof ObjectMetaData)) return false;
176                 ObjectMetaData obMd = (ObjectMetaData) obj;
177                 return (columns.equals(obMd.columns) && 
178                                 primaryKeys.equals(obMd.primaryKeys) &&
179                                 indexInfo.equals(obMd.indexInfo) &&
180                                 foreignKeys.equals(obMd.foreignKeys) );
181         }
182
183         /* (non-Javadoc)
184          * @see java.lang.Object#toString()
185          */
186         public String toString() {
187                 return (        columns.toString() + 
188                                         foreignKeys.toString() + 
189                                         indexInfo.toString() + 
190                                         primaryKeys.toString());
191         }
192
193         public String getQualifiedTableName(){
194                         if (columns.size() < 1) return "";
195                         String result = columns.get("TABLE_NAME", 0);
196                         String schema = columns.get("TABLE_SCHEM", 0);
197                         if (schema != null && schema.length() > 0)
198                                 result = schema + "." + result;
199                         return result;
200
201         }
202
203
204 }