File: jvmscript.h

package info (click to toggle)
kross-interpreters 4%3A22.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,488 kB
  • sloc: cpp: 12,206; java: 560; python: 375; ruby: 323; xml: 53; ansic: 38; makefile: 7
file content (99 lines) | stat: -rw-r--r-- 3,179 bytes parent folder | download | duplicates (6)
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
/***************************************************************************
 * jvmscript.h
 * This file is part of the KDE project
 *
 * copyright (C)2007 by Vincent Verhoeven <verhoevenv@gmail.com>
 * copyright (C)2007 by Sebastian Sauer <mail@dipe.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 * You should have received a copy of the GNU Library General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 ***************************************************************************/

#ifndef KROSS_JVMSCRIPT_H
#define KROSS_JVMSCRIPT_H

#include "jvmconfig.h"
#include <kross/core/script.h>

namespace Kross {

    /**
    * The JVMScript class implements the \a Kross::Script class to provide
    * an abstract script containerfor the java language. 
    */
    class JVMScript : public Script
    {
        public:

            /**
            * Constructor.
            *
            * \param interpreter The \a JVMInterpreter instance used
            * to create this JVMScript instance.
            * \param action The \a Kross::Action that contains details
            * about the actual Java code we got e.g. from an application
            * that uses Kross.
            */
            explicit JVMScript(Interpreter* interpreter, Action* action);

            /**
            * Destructor.
            */
            virtual ~JVMScript();

            /**
            * Execute the java code.
            */
            virtual void execute();

            /**
            * Return a list of methodnames the java code provides.
            */
            virtual QStringList functionNames() {
                //TODO
                return QStringList();
            }

            /**
            * Call a method in the java code.
            */
            virtual QVariant callFunction(const QString& name, const QVariantList& args = QVariantList()) {
                //TODO
                Q_UNUSED(name);
                Q_UNUSED(args);
                return QVariant();
            }

            /**
             * Evaluate some scripting code.
             *
             * \param code The scripting code to evaluate.
             * \return The return value of the evaluation.
             */
            virtual QVariant evaluate(const QByteArray& code) {
                //TODO
                Q_UNUSED(code);
                return QVariant();
            }

        private:
            /// \internal d-pointer class.
            class Private;
            /// \internal d-pointer instance.
            Private * const d;
    };

}

#endif