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

org.mule.mvel2.templates.res.CompiledIncludeNode Maven / Gradle / Ivy

Go to download

MVEL is a powerful expression language for Java-based applications. It provides a plethora of features and is suited for everything from the smallest property binding and extraction, to full blown scripts. This is a fork of MVEL customized for use in Mule.

There is a newer version: 2.1.9-MULE-019
Show newest version
/**
 * MVEL 2.0
 * Copyright (C) 2007 The Codehaus
 * Mike Brock, Dhanji Prasanna, John Graham, Mark Proctor
 *
 * 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.mule.mvel2.templates.res;

import org.mule.mvel2.MVEL;
import org.mule.mvel2.ParserContext;
import org.mule.mvel2.integration.VariableResolverFactory;
import org.mule.mvel2.templates.CompiledTemplate;
import org.mule.mvel2.templates.TemplateCompiler;
import org.mule.mvel2.templates.TemplateError;
import org.mule.mvel2.templates.TemplateRuntime;
import org.mule.mvel2.templates.util.TemplateOutputStream;

import java.io.*;

import static org.mule.mvel2.templates.util.TemplateTools.captureToEOS;

public class CompiledIncludeNode extends Node {

  private Serializable cIncludeExpression;
  private Serializable cPreExpression;
  private long fileDateStamp;
  private CompiledTemplate cFileCache;

  private ParserContext context;

  public CompiledIncludeNode(int begin, String name, char[] template, int start, int end, ParserContext context) {
    this.begin = begin;
    this.name = name;
    this.contents = template;
    this.cStart = start;
    this.cEnd = end - 1;
    this.end = end;
    this.context = context;

    int mark = captureToEOS(contents, cStart);
    cIncludeExpression = MVEL.compileExpression(contents, cStart, mark - cStart, context);
    if (mark != contents.length) {
      cPreExpression = MVEL.compileExpression(contents, ++mark, cEnd - mark, context);
    }
  }

  public Object eval(TemplateRuntime runtime, TemplateOutputStream appender, Object ctx, VariableResolverFactory factory) {
    String file = MVEL.executeExpression(cIncludeExpression, ctx, factory, String.class);

    if (this.cPreExpression != null) {
      MVEL.executeExpression(cPreExpression, ctx, factory);
    }

    if (next != null) {
      return next.eval(runtime, appender.append(String.valueOf(TemplateRuntime.eval(readFile(runtime, file, ctx, factory), ctx, factory))), ctx, factory);
    }
    else {
      return appender.append(String.valueOf(MVEL.eval(readFile(runtime, file, ctx, factory), ctx, factory)));
    }
  }

  private String readFile(TemplateRuntime runtime, String fileName, Object ctx, VariableResolverFactory factory) {
    File file = new File(String.valueOf(runtime.getRelPath().peek()) + "/" + fileName);
    if (fileDateStamp == 0 || fileDateStamp != file.lastModified()) {
      fileDateStamp = file.lastModified();
      cFileCache = TemplateCompiler.compileTemplate(readInFile(runtime, file), context);
    }
    return String.valueOf(TemplateRuntime.execute(cFileCache, ctx, factory));
  }

  public boolean demarcate(Node terminatingNode, char[] template) {
    return false;
  }

  public static String readInFile(TemplateRuntime runtime, File file) {
    try {
      FileInputStream instream = new FileInputStream(file);
      BufferedInputStream bufstream = new BufferedInputStream(instream);

      runtime.getRelPath().push(file.getParent());

      byte[] buf = new byte[10];
      int read;
      int i;

      StringBuilder appender = new StringBuilder();

      while ((read = bufstream.read(buf)) != -1) {
        for (i = 0; i < read; i++) {
          appender.append((char) buf[i]);
        }
      }

      bufstream.close();
      instream.close();

      runtime.getRelPath().pop();

      return appender.toString();

    }
    catch (FileNotFoundException e) {
      throw new TemplateError("cannot include template '" + file.getPath() + "': file not found.");
    }
    catch (IOException e) {
      throw new TemplateError("unknown I/O exception while including '" + file.getPath() + "' (stacktrace nested)", e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy