org.jsonschema2pojo.ScalaFileCodeWriter.java Source code

Java tutorial

Introduction

Here is the source code for org.jsonschema2pojo.ScalaFileCodeWriter.java

Source

/**
 * Copyright  2010-2017 Nokia
 *
 * Licensed 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 org.jsonschema2pojo;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import org.apache.commons.io.FileUtils;

import com.mysema.scalagen.ConversionSettings;
import com.mysema.scalagen.Converter;
import com.sun.codemodel.JPackage;

public class ScalaFileCodeWriter extends com.sun.codemodel.writer.FileCodeWriter {

    public ScalaFileCodeWriter(final File target, final String encoding) throws IOException {
        super(target, encoding);
    }

    public OutputStream openBinary(JPackage pkg, String fileName) throws IOException {
        final ByteArrayOutputStream javaSourceStream = new ByteArrayOutputStream();

        final String javaFileName = getFile(pkg, fileName).getAbsolutePath();
        final String scalaFileName = javaFileName.replaceAll("\\.java$", ".scala");

        return new FilterOutputStream(javaSourceStream) {
            public void close() throws IOException {
                super.close();

                final String javaSource = new String(javaSourceStream.toByteArray(), encoding);
                final String scalaSource = Converter.instance210().convert(javaSource,
                        new ConversionSettings(false));

                FileUtils.writeStringToFile(new File(scalaFileName), scalaSource, encoding);
            }
        };
    }

}