Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that implements utility methods like:
4
 *             1/ Reding all doctypes from db connection
5
 *             2/ Reading DTD or Schema file from Metacat catalog system
6
 *             3/ Reading Lore type Data Guide from db connection
7
 *  Copyright: 2000 Regents of the University of California and the
8
 *             National Center for Ecological Analysis and Synthesis
9
 *    Authors: Jivka Bojilova
10
 *    Release: @release@
11
 * 
12
 *   '$Author: jones $'
13
 *     '$Date: 2004-03-26 15:25:53 -0800 (Fri, 26 Mar 2004) $'
14
 * '$Revision: 2067 $'
15
 *
16
 * This program is free software; you can redistribute it and/or modify
17
 * it under the terms of the GNU General Public License as published by
18
 * the Free Software Foundation; either version 2 of the License, or
19
 * (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
 */
30

    
31
package edu.ucsb.nceas.metacat;
32

    
33
import java.sql.Connection;
34
import java.sql.SQLException;
35
import java.sql.PreparedStatement;
36
import java.sql.ResultSet;
37

    
38
import java.io.BufferedInputStream;
39
import java.io.InputStream;
40
import java.io.IOException;
41
import java.net.URL;
42
import java.net.URLConnection;
43
import java.net.MalformedURLException;
44

    
45
import java.util.Enumeration;
46
import java.util.Vector;
47
import java.util.Stack;
48

    
49
/**
50
 * A suite of utility classes for quering DB
51
 */
52
public class DBUtil {
53

    
54
  //private Connection	conn = null;
55

    
56
  /**
57
   * main routine used for testing.
58
   * <p>
59
   * Usage: java DBUtil <-dt|-dg>
60
   *
61
   * @param -dt for selecting all doctypes
62
   *        -dg for selecting DataGuide
63
   */
64
  static public void main(String[] args) {
65
     
66
     if (args.length < 1)
67
     {
68
        System.err.println("Wrong number of arguments!!!");
69
        System.err.println(
70
        "USAGE: java DBUtil <-dt | -ds [doctype] | -dl user>");
71
        return;
72
     } else {
73
        try {
74
                    
75
          // Open a connection to the database
76
          MetaCatUtil   util = new MetaCatUtil();
77
          //Connection dbconn = util.openDBConnection();
78

    
79
          DBUtil dbutil = new DBUtil();
80
          
81
          if ( args[0].equals("-dt") ) {
82
            String doctypes = dbutil.readDoctypes();
83
            System.out.println(doctypes);
84
          } else if ( args[0].equals("-ds") ) {
85
            String doctype = null;
86
            if ( args.length == 2 ) { doctype = args[1]; }
87
            String dtdschema = dbutil.readDTDSchema(doctype);
88
            System.out.println(dtdschema);
89
          } else if ( args[0].equals("-dl") ) {
90
            String scope = "";
91
            if ( args.length == 2 ) { scope = args[1]; }
92
            String docid = dbutil.getMaxDocid(scope);
93
            System.out.println(docid);
94
          } else {
95
            System.err.println(
96
            "USAGE: java DBUtil <-dt | -ds [doctype] | -dg [doctype]>");
97
          }  
98

    
99
        } catch (Exception e) {
100
          //System.err.println("error in DBUtil.main");
101
          //System.err.println(e.getMessage());
102
          e.printStackTrace(System.err);
103
        }
104
     }
105
  }
106
  
107
  /**
108
   * Construct an instance of the utility class
109
   */
110
  public DBUtil() {
111
    //this.conn = conn;
112
  }
113

    
114
  /**
115
   * read all doctypes from db connection in XML format
116
   * select all Public Id from xml_catalog table
117
   */
118
  public String readDoctypes()
119
        throws SQLException  {
120

    
121
    Vector doctypeList = new Vector();
122
    DBConnection dbConn = null;
123
    int serialNumber = -1;
124
    PreparedStatement pstmt = null;
125
    try {
126

    
127
      dbConn=DBConnectionPool.
128
                  getDBConnection("DBUtil.readDoctypes");
129
      serialNumber=dbConn.getCheckOutSerialNumber();
130
      pstmt =
131
        dbConn.prepareStatement("SELECT public_id FROM xml_catalog " +
132
                              "WHERE entry_type = 'DTD'");
133

    
134
      pstmt.execute();
135
      ResultSet rs = pstmt.getResultSet();
136
      boolean tableHasRows = rs.next();
137
      while (tableHasRows) {
138
           doctypeList.addElement(rs.getString(1));
139
           tableHasRows = rs.next();
140
      }
141
      
142
      pstmt.close();
143

    
144
    } catch (SQLException e) {
145
      throw new SQLException("DBUtil.readDoctypes(). " + e.getMessage());
146
    }
147
    finally
148
    {
149
      try
150
      {
151
        pstmt.close();
152
      }//try
153
      finally
154
      {
155
        DBConnectionPool.returnDBConnection(dbConn, serialNumber);
156
      }//finally
157
    }//finally
158
       
159

    
160
    return formatToXML(doctypeList, "doctype");
161
  }
162

    
163
  /**
164
   * read DTD or Schema file from Metacat's XML catalog system
165
   */
166
  public String readDTDSchema(String doctype)
167
        throws SQLException, MalformedURLException, IOException
168
  {
169
    String systemID = null;
170
    PreparedStatement pstmt = null;
171
    StringBuffer cbuff = new StringBuffer();
172
    DBConnection dbConn = null;
173
    int serialNumber = -1;
174
    // get doctype's System ID from db catalog
175
    try {
176
      
177
      dbConn=DBConnectionPool.
178
                  getDBConnection("DBUtil.readDTDSchema");
179
      serialNumber=dbConn.getCheckOutSerialNumber();
180
      pstmt = dbConn.prepareStatement("SELECT system_id " + 
181
                                    "FROM xml_catalog " +
182
                                    "WHERE entry_type in ('DTD','Schema') " +
183
                                    "AND public_id LIKE ?");
184
      pstmt.setString(1, doctype);
185
      pstmt.execute();
186
      ResultSet rs = pstmt.getResultSet();
187
      boolean hasRow = rs.next();
188
      if (hasRow) {
189
        systemID = rs.getString(1);
190
      } else {
191
        throw new SQLException("Non-registered doctype: " + doctype);
192
      }
193
      pstmt.close();
194

    
195
    } catch (SQLException e) {
196
      throw new SQLException("DBUtil.readDTD(). " + e.getMessage());
197
    }
198
    finally
199
    {
200
      try
201
      {
202
        pstmt.close();
203
      }//try
204
      finally
205
      {
206
        DBConnectionPool.returnDBConnection(dbConn, serialNumber);
207
      }//finally
208
    }//finally
209

    
210
    // read from URL stream as specified by the System ID.
211
    try {
212
      // open a connection to this URL and return an InputStream
213
      // for reading from that connection
214
      InputStream istream = new URL(systemID).openStream();
215
      // create a buffering character-input stream
216
      // that uses a default-sized input buffer
217
      BufferedInputStream in = new BufferedInputStream(istream);
218

    
219
      // read the input and write into the string buffer
220
	    int inputByte;
221
	    while ( (inputByte = in.read()) != -1 ) {
222
        cbuff.append((char)inputByte);
223
	    }
224

    
225
      // the input stream must be closed
226
	    in.close();
227
	    
228
    } catch (MalformedURLException e) {
229
      throw new MalformedURLException
230
      ("DBUtil.readDTD(). " + e.getMessage());
231
    } catch (IOException e) {
232
      throw new IOException
233
      ("DBUtil.readDTD(). " + e.getMessage());
234
    } catch (SecurityException e) {
235
      throw new IOException
236
      ("DBUtil.readDTD(). " + e.getMessage());
237
    }
238
    
239
   return cbuff.toString();
240
  }
241

    
242
  /**
243
   * format the DataGuide ResultSet to XML
244
   */
245
  private String formatToXML(Vector resultset) {
246
  
247
    String currPath = null;
248
    String currElement = null;
249
    String prevElement = null;
250
    StringBuffer result = new StringBuffer();
251
    Enumeration rs = resultset.elements(); 
252
    Stack st = new Stack();
253
    int i = 0;
254

    
255
    result.append("<?xml version=\"1.0\"?>\n");
256
    result.append("<resultset>\n"); 
257
    
258
    while (rs.hasMoreElements()) {
259
        currPath = (String)rs.nextElement();
260
        while ( !In(prevElement, currPath) ) {
261
            currElement = (String)st.pop();
262
            result.append(pad(" ",i--) + "</" + currElement + ">\n");
263
            if ( st.empty() ) 
264
                prevElement = null;
265
            else    
266
                prevElement = (String)st.peek();
267
        }    
268
        currElement = getElementFromPath(currPath);
269
        st.push(currElement);
270
        result.append(pad(" ",++i) + "<" + currElement + ">\n");
271
        prevElement = currElement;
272
    }
273
    while ( !st.empty() ) {
274
        prevElement = (String)st.pop();
275
        result.append(pad(" ",i--) + "</" + prevElement + ">\n");
276
    }    
277
    result.append("</resultset>\n"); 
278

    
279
    return result.toString();
280
  }
281

    
282
  /**
283
   * check if element is in path like /elem1/elem2/elemn3
284
   */
285
  private boolean In(String element, String path) {
286
    
287
    if ( element == null ) return true;
288
    return ( path.indexOf(element) != -1 );
289
  }
290

    
291
  /**
292
   * get last element from path like /elem1/elem2/elemn3
293
   */
294
  private String getElementFromPath(String path) {
295
    
296
    return ( path.substring(path.lastIndexOf("/")+1) );
297
  }
298

    
299
  /**
300
   * repeates the str n-times
301
   */
302
  private String pad(String str, int n) {
303
    
304
    String result = "";
305
    for ( int i = 0; i < n; i++ )
306
        result = result.concat(str);
307
        
308
    return result;    
309
  }
310

    
311
  /**
312
   * format the ResultSet to XML
313
   */
314
  private String formatToXML(Vector resultset, String tag) {
315
  
316
    String val = null;
317
    StringBuffer result = new StringBuffer();
318
    Enumeration rs = resultset.elements(); 
319

    
320
    result.append("<?xml version=\"1.0\"?>\n");
321
    result.append("<resultset>\n"); 
322
    while (rs.hasMoreElements()) {
323
        val = (String)rs.nextElement();
324
        result.append("   <" + tag + ">" + val + "</" + tag + ">\n");
325
    }
326
    result.append("</resultset>\n"); 
327
    
328
    return result.toString();
329
  }
330

    
331
  /**
332
   * get the lastest Accession Number from a particular scope
333
   */
334
  public String getMaxDocid(String scope)
335
        throws SQLException  {
336

    
337
    String accnum = null;
338
    String sep = MetaCatUtil.getOption("accNumSeparator");
339
    PreparedStatement pstmt = null;
340
    DBConnection dbConn = null;
341
    int serialNumber = -1;
342
    try {
343
        dbConn=DBConnectionPool.
344
                  getDBConnection("DBUtil.getMaxDocid");
345
        serialNumber=dbConn.getCheckOutSerialNumber();
346
        pstmt =
347
        dbConn.prepareStatement(
348
            "SELECT docid, rev, acc FROM " +
349
            "( " +
350
            "SELECT docid, rev, acc FROM " +
351
                "(" +
352
                "SELECT docid, rev, " + 
353
                "SUBSTR(docid, INSTR(docid, '" + sep + "', 1)+1)+0 acc " +
354
                "FROM xml_documents " +
355
                "WHERE docid LIKE ? " +
356
                "ORDER BY acc DESC " +
357
                ") " +
358
            "WHERE rownum = 1 " +
359
            "UNION " + 
360
            "SELECT docid, rev, acc FROM " +
361
                "(" +
362
                "SELECT docid, rev, " + 
363
                "SUBSTR(docid, INSTR(docid, '" + sep + "', 1)+1)+0 acc " +
364
                "FROM xml_revisions " +
365
                "WHERE docid LIKE ? " +
366
                "ORDER BY acc DESC " +
367
                ") " +
368
            "WHERE rownum = 1 " +
369
            ") " +
370
            "ORDER BY acc DESC"
371
            );
372

    
373
      pstmt.setString(1,scope + sep + "%");
374
      pstmt.setString(2,scope + sep + "%");
375
      pstmt.execute();
376
      ResultSet rs = pstmt.getResultSet();
377
      boolean tableHasRows = rs.next(); 
378
      // 0, 1 or 2 possible num of rows
379
      // get the first one which is the max accnum
380
      if (tableHasRows) {
381
        accnum = rs.getString(1) + sep + rs.getString(2);
382
        //tableHasRows = rs.next();
383
      }
384
      
385
      pstmt.close();
386

    
387
    } catch (SQLException e) {
388
      throw new SQLException("DBUtil.getMaxDocid(). " + e.getMessage());
389
    }
390
    finally
391
    {
392
      try
393
      {
394
        pstmt.close();
395
      }//try
396
      finally
397
      {
398
        DBConnectionPool.returnDBConnection(dbConn, serialNumber);
399
      }//finally
400
    }//finally
401

    
402
    return accnum;
403
  }
404
  
405
  /**
406
   * To a given docid, found a dataset docid which conatains the the given doicd
407
   * This will be done by searching xml_relation table
408
   * If couldn't find, null will be return
409
   * @param givenDocId, the docid which we want to find
410
   */
411
  public static String findDataSetDocIdForGivenDocument(String givenDocId)
412
  {
413
    // Prepared statement for sql
414
    PreparedStatement pStmt = null;
415
    // Result set
416
    ResultSet resultSet = null;
417
    // String to store the data set docid
418
    String dataSetDocId = null;
419
    // DBConnection will be checkout
420
    DBConnection dbConn = null;
421
    int serialNumber = -1;
422
    // String to store the sql command
423
    String sqlCommand = null;
424
    try
425
    {
426
      // Checkout DBConnection from pool
427
      dbConn=DBConnectionPool.
428
                  getDBConnection("DBUtil.findDataSetDocIdForGivenDocument");
429
      serialNumber=dbConn.getCheckOutSerialNumber();
430
      // Sql command to chose a docid from xm_relation table
431
      sqlCommand = "select docid from xml_relation where object like ? or " 
432
                                                    + "subject like ?";
433
      // Prepared statement
434
      pStmt = dbConn.prepareStatement(sqlCommand);
435
      // Bind variable
436
      pStmt.setString(1, givenDocId);
437
      pStmt.setString(2, givenDocId);
438
      // Excute prepared statement
439
      pStmt.execute();
440
      // Get result set
441
      resultSet = pStmt.getResultSet();
442
      
443
      // There has record
444
      if (resultSet.next())
445
      {
446
        // Put the docid into dataSetDocid
447
        dataSetDocId = resultSet.getString(1);
448
        return dataSetDocId;
449
      }//if
450
      else
451
      {
452
        // No record in xml_relation table for given doicd, null returned
453
        return dataSetDocId;
454
      }//else
455
    
456
    }//try
457
    catch ( SQLException e)
458
    {
459
      // Print out excepition
460
      MetaCatUtil.debugMessage("Error in DBUil.findDataSEtDocIdForGivenDocument"
461
                                +e.getMessage(), 30);
462
      // return null
463
      return dataSetDocId;
464
     
465
    }//catch
466
    finally
467
    {
468
      try
469
      {
470
        // Close result set
471
        resultSet.close();
472
        // Close preparedStatement
473
        pStmt.close();
474
      }//try
475
      catch ( SQLException e)
476
      {
477
        // Print out excepition
478
        MetaCatUtil.debugMessage("Error in DBUil.findDataSetDocIdForGivenDoc"
479
                                + e.getMessage(), 30);
480
     
481
      }//catch
482
      finally
483
      {
484
        // Return DBConnection to the pool
485
        DBConnectionPool.returnDBConnection(dbConn, serialNumber);
486
      }//finally
487
    }//finally
488
        
489
  }//findDataSetDocIdForGivenDocument
490
  
491
  /**
492
   * Method to get current revision and doctype for a given docid
493
   * The output will look like "rev;doctype"
494
   * @param givenDocId, the docid which we want 
495
   */
496
  public String getCurrentRevisionAndDocTypeForGivenDocument(String givenDocId)
497
                                                 throws SQLException
498
  {
499
    // DBConection for JDBC
500
    DBConnection dbConn = null;
501
    int serialNumber = -1;
502
    // Prepared Statement
503
    PreparedStatement pstmt = null;
504
    // String to store a docid without rev
505
    String docIdWithoutRevision = null;
506
    // SQL comand
507
    String sqlCommand = null;
508
    // Resulst set
509
    ResultSet rs = null;
510
    // String to store the revision
511
    String revision = null;
512
    // String to store the doctype
513
    String docType = null;
514
    
515
    // Get docid without rev
516
    docIdWithoutRevision = MetaCatUtil.getDocIdFromString(givenDocId);
517
    // SQL comand is:
518
    sqlCommand = "select rev, doctype from xml_documents where docid like ?";
519
    
520
    try
521
    {
522
      // Check out the connection
523
      dbConn=DBConnectionPool.
524
         getDBConnection("DBUtil.getCurrentRevisionAndDocTypeForGivenDocument");
525
      serialNumber=dbConn.getCheckOutSerialNumber();
526
      
527
      // Prepare the sql command
528
      pstmt = dbConn.prepareStatement(sqlCommand);
529
      // Bin vairable
530
      pstmt.setString(1, docIdWithoutRevision);
531
      // Excute the prepared statement
532
      pstmt.execute();
533
      // Get result set
534
      rs = pstmt.getResultSet();
535
      // If there is some record
536
      if (rs.next())
537
      {
538
        revision = rs.getString(1);
539
        docType = rs.getString(2);
540
      }//if
541
      else
542
      {
543
        // No record, throw a exception
544
        throw new 
545
              SQLException("There is not record for given docid:"+givenDocId);
546
      }//else
547
        
548
    }
549
    finally
550
    {
551
      try
552
      {
553
        // Close result set
554
        rs.close();
555
        // Close preparedStatement
556
        pstmt.close();
557
      }//try
558
      catch ( SQLException e)
559
      {
560
        // Print out excepition
561
        MetaCatUtil.debugMessage("Error in DBUil.getCurrentRevisionAndDocType"
562
                                + e.getMessage(), 30);
563
     
564
      }//catch
565
      finally
566
      {
567
        // Return DBConnection to the pool
568
        DBConnectionPool.returnDBConnection(dbConn, serialNumber);
569
      }//finally
570
    }
571
    return revision+";"+docType;
572
  }//getCurrentRevisionAndDocTypeForGivenDocument
573
   
574
}
(27-27/61)