summaryrefslogtreecommitdiff
path: root/scripting/java/com/sun/star/script/framework/provider/javascript/ScriptProviderForJavaScript.java
blob: 25edc0f851ddd2648c2aaec7f92134b218fbc231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   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 .
 */
package com.sun.star.script.framework.provider.javascript;

import com.sun.star.comp.loader.FactoryHelper;

import com.sun.star.document.XScriptInvocationContext;

import com.sun.star.frame.XModel;

import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;

import com.sun.star.reflection.InvocationTargetException;

import com.sun.star.registry.XRegistryKey;

import com.sun.star.script.framework.container.ScriptMetaData;
import com.sun.star.script.framework.log.LogUtils;
import com.sun.star.script.framework.provider.ClassLoaderFactory;
import com.sun.star.script.framework.provider.ScriptContext;
import com.sun.star.script.framework.provider.ScriptEditor;
import com.sun.star.script.framework.provider.ScriptProvider;
import com.sun.star.script.provider.ScriptExceptionRaisedException;
import com.sun.star.script.provider.ScriptFrameworkErrorException;
import com.sun.star.script.provider.ScriptFrameworkErrorType;
import com.sun.star.script.provider.XScript;

import com.sun.star.uno.XComponentContext;

import java.net.URL;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.ImporterTopLevel;
import org.mozilla.javascript.JavaScriptException;
import org.mozilla.javascript.Scriptable;

public class ScriptProviderForJavaScript {

    public static class ScriptProviderForJavaScript_2 extends ScriptProvider {

        public ScriptProviderForJavaScript_2(XComponentContext ctx) {
            super(ctx, "JavaScript");
        }

        @Override
        public XScript getScript(/*IN*/String scriptURI)
        throws com.sun.star.uno.RuntimeException, ScriptFrameworkErrorException {
            ScriptMetaData scriptData = null;

            try {
                scriptData = getScriptData(scriptURI);
                ScriptImpl script = new ScriptImpl(m_xContext, scriptData, m_xModel,
                                                   m_xInvocContext);
                return script;
            } catch (com.sun.star.uno.RuntimeException re) {
                throw new ScriptFrameworkErrorException(
                    "Failed to create script object: " + re.getMessage(),
                    null, scriptData.getLanguageName(), language, ScriptFrameworkErrorType.UNKNOWN);
            }
        }

        @Override
        public boolean hasScriptEditor() {
            return true;
        }

        @Override
        public ScriptEditor getScriptEditor() {
            return ScriptEditorForJavaScript.getEditor();
        }
    }

    /**
     * Returns a factory for creating the service.
     * This method is called by the <code>JavaLoader</code>
     * <p>
     *
     * @param  implName      the name of the implementation for which a service is desired
     * @param  multiFactory  the service manager to be used if needed
     * @param  regKey        the registryKey
     * @return               returns a <code>XSingleServiceFactory</code> for creating
     *                          the component
     * @see                  com.sun.star.comp.loader.JavaLoader
     */
    public static XSingleServiceFactory __getServiceFactory(String implName,
            XMultiServiceFactory multiFactory, XRegistryKey regKey) {

        XSingleServiceFactory xSingleServiceFactory = null;

        if (implName.equals(
                ScriptProviderForJavaScript.ScriptProviderForJavaScript_2.class.getName())) {

            xSingleServiceFactory =
                FactoryHelper.getServiceFactory(
                    ScriptProviderForJavaScript.ScriptProviderForJavaScript_2.class,
                    "com.sun.star.script.provider.ScriptProviderForJavaScript",
                    multiFactory, regKey);

        }

        return xSingleServiceFactory;
    }
}

class ScriptImpl implements XScript {

    private ScriptMetaData metaData;
    private XComponentContext m_xContext;
    private XMultiComponentFactory m_xMultiComponentFactory;
    private XModel m_xModel;
    private XScriptInvocationContext m_xInvocContext;

    ScriptImpl(XComponentContext ctx, ScriptMetaData metaData, XModel xModel,
               XScriptInvocationContext xInvocContext) throws
        com.sun.star.uno.RuntimeException {

        this.metaData = metaData;
        this.m_xContext = ctx;
        this.m_xModel = xModel;
        this.m_xInvocContext = xInvocContext;

        try {
            this.m_xMultiComponentFactory = m_xContext.getServiceManager();
        } catch (Exception e) {
            throw new com.sun.star.uno.RuntimeException(e);
        }

        LogUtils.DEBUG("ScriptImpl [javascript] script data = " + metaData);
    }

    /**
     *  The invoke method of the ScriptProviderForJavaScript runs the
     *  JavaScript script specified in the URI
     *
     *
     *
     * @param params            All parameters; pure, out params are
     *                          undefined in sequence, i.e., the value
     *                          has to be ignored by the callee
     *
     * @param aOutParamIndex    Out indices
     *
     * @param aOutParam         Out parameters
     *
     * @return                  The value returned from the function
     *                          being invoked
     *
     * @throws ScriptFrameworkErrorException If there is no matching script name
     *
     *
     * @throws InvocationTargetException If the running script throws
     *                                   an exception this information
     *                                   is captured and rethrown as
     *                                   ScriptErrorRaisedException or
     *                                   ScriptExceptionRaisedException
     */
    public Object invoke(
        /*IN*/Object[]  params,
        /*OUT*/short[][]  aOutParamIndex,
        /*OUT*/Object[][]  aOutParam)
    throws ScriptFrameworkErrorException, InvocationTargetException {

        // Initialise the out parameters - not used at the moment
        aOutParamIndex[0] = new short[0];
        aOutParam[0] = new Object[0];

        ClassLoader cl = null;
        URL sourceUrl = null;

        try {
            cl = ClassLoaderFactory.getURLClassLoader(metaData);
            sourceUrl = metaData.getSourceURL();
        } catch (java.net.MalformedURLException mfu) {
            throw new ScriptFrameworkErrorException(
                mfu.getMessage(), null,
                metaData.getLanguageName(), metaData.getLanguage(),
                ScriptFrameworkErrorType.MALFORMED_URL);
        }

        Context ctxt = null;

        try {
            String editorURL = sourceUrl.toString();
            Object result = null;

            ScriptEditorForJavaScript editor =
                ScriptEditorForJavaScript.getEditor(metaData.getSourceURL());

            if (editor != null) {
                editorURL = editor.getURL();
                result = editor.execute();

                if (result != null  &&
                    result.getClass().getName().equals("org.mozilla.javascript.Undefined")) {
                    // Always return a string
                    // TODO revisit
                    return Context.toString(result);
                }

            }

            String source;

            if (editor != null && editor.isModified()) {
                LogUtils.DEBUG("GOT A MODIFIED SOURCE");
                source = editor.getText();
            } else {
                metaData.loadSource();
                source =  metaData.getSource();

            }

            if (source == null || source.length() == 0) {
                throw new ScriptFrameworkErrorException(
                    "Failed to read source data for script", null,
                    metaData.getLanguageName(), metaData.getLanguage(),
                    ScriptFrameworkErrorType.UNKNOWN);
            }

            /* Set the context ClassLoader on the current thread to
               be our custom ClassLoader. This is the suggested method
               for setting up a ClassLoader to be used by the Rhino
               interpreter
             */
            if (cl != null) {
                Thread.currentThread().setContextClassLoader(cl);
            }

            // Initialize a Rhino Context object
            ctxt = Context.enter();

            /* The ImporterTopLevel ensures that importClass and
               importPackage statements work in Javascript scripts
               Make the XScriptContext available as a global variable
               to the script
             */
            ImporterTopLevel scope = new ImporterTopLevel(ctxt);

            Scriptable jsCtxt =
                Context.toObject(
                    ScriptContext.createContext(
                        m_xModel, m_xInvocContext, m_xContext,
                        m_xMultiComponentFactory),
                    scope);

            scope.put("XSCRIPTCONTEXT", scope, jsCtxt);

            Scriptable jsArgs = Context.toObject(params, scope);
            scope.put("ARGUMENTS", scope, jsArgs);

            result = ctxt.evaluateString(scope, source, "<stdin>", 1, null);
            result = Context.toString(result);
            return result;
        } catch (JavaScriptException jse) {
            LogUtils.DEBUG("Caught JavaScriptException exception for JavaScript type = "
                           +       jse.getClass());
            String message = jse.getMessage();
            Object wrap = jse.getValue();
            LogUtils.DEBUG("\t message  " + message);
            LogUtils.DEBUG("\t wrapped type " + wrap.getClass());
            LogUtils.DEBUG("\t wrapped toString  " + wrap.toString());
            ScriptExceptionRaisedException se = new
            ScriptExceptionRaisedException(message);
            se.lineNum = -1;
            se.language = "JavaScript";
            se.scriptName = metaData.getLanguageName();
            se.exceptionType = wrap.getClass().getName();
            se.language = metaData.getLanguage();
            LogUtils.DEBUG("ExceptionRaised exception  ");
            LogUtils.DEBUG("\t message  " + se.getMessage());
            LogUtils.DEBUG("\t lineNum  " + se.lineNum);
            LogUtils.DEBUG("\t language  " + se.language);
            LogUtils.DEBUG("\t scriptName  " + se.scriptName);
            raiseEditor(se.lineNum);
            throw new InvocationTargetException(
                "JavaScript uncaught exception" + metaData.getLanguageName(), null, se);
        } catch (Exception ex) {
            LogUtils.DEBUG("Caught Exception " + ex);
            LogUtils.DEBUG("rethrowing as ScriptFramework error");
            throw new ScriptFrameworkErrorException(
                ex.getMessage(), null, metaData.getLanguageName(),
                metaData.getLanguage(), ScriptFrameworkErrorType.UNKNOWN);
        } finally {
            if (ctxt != null) {
                Context.exit();
            }
        }
    }

    private void raiseEditor(int lineNum) {
        try {
            URL sourceUrl = metaData.getSourceURL();

            ScriptEditorForJavaScript editor =
                ScriptEditorForJavaScript.getEditor(sourceUrl);

            if (editor == null) {
                editor = ScriptEditorForJavaScript.getEditor();

                editor.edit(
                    ScriptContext.createContext(m_xModel, m_xInvocContext,
                                                m_xContext, m_xMultiComponentFactory),
                    metaData);

                editor = ScriptEditorForJavaScript.getEditor(sourceUrl);
            }

            if (editor != null) {
                System.out.println("** Have raised IDE for JavaScript, calling indicateErrorLine for line "
                                   + lineNum);
                editor.indicateErrorLine(lineNum);
            }
        } catch (Exception ignore) {
        }
    }
}