FTPFileEntryParserImpl.java

  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. package org.apache.commons.net.ftp;

  18. import java.io.BufferedReader;
  19. import java.io.IOException;
  20. import java.util.List;

  21. /**
  22.  * This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality. All the classes in the
  23.  * parser subpackage inherit from this.
  24.  */
  25. public abstract class FTPFileEntryParserImpl implements FTPFileEntryParser {
  26.     /**
  27.      * The constructor for a FTPFileEntryParserImpl object.
  28.      */
  29.     public FTPFileEntryParserImpl() {
  30.     }

  31.     /**
  32.      * This method is a hook for those implementors (such as VMSVersioningFTPEntryParser, and possibly others) which need to perform some action upon the
  33.      * FTPFileList after it has been created from the server stream, but before any clients see the list.
  34.      *
  35.      * This default implementation does nothing.
  36.      *
  37.      * @param original Original list after it has been created from the server stream
  38.      *
  39.      * @return <code>original</code> unmodified.
  40.      */
  41.     @Override
  42.     public List<String> preParse(final List<String> original) {
  43.         return original;
  44.     }

  45.     /**
  46.      * Reads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next. This default implementation simply calls
  47.      * BufferedReader.readLine().
  48.      *
  49.      * @param reader The BufferedReader object from which entries are to be read.
  50.      *
  51.      * @return A string representing the next ftp entry or null if none found.
  52.      * @throws IOException thrown on any IO Error reading from the reader.
  53.      */
  54.     @Override
  55.     public String readNextEntry(final BufferedReader reader) throws IOException {
  56.         return reader.readLine();
  57.     }
  58. }