/* * Copyright 2008-2011 the original author or authors. * * 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 com.nominanuda.rhino.host; import static com.nominanuda.zen.oio.OioUtils.IO; import static org.mozilla.javascript.RhinoHelper.RHINO; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; import java.io.StringReader; import java.net.URI; import java.nio.charset.Charset; import javax.annotation.Nullable; import org.mozilla.javascript.Context; import org.mozilla.javascript.Scriptable; public class SourceModuleFactory implements ModuleFactory { private URI baseUri = null; private static final Charset UTF8 = Charset.forName("UTF-8"); public @Nullable Object create(String key, Scriptable thisObj, Scriptable scope, Context context) throws Exception { URI uri = baseUri == null ? URI.create(key) : baseUri.resolve(key); Scriptable moduleScope = RHINO.newObject(context, scope); try { Reader reader = new InputStreamReader(uri.toURL().openStream(), UTF8); Reader src = new StringReader("" + IO.readAndClose(reader) + ""); RHINO.putProperty(moduleScope, "exports", RHINO.newObject(context, moduleScope)); RHINO.putProperty(moduleScope, "require", RHINO.getProperty(scope, "require")); RHINO.evaluateReader(context, src, uri.toString(), moduleScope); } catch (IllegalArgumentException|IOException e) { return null; } Object result = RHINO.getProperty(moduleScope, "exports"); RHINO.deleteProperty(moduleScope, "require"); RHINO.deleteProperty(moduleScope, "exports"); return result; } public void setBaseUri(URI baseUri) { this.baseUri = baseUri; } }