2009/05/20 - Apache Shale has been retired.

For more information, please explore the Attic.

Coverage Report - org.apache.shale.examples.sqlbrowser.Listener
 
Classes in this File Line Coverage Branch Coverage Complexity
Listener
0%
0/55
0%
0/10
7
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to you under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  *
 17  
  * $Id: Listener.java 464373 2006-10-16 04:21:54Z rahul $
 18  
  */
 19  
 
 20  
 package org.apache.shale.examples.sqlbrowser;
 21  
 
 22  
 import java.io.File;
 23  
 import java.sql.Connection;
 24  
 import java.sql.SQLException;
 25  
 import java.sql.Statement;
 26  
 import java.util.logging.Level;
 27  
 import java.util.logging.Logger;
 28  
 import javax.faces.FacesException;
 29  
 import javax.servlet.ServletContext;
 30  
 import javax.servlet.ServletContextEvent;
 31  
 import javax.servlet.ServletContextListener;
 32  
 import javax.sql.DataSource;
 33  
 
 34  
 /**
 35  
  * <p>A servlet context listener that sets up the embedded example database.</p>
 36  
  */
 37  0
 public class Listener implements ServletContextListener {
 38  
 
 39  
 
 40  
     // ------------------------------------------------------ Manifest Constants
 41  
 
 42  
 
 43  
     /**
 44  
      * <p>The application scope attribute under which we store a data source
 45  
      * for the embedded database.</p>
 46  
      */
 47  
     public static final String INTERNAL_DATA_SOURCE = "internal";
 48  
 
 49  
 
 50  
 
 51  
     // ------------------------------------------------------ Instance Variables
 52  
 
 53  
 
 54  
     /**
 55  
      * <p>The internal data source we have configured for Derby.</p>
 56  
      */
 57  0
     private InternalDataSource ds = null;
 58  
 
 59  
 
 60  
     /**
 61  
      * <p>The log instance for this class.</p>
 62  
      */
 63  0
     private transient Logger logger =
 64  
       Logger.getLogger(this.getClass().getName());
 65  
 
 66  
 
 67  
 
 68  
     // ------------------------------------------ ServletContextListener Methods
 69  
 
 70  
 
 71  
     /**
 72  
      * <p>Perform cleanup actions upon application shutdown.</p>
 73  
      */
 74  
     public void contextDestroyed(ServletContextEvent event) {
 75  
 
 76  0
         if (logger.isLoggable(Level.INFO)) {
 77  0
             logger.log(Level.INFO, "Shutting down database");
 78  
         }
 79  
 
 80  
         // Shut down the Derby data source
 81  
         try {
 82  0
             ds.shutdown();
 83  0
         } catch (SQLException e) {
 84  0
             if (logger.isLoggable(Level.SEVERE)) {
 85  0
                 while (e != null) {
 86  0
                     logger.log(Level.SEVERE, e.getMessage(), e);
 87  0
                     e = e.getNextException();
 88  0
                 }
 89  
             }
 90  0
         }
 91  
 
 92  0
     }
 93  
 
 94  
 
 95  
     /**
 96  
      * <p>Perform setup actions upon application startup.</p>
 97  
      */
 98  
     public void contextInitialized(ServletContextEvent event) {
 99  
 
 100  
         // Calculate a database URL for the database to be created
 101  0
         ServletContext context = event.getServletContext();
 102  0
         File tempDir = (File) context.getAttribute("javax.servlet.context.tempdir");
 103  0
         String url = tempDir.getAbsolutePath() + File.separator + "DATABASE";
 104  0
         if (logger.isLoggable(Level.INFO)) {
 105  0
             logger.log(Level.INFO, "Creating database " + url);
 106  
         }
 107  
 
 108  
         // Create and publish a data source for the embedded database
 109  
         try {
 110  0
             ds = new InternalDataSource(url);
 111  0
             populate(ds);
 112  0
         } catch (SQLException e) {
 113  0
             if (logger.isLoggable(Level.SEVERE)) {
 114  0
                 while (e != null) {
 115  0
                     logger.log(Level.SEVERE, e.getMessage(), e);
 116  0
                     e = e.getNextException();
 117  0
                 }
 118  
             }
 119  0
             throw new FacesException("SQLException occurred during startup (see log for details): " + e.getMessage());
 120  0
         }
 121  0
         context.setAttribute(INTERNAL_DATA_SOURCE, ds);
 122  
 
 123  0
     }
 124  
 
 125  
 
 126  
     // ----------------------------------------------------- Private Static Data
 127  
 
 128  
 
 129  
     /**
 130  
      * <p>Initialization commands for the internal database.  If an exception
 131  
      * occurs on the first one (presumed to be a CREATE TABLE), then the
 132  
      * database is assumed to be already populated.</p>
 133  
      */
 134  0
     private static final String populate[] = {
 135  
         "create table zip_codes (" +
 136  
           "zip_code           varchar(10)," +
 137  
           "city               varchar(30)," +
 138  
           "state              varchar(2)" +
 139  
           ")",
 140  
         "insert into zip_codes (zip_code, city, state) " +
 141  
           "values ('97005', 'Beaverton', 'OR')",
 142  
         "insert into zip_codes (zip_code, city, state) " +
 143  
           "values ('97006', 'Beaverton', 'OR')",
 144  
         "insert into zip_codes (zip_code, city, state) " +
 145  
           "values ('97007', 'Beaverton', 'OR')",
 146  
         "insert into zip_codes (zip_code, city, state) " +
 147  
           "values ('97008', 'Beaverton', 'OR')",
 148  
         "insert into zip_codes (zip_code, city, state) " +
 149  
           "values ('97075', 'Beaverton', 'OR')",
 150  
         "insert into zip_codes (zip_code, city, state) " +
 151  
           "values ('97076', 'Beaverton', 'OR')",
 152  
         "insert into zip_codes (zip_code, city, state) " +
 153  
           "values ('97077', 'Beaverton', 'OR')",
 154  
         "insert into zip_codes (zip_code, city, state) " +
 155  
           "values ('97078', 'Beaverton', 'OR')",
 156  
         "insert into zip_codes (zip_code, city, state) " +
 157  
           "values ('97034', 'Lake Oswego', 'OR')",
 158  
         "insert into zip_codes (zip_code, city, state) " +
 159  
           "values ('97035', 'Lake Oswego', 'OR')",
 160  
         "insert into zip_codes (zip_code, city, state) " +
 161  
           "values ('97062', 'Tualatin', 'OR')",
 162  
         "insert into zip_codes (zip_code, city, state) " +
 163  
           "values ('97068', 'West Linn', 'OR')",
 164  
         "insert into zip_codes (zip_code, city, state) " +
 165  
           "values ('97140', 'Sherwood', 'OR')",
 166  
         "insert into zip_codes (zip_code, city, state) " +
 167  
           "values ('97223', 'Tigard', 'OR')",
 168  
         "insert into zip_codes (zip_code, city, state) " +
 169  
           "values ('97224', 'Tigard', 'OR')",
 170  
         "insert into zip_codes (zip_code, city, state) " +
 171  
           "values ('97281', 'Tigard', 'OR')",
 172  
     };
 173  
 
 174  
 
 175  
 
 176  
     // --------------------------------------------------------- Private Methods
 177  
 
 178  
 
 179  
     /**
 180  
      * <p>Populate the internal database with dummy data.</p>
 181  
      *
 182  
      * @param ds <code>DataSource</code> for the internal database
 183  
      *
 184  
      * @exception SQLException if a database error occurs
 185  
      */
 186  
     private void populate(DataSource ds) throws SQLException {
 187  
 
 188  0
         int i = -1;
 189  0
         Connection conn = null;
 190  0
         Statement stmt = null;
 191  
         try {
 192  0
             conn = ds.getConnection();
 193  0
             for (i = 0; i < populate.length; i++) {
 194  0
                 System.err.println("populate():  Executing: " + populate[i]);
 195  0
                 stmt = conn.createStatement();
 196  0
                 stmt.executeUpdate(populate[i]);
 197  0
                 stmt.close();
 198  
             }
 199  0
         } catch (SQLException e) {
 200  0
             if (i == 0) {
 201  
                 return; // Database is already populated
 202  
             }
 203  0
             throw e;
 204  
         } finally {
 205  0
             if (stmt != null) {
 206  
                 try {
 207  0
                     stmt.close();
 208  0
                 } catch (SQLException e) {
 209  
                     ;
 210  0
                 }
 211  
             }
 212  0
             if (conn != null) {
 213  
                 try {
 214  0
                     conn.close();
 215  0
                 } catch (SQLException e) {
 216  
                     ;
 217  0
                 }
 218  0
             }
 219  0
         }
 220  
 
 221  0
     }
 222  
 
 223  
 
 224  
 }