Giter VIP home page Giter VIP logo

python-jvm-interpreter's Introduction

JVM implementation in Python

python-jvm-interpreter is an implementation of the Java Virtual Machine in Python. It works by parsing and interpreting the Java Class files.

Dependencies

In order to compile Java code to Java Bytecode, you will need to have javac. If you just want to run bytecode that is already compiled, all you need is a Python interpreter.

Running the tests

The project comes with a number of unit tests. If you run the shell script test.sh, it will compile the Java files in the example directory and run the unit tests. You will be able to see how many test passed and how many failed.

Even if you haven't touched anything critical, it is always a good idea to run the unit tests after each change. This will make sure that nothing breaks, and if it does you will immediately know why it broke.

As more functionality is implemented, the amount of test cases should be increased in order to make it easier to check if anything is broken.

python-jvm-interpreter's People

Contributors

gkbrk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

python-jvm-interpreter's Issues

Add transpiler

Would it be difficult to extend this to transpile JVM bytecode to Python?

Errors

I merely git clonned and ran the tests..

$ sh test.sh
EEEE............EE
======================================================================
ERROR: test_cocktail_sort (__main__.ArrayTest.test_cocktail_sort)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 89, in setUp
    self.jvm.load_class_file('example/ArrayTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

======================================================================
ERROR: test_insertion_sort (__main__.ArrayTest.test_insertion_sort)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 89, in setUp
    self.jvm.load_class_file('example/ArrayTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

======================================================================
ERROR: test_loop_multiple (__main__.ArrayTest.test_loop_multiple)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 89, in setUp
    self.jvm.load_class_file('example/ArrayTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

======================================================================
ERROR: test_sum (__main__.ArrayTest.test_sum)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 89, in setUp
    self.jvm.load_class_file('example/ArrayTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

======================================================================
ERROR: test_reverse_string (__main__.StringTest.test_reverse_string)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 56, in setUp
    self.jvm.load_class_file('example/StringTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

======================================================================
ERROR: test_rot13_hello_world (__main__.StringTest.test_rot13_hello_world)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/run_unittest.py", line 56, in setUp
    self.jvm.load_class_file('example/StringTest.class')
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/Machine.py", line 378, in load_class_file
    c = ClassFile().from_file(path)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/ClassFile.py", line 80, in from_file
    c = CPInfo().from_reader(cf)
        ^^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/home/topkek/t/a/python-jvm-interpreter/pyjvm/CPInfo.py", line 20, in from_reader
    self.tag = CPTag(tag)
               ^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 712, in __call__
    return cls.__new__(cls, value)
           ^^^^^^^^^^^^^^^^^^^^^^^
  File "E:/msys64/ucrt64/lib/python3.11/enum.py", line 1135, in __new__
    raise ve_exc
ValueError: 18 is not a valid CPTag

----------------------------------------------------------------------
Ran 18 tests in 0.236s

FAILED (errors=6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.