Clover coverage report -
Coverage timestamp: Sun Nov 1 2009 23:08:24 UTC
file stats: LOC: 88   Methods: 2
NCLOC: 45   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DeleteCollection.java 0% 0% 0% 0%
coverage
 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: DeleteCollection.java 578602 2007-09-23 20:33:31Z natalia $
 18    */
 19   
 20    package org.apache.xindice.tools.command;
 21   
 22    import org.apache.xindice.client.xmldb.services.CollectionManager;
 23    import org.apache.xindice.tools.XMLTools;
 24   
 25    import org.xmldb.api.DatabaseManager;
 26    import org.xmldb.api.base.Collection;
 27   
 28    /**
 29    * DeleteCollection.java is designed to let the user delete or drop
 30    * a named Collection or Nested Collection from the Database or Parent
 31    * Collection respectively.
 32    *
 33    * @version $Revision: 578602 $, $Date: 2007-09-23 13:33:31 -0700 (Sun, 23 Sep 2007) $
 34    */
 35    public class DeleteCollection extends Command {
 36   
 37  0 public boolean execute(XMLTools.Config table) throws Exception {
 38   
 39    // Verify that the collection passed in is not null
 40  0 if (table.getString(XMLTools.COLLECTION) == null) {
 41  0 System.out.println("ERROR : Collection and switch required");
 42  0 return false;
 43    }
 44   
 45  0 if (table.getString(XMLTools.NAME_OF) == null) {
 46  0 System.out.println("ERROR : Name and switch required");
 47  0 return false;
 48    }
 49   
 50  0 Collection col = null;
 51  0 try {
 52    // Get a Collection reference to the collection to be deleted
 53  0 String colstring = normalizeCollectionURI(table.getString(XMLTools.COLLECTION),
 54    table.getBoolean(XMLTools.LOCAL));
 55  0 col = DatabaseManager.getCollection(colstring);
 56  0 if (col == null) {
 57  0 System.out.println("ERROR : Collection not found!");
 58  0 return false;
 59    }
 60   
 61    // Create a collection manager instance for the parent of the collection
 62  0 CollectionManager colman = (CollectionManager) col.getService("CollectionManager", XMLDBAPIVERSION);
 63   
 64    // Drop the collection
 65  0 colman.dropCollection(table.getString(XMLTools.NAME_OF));
 66   
 67  0 System.out.println("Deleted: " + table.getString(XMLTools.COLLECTION) + "/" + table.getString(XMLTools.NAME_OF));
 68   
 69    } finally {
 70  0 if (col != null) {
 71  0 col.close();
 72    }
 73    }
 74   
 75  0 return true;
 76    }
 77   
 78  0 public void usage() {
 79  0 System.out.println("Format: xindice dc -c <context> [-l [-d <path>]] [-v] [parameters...]");
 80  0 System.out.println();
 81  0 System.out.println("Drops a collection from the database or parent collection");
 82  0 System.out.println();
 83  0 System.out.println("Command-specific switches:");
 84  0 System.out.println(" -n|--nameOf <name>");
 85  0 System.out.println(" Name of the collection to be deleted");
 86  0 System.out.println();
 87    }
 88    }