Project

General

Profile

1
/**
2
 *        Name: DBSAXElement.java
3
 *     Purpose: A Class that represents an XML element and its contents
4
 *   Copyright: 2000 Regents of the University of California and the
5
 *              National Center for Ecological Analysis and Synthesis
6
 *     Authors: Matt Jones
7
 *
8
 *     Version: '$Id: DBSAXNode.java 92 2000-05-11 23:34:09Z bojilova $'
9
 */
10

    
11
package edu.ucsb.nceas.metacat;
12

    
13
import java.sql.*;
14
import java.io.IOException;
15
import java.util.Hashtable;
16
import java.util.Enumeration;
17

    
18
/** 
19
 * A Class that represents an XML element and its contents and
20
 * can write its own representation to a database connection
21
 */
22
public class DBSAXElement extends BasicElement {
23

    
24
    private Connection		conn;
25

    
26
    /** 
27
     * Construct a new element instance
28
     *
29
     * @param conn the JDBC Connection to which all information is written
30
     * @param tagname the name of the element
31
     * @param parent_id the parent id number for this element
32
     */
33
    public DBSAXElement (Connection conn, String tagname, 
34
                         long parent_id, int nodeIndex) {
35

    
36
      super(tagname, parent_id, nodeIndex);
37

    
38
      this.conn = conn;
39
      writeElementToDB();
40
    }
41
    
42
    /** creates SQL code and inserts new element into DB connection */
43
    private void writeElementToDB() {
44
        try {
45
          conn.setAutoCommit(false);
46
          PreparedStatement pstmt;
47
          if (getParentID() != 0) {
48
            pstmt = conn.prepareStatement(
49
                "INSERT INTO xml_nodes (nodeid, nodetype, " +
50
                "nodename, parentnodeid, nodeindex) VALUES (null, ?, ?, ?, ?)");
51
          } else {
52
            pstmt = conn.prepareStatement(
53
                "INSERT INTO xml_nodes (nodeid, nodetype, nodename) " +
54
                "VALUES (null, ?, ?)");
55
          }
56

    
57
          // Bind the values to the query
58
          pstmt.setString(1, "ELEMENT");
59
          pstmt.setString(2, getTagName());
60
          //pstmt.setInt(4, null);
61
          if (getParentID() != 0) {
62
            pstmt.setLong(3, getParentID());
63
            pstmt.setInt(4, getNodeIndex());
64
          }
65
          // Do the insertion
66
          pstmt.execute();
67
          pstmt.close();
68
          setElementID(getAssignedElementID());
69
          conn.commit();
70
          conn.setAutoCommit(true);
71
        } catch (SQLException e) {
72
          System.out.println(e.getMessage());
73
        }
74
    }
75

    
76
    /** creates SQL code and inserts comment into DB connection */
77
    void writeCommentToDB(String data, int nodeIndex) {
78
        try {
79
          PreparedStatement pstmt;
80
          pstmt = conn.prepareStatement(
81
                "INSERT INTO xml_nodes (nodeid, nodetype, " +
82
                "nodename, parentnodeid, nodedata, nodeindex) VALUES (null, ?, null, ?, ?, ?)");
83

    
84
          // Bind the values to the query
85
          pstmt.setString(1, "COMMENT");
86
          pstmt.setLong(2, getElementID());
87
          pstmt.setString(3, data);
88
          pstmt.setInt(4, nodeIndex);
89
          // Do the insertion
90
          pstmt.execute();
91
          pstmt.close();
92
        } catch (SQLException e) {
93
          System.out.println(e.getMessage());
94
        }
95
    }
96

    
97
    /** look up the assigned element id from DB connection */
98
    private long getAssignedElementID() {
99
        long assigned_id=0;
100
        Statement stmt;
101
        try {
102
          stmt = conn.createStatement();
103
          stmt.execute("SELECT xml_nodes_id_seq.currval FROM dual");
104
          try {
105
            ResultSet rs = stmt.getResultSet();
106
            try {
107
              boolean tableHasRows = rs.next();
108
              if (tableHasRows) {
109
                try {
110
                  assigned_id = rs.getLong(1);
111
                } catch (SQLException e) {
112
                  System.out.println("Error with getInt: " + e.getMessage());
113
                }
114
              }
115
            } catch (SQLException e) {
116
              System.out.println("Error with next: " + e.getMessage());
117
            }
118
          } catch (SQLException e) {
119
            System.out.println("Error with getrset: " + e.getMessage());
120
          }
121
          stmt.close();
122
        } catch (SQLException e) {
123
          System.out.println("Error getting id: " + e.getMessage());
124
        }
125

    
126
        // assign the new ID number
127
        return assigned_id;
128
    }
129

    
130
    /** Add a new attribute to this element, or set its value */
131
    public void setAttribute(String attName, String attValue) {
132
      if (attName != null) {
133
        // Enter the attribute in the hash table
134
        super.setAttribute(attName, attValue);
135
 
136
        // And enter the attribute in the database
137
        try {
138
          PreparedStatement pstmt = conn.prepareStatement(
139
              "INSERT INTO xml_nodes (nodeid, nodetype, " +
140
              "nodename, nodedata, parentnodeid) VALUES (null, ?, ?, ?, ?)");
141

    
142
          // Bind the values to the query
143
          pstmt.setString(1, "ATTRIBUTE");
144
          pstmt.setString(2, attName);
145
          pstmt.setString(3, attValue);
146
          pstmt.setLong(4, getElementID());
147
 
148
          // Do the insertion
149
          pstmt.execute();
150
          pstmt.close();
151
        } catch (SQLException e) {
152
          System.out.println(e.getMessage());
153
        }
154

    
155
      } else {
156
        System.err.println("Attribute name must not be null!");
157
      }
158
    }
159

    
160
    /** Write the element content to the db connection */
161
    public void writeContentToDB() {
162
        try {
163
          PreparedStatement pstmt = conn.prepareStatement(
164
                "UPDATE xml_nodes SET nodedata = ? WHERE nodeid = ?");
165

    
166
          // Bind the values to the query
167
          pstmt.setString(1, getContent());
168
          pstmt.setLong(2, getElementID());
169

    
170
          // Do the update
171
          pstmt.execute();
172
          pstmt.close();
173

    
174
        } catch (SQLException e) {
175
          System.out.println(e.getMessage());
176
        }
177
    }
178
}
(9-9/20)