org.opoo.press.resource.Compass.java Source code

Java tutorial

Introduction

Here is the source code for org.opoo.press.resource.Compass.java

Source

/*
 * Copyright 2014 Alex Lin.
 *
 * 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.opoo.press.resource;

import org.apache.commons.io.FilenameUtils;
import org.jruby.embed.ScriptingContainer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.io.PrintWriter;
import java.io.StringWriter;

/**
 * @author Alex Lin
 *
 */
class Compass {
    private static final Logger log = LoggerFactory.getLogger(Compass.class);
    private String path;
    private String config;
    //   private ScriptingContainer container;

    Compass(File path, File configFile) {
        this.path = FilenameUtils.separatorsToUnix(path.getAbsolutePath());
        this.config = FilenameUtils.separatorsToUnix(configFile.getAbsolutePath());
    }

    public void compile() {
        runScriptlet(buildCompileScript());
    }

    /**
     * Blocking method.
     */
    public void watch() {
        runScriptlet(buildWatchScript());
    }

    private void runScriptlet(String script) {
        log.debug(script);
        new ScriptingContainer().runScriptlet(script);
    }

    /*
    public void close(){
       if(container != null){
     Ruby runtime = container.getProvider().getRuntime();
     runtime.tearDown(false);
     log.debug("Tear down JRuby runtime: {}", runtime);
       }
    }*/

    private void buildBasicScript(PrintWriter script) {
        //script.println("require 'rubygems'");
        script.println("require 'compass'");
        script.println("frameworks = Dir.new(Compass::Frameworks::DEFAULT_FRAMEWORKS_PATH).path");
        script.println("Compass::Frameworks.register_directory(File.join(frameworks, 'compass'))");
        script.println("Compass::Frameworks.register_directory(File.join(frameworks, 'blueprint'))");
        script.println("Compass.add_project_configuration '" + config + "'");
        script.println("Compass.configure_sass_plugin!");
    }

    private String buildCompileScript() {
        StringWriter raw = new StringWriter();
        PrintWriter script = new PrintWriter(raw);

        buildBasicScript(script);

        script.println("Dir.chdir('" + path + "') do ");
        // script.println("Dir.chdir(File.dirname('" + config + "')) do ");
        script.println("  Compass.compiler.run");
        script.println("end");
        script.flush();

        return raw.toString();
    }

    private String buildWatchScript() {
        StringWriter raw = new StringWriter();
        PrintWriter script = new PrintWriter(raw);

        buildBasicScript(script);
        script.println("require 'compass/commands'");
        script.println("command = Compass::Commands::WatchProject.new('" + path + "', {})");
        script.println("command.perform");
        script.flush();

        return raw.toString();
    }
}