com.mewmew.fairy.v1.spell.BaseLineSpell.java Source code

Java tutorial

Introduction

Here is the source code for com.mewmew.fairy.v1.spell.BaseLineSpell.java

Source

/*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
*/
package com.mewmew.fairy.v1.spell;

import com.mewmew.fairy.v1.pipe.ObjectPipe;
import com.mewmew.fairy.v1.pipe.Output;
import com.mewmew.fairy.v1.pipe.PipeUtil;
import org.apache.commons.io.LineIterator;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;

public abstract class BaseLineSpell<OutputType> extends PipeSpell {
    Output<OutputType> output;
    ObjectPipe<String, OutputType> pipe;

    protected BaseLineSpell() {
    }

    @Override
    public void process(InputStream in, OutputStream out) {
        LineIterator iter = null;
        try {
            output = createOutput(out);
            pipe = createPipe();
            iter = new LineIterator(new InputStreamReader(in));
            PipeUtil.process(iter, pipe, output);
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            if (iter != null) {
                iter.close();
            }
        }
    }

    @Override
    public void after() {
        if (output != null) {
            try {
                pipe.close(output);
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
        super.after();
    }

    public abstract Output<OutputType> createOutput(OutputStream out) throws IOException;

    protected abstract ObjectPipe<String, OutputType> createPipe();
}