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 * https://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 18 package org.apache.commons.net.ftp; 19 20 import java.io.BufferedReader; 21 import java.io.IOException; 22 import java.util.List; 23 24 /** 25 * This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality. All the classes in the 26 * parser subpackage inherit from this. 27 */ 28 public abstract class FTPFileEntryParserImpl implements FTPFileEntryParser { 29 30 /** 31 * The constructor for a FTPFileEntryParserImpl object. 32 */ 33 public FTPFileEntryParserImpl() { 34 } 35 36 /** 37 * This method is a hook for those implementors (such as VMSVersioningFTPEntryParser, and possibly others) which need to perform some action upon the 38 * FTPFileList after it has been created from the server stream, but before any clients see the list. 39 * 40 * This default implementation does nothing. 41 * 42 * @param original Original list after it has been created from the server stream 43 * @return {@code original} unmodified. 44 */ 45 @Override 46 public List<String> preParse(final List<String> original) { 47 return original; 48 } 49 50 /** 51 * Reads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next. This default implementation simply calls 52 * BufferedReader.readLine(). 53 * 54 * @param reader The BufferedReader object from which entries are to be read. 55 * @return A string representing the next ftp entry or null if none found. 56 * @throws IOException thrown on any IO Error reading from the reader. 57 */ 58 @Override 59 public String readNextEntry(final BufferedReader reader) throws IOException { 60 return reader.readLine(); 61 } 62 }