All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.tools.wsdlto.databinding.jaxb.TypesCodeWriter Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * 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 org.apache.cxf.tools.wsdlto.databinding.jaxb;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;

import com.sun.codemodel.CodeWriter;
import com.sun.codemodel.JPackage;

public class TypesCodeWriter extends CodeWriter {

    /** The target directory to put source code. */
    private File target;
    
    private List excludeFileList = new ArrayList();
    private List excludePkgList;
    
    private List generatedFiles = new ArrayList();

    public TypesCodeWriter(File ftarget, List excludePkgs) throws IOException {
        target = ftarget;
        excludePkgList = excludePkgs;
    }

    public OutputStream openBinary(JPackage pkg, String fileName) throws IOException {
        File f = getFile(pkg, fileName);
        generatedFiles.add(f);
        return new FileOutputStream(getFile(pkg, fileName));
    }

    public List getGeneratedFiles() {
        return generatedFiles;
    }
    
    protected File getFile(JPackage pkg, String fileName) throws IOException {
        String dirName = pkg.name().replace('.', File.separatorChar);
        File dir = pkg.isUnnamed() ? target : new File(target, dirName);
        if (!dir.exists()) {
            dir.mkdirs();
        }
        File fn = new File(dir, fileName);
        if (excludePkgList.contains(pkg.name())) {
            excludeFileList.add(dirName + File.separator + fileName);
        }
        if (fn.exists() && !fn.delete()) {
            throw new IOException(fn + ": Can't delete previous version");
        }
        return fn;
    }

    public void close() throws IOException {

    }
    
    public List getExcludeFileList() {
        return excludeFileList;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy