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

org.apache.flex.compiler.utils.VF2JSProjectUtils Maven / Gradle / Ivy

The 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.flex.compiler.utils;

import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;

import com.google.common.io.Files;


public class VF2JSProjectUtils
{

    private static File tempDir;
    
    public static final String createTempProject(String projectFilePath,
            boolean isFlashBuilderProject)
    {
        tempDir = Files.createTempDir();
        
        String fileName = projectFilePath.substring(projectFilePath.lastIndexOf(File.separator) + 1, projectFilePath.length());
        
        String path = projectFilePath.substring(0, projectFilePath.lastIndexOf(File.separator));
        
        createTempProjectDir(new File(path).listFiles(), "");
        
        return tempDir.getAbsolutePath() + File.separator + fileName;
    }

    private static void createTempProjectDir(File[] files, String parentPath)
    {
        for (File file : files) 
        {
            if (file.isDirectory()) 
            {
                String path = parentPath + File.separator + file.getName(); 
                
                new File(tempDir + File.separator + path).mkdirs();

                createTempProjectDir(file.listFiles(), path);
            } 
            else 
            {
                String fileName = file.getName();

                if (fileName.contains(".") && fileName.charAt(0) != '.')
                {
                    String extension = fileName.substring(fileName.lastIndexOf("."), fileName.length());
    
                    if (extension.equals(".mxml") || extension.equals(".as"))
                    {
                        File intermediateFile = file;
                        String tempFileName = fileName.substring(0, fileName.indexOf("."));
                        File targetDir = new File(tempDir + File.separator + parentPath);
                        
                        createTempFileWithVF2JSNamespace(intermediateFile, 
                                tempFileName, false, targetDir, extension);
                    }
                }
            }
        }
    }
    
    private static File createTempFileWithVF2JSNamespace(File intermediateFile,
            String tempFileName, boolean createTempFile, File targetDir,
            String extension)
    {
        File tempFile = null;
        
        try 
        {
            String content = FileUtils.readFileToString(intermediateFile, "UTF-8");

            // mx (MXML)
            content = content.replace(
                    "xmlns:mx=\"library://ns.adobe.com/flex/mx\"", 
                    "xmlns:vf2js_mx=\"http://flex.apache.org/vf2js_mx/ns\"");
            content = content.replace("




© 2015 - 2025 Weber Informatics LLC | Privacy Policy