Clover coverage report -
Coverage timestamp: Sun Nov 1 2009 23:08:24 UTC
file stats: LOC: 80   Methods: 2
NCLOC: 40   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ListCollectionDocuments.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: ListCollectionDocuments.java 578602 2007-09-23 20:33:31Z natalia $
 18    */
 19   
 20    package org.apache.xindice.tools.command;
 21   
 22    import org.apache.xindice.tools.XMLTools;
 23   
 24    import org.xmldb.api.DatabaseManager;
 25    import org.xmldb.api.base.Collection;
 26   
 27    /**
 28    * ListCollectionDocumets.java is designed to let the user list all documents in a specific collection.
 29    *
 30    * NOTE: Document names are returned in no specific order
 31    *
 32    * @version $Revision: 578602 $, $Date: 2007-09-23 13:33:31 -0700 (Sun, 23 Sep 2007) $
 33    */
 34    public class ListCollectionDocuments extends Command {
 35   
 36  0 public boolean execute(XMLTools.Config table) throws Exception {
 37   
 38  0 if (table.getString(XMLTools.COLLECTION) == null) {
 39  0 System.out.println("ERROR : Collection and switch required");
 40  0 return false;
 41    }
 42   
 43  0 Collection col = null;
 44  0 try {
 45    // Create a collection instance
 46  0 String colstring = normalizeCollectionURI(table.getString(XMLTools.COLLECTION),
 47    table.getBoolean(XMLTools.LOCAL));
 48   
 49  0 col = DatabaseManager.getCollection(colstring);
 50  0 if (col == null) {
 51  0 System.out.println("ERROR : Collection not found!");
 52  0 return false;
 53    }
 54   
 55  0 String[] documentarray = col.listResources();
 56  0 System.out.println();
 57   
 58  0 for (int i = 0; i < documentarray.length; i++) {
 59  0 System.out.println("\t" + documentarray[i]);
 60    }
 61   
 62  0 System.out.println("\nTotal documents: " + documentarray.length);
 63    } finally {
 64    // Release the collection object
 65  0 if (col != null) {
 66  0 col.close();
 67    }
 68    }
 69   
 70  0 return true;
 71    }
 72   
 73  0 public void usage() {
 74  0 System.out.println("Format: xindice ld -c <context> [-l [-d <path>]] [-v]");
 75  0 System.out.println();
 76  0 System.out.println("List all documents in a specific collection. Document names are");
 77  0 System.out.println("returned in no specific order");
 78  0 System.out.println();
 79    }
 80    }