001// ***************************************************************************************************************************
002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
003// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
005// * with the License.  You may obtain a copy of the License at                                                              *
006// *                                                                                                                         *
007// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
008// *                                                                                                                         *
009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
011// * specific language governing permissions and limitations under the License.                                              *
012// ***************************************************************************************************************************
013package org.apache.juneau.plaintext;
014
015import static org.apache.juneau.internal.IOUtils.*;
016
017import java.io.IOException;
018
019import org.apache.juneau.*;
020import org.apache.juneau.parser.*;
021
022/**
023 * Session object that lives for the duration of a single use of {@link PlainTextParser}.
024 *
025 * <p>
026 * This class is NOT thread safe.
027 * It is typically discarded after one-time use although it can be reused against multiple inputs.
028 */
029public class PlainTextParserSession extends ReaderParserSession {
030
031   /**
032    * Create a new session using properties specified in the context.
033    *
034    * @param ctx
035    *    The parser creating this session object.
036    *    The parser contains all the configuration settings for this object.
037    * @param args
038    *    Runtime session arguments.
039    */
040   protected PlainTextParserSession(PlainTextParser ctx, ParserSessionArgs args) {
041      super(ctx, args);
042   }
043
044   @Override /* ParserSession */
045   protected <T> T doParse(ParserPipe pipe, ClassMeta<T> type) throws IOException, ParseException, ExecutableException {
046      return convertToType(read(pipe.getReader()), type);
047   }
048
049   //-----------------------------------------------------------------------------------------------------------------
050   // Other methods
051   //-----------------------------------------------------------------------------------------------------------------
052
053   @Override /* Session */
054   public ObjectMap toMap() {
055      return super.toMap()
056         .append("PlainTextParserSession", new DefaultFilteringObjectMap()
057         );
058   }
059}