Proposed Harmony Architecture

由于是技术架构,很多的专有词语和概念将不强调使用中文进行表示。本稿尚未全部完成。

This is based on "Harmony: The Apache J2SDK Project" (http://www.jguru.se/jguru/control/Developers/Harmony) with a few changes taken from the Harmony mailing list (http://mail-archives.apache.org/mod_mbox/incubator-harmony-dev). Please direct any comments and discussions there, and include changes on this page when consensus is reached.

Harmony is a project from the Apache Foundation aimed at creating a stable and open-source implementation of the Java 2 SDK. It is not a Java 2 Enterprise Edition (J2EE) application server, nor does it handle the Java 2 Micro Edition (J2ME) applications.

Initial Requirements

The major requirements for Project Harmony are evident and given by the JDK Technology Compatibility Kit (TCK). Several other requirements are, however, required:

  1. Simple porting and use of OS native facilities. This requirement can be managed by introducing the OS Abstraction Layer (OAL) which is the only point of contact between the JVM and the native OS, or the tool library and the native OS respectively. It is vital that the OAL is thin and that its boundaries may be moved within the JVM to deliver optimum performance on all or most OSes. 2. Reduce required library clutter and promote augmentation of JDK tools. This requirement can be met by using a common library for all tools. By reducing the number of top-layer dependencies and keeping a clean API, we may increase developer throughput in project aiming to provide, say, GUI versions of JDK standard tools.

Please provide more suggestions for requirements - and let us keep them measurable from now on. (smile)

Initial Architecture and Subprojects

I propose initial architecture and subprojects for Harmony as outlined below. Each of the (sub)projects should adhere to the standard Apache project model, unless a particularly good reason tells us not to. Originating from the early discussions on the Harmony mailing list, I have created some structure sketches on the project.

http://www.jguru.se/jguru/Channel_Html/generic/images/developers/harmony/overall.jpg

The main internal structure of the JVM and class library project is illustrated above. According to discussions on the development list:

  • The classpath project aims at creating a cleanroom, open source implementation of the Java standard API. GNU Classpath (http://www.gnu.org/software/classpath) may be used to fill the need of the classpath project, given that licensing may be honored on both sides, and proper credits are given.
  • The JVM project aims at creating a cleanroom, open source implementation of the Java Virtual Machine. There has been discussions of implementing it in Java, C/C++, or using a framework in which each component can be written in different languages. We currently lack a good choice for JVM code baseline. Potentially, we face reimplementing from scratch.
  • The OS Abstraction Layer (OAL) project aims at defining and enforcing a thin wrapper layer which connects the JVM and the classpath to the services of the native OS. This layer is the only part directly interacting with the OS for non-development versions of the JVM. Currently the Apache Portable Runtime (APR) (http://apr.apache.org) seems the best choice.
  • The development facilities project aims at creating APIs and tools to facilitate debugging and development-time profiling in order to track state within the JVM. Development facilities should be stripped from the build for non-development releases. Development facilities must be adapted to the JVM, and will therefore be defined pending the choice of JVM.

JVM subprojects

The main Harmony project in terms of volume is likely the JVM project as illustrated in the overall project structure above. We should therefore split the development effort of the JVM project into a few subprojects. as illustrated below. http://www.jguru.se/jguru/Channel_Html/generic/images/developers/harmony/jvm_projects.jpg

It seems reasonable that we can identify (at least) three subprojects with a number of development goals inside the JVM. These are

  • ClassLoading. This project provides facilities for loading Java bytecode streams, verifying integrity and optionally performing pre-runtime optimizations. (I.e. all activities before any bytecode is actually executed).
    • Loader. Loads bytecode streams as requested by a java.lang.ClassLoader
    • Verifier. Verifies the integrity of the loaded bytecode stream.
    • Optimizer. Performs simple optimizations on loaded bytecode in order to reduce its size or rearrange operations as required by the native processor or OS.
  • Runtime. This project provides facilities for executing Java code already verified by the ClassLoading facilities. This includes performing runtime optimizations if applicable, and interfacing with requested native OS services as requested by the Java class.
    • MemoryManager. Garbage Collection, Memory allocation and automatic Object storage management [i.e. full heap management].

    • ThreadManager. Manages memory and services on a per-thread basis.
    • JIT. Standard Just-In-Time compiler converting pre-optimized bytecode to executable machine code for the platform in question.
    • Native Interface. The Java Native Interface connection to the services of the native OS.
  • Statistics. No JVM is complete without facilities to measure and tune its performance in runtime. This is the task of the statistics project.
    • Profiling. Standard profiling interface which provides information about resource allocation and usage for the running JVM. I recommend that we provide facilities to modify runtime parameters on the fly through this interface.
    • Crash Talkback. It is important to receive crash dump information from JVMs to provide statistical information about runtime bugs, faulty optimizations or other such data. The talkback services sends this information over the internet to our statistics collection server.

As usual, these may not be the optimal or final project or development streams. Your comments are welcome.

Development Facilities Subprojects

Development facilities exist to enhance the overall development process, and should be stripped from the build in production releases (or, at least, non-development and -debug releases). Development facilities may explore state or data flow in any layer of the JVM, class library or OAL.

http://www.jguru.se/jguru/Channel_Html/generic/images/developers/harmony/devfacilities_projects.jpg

I recommend (at least) the following projects under the Development Facilities umbrella.

  • Internal Tools. This project provides development facilities checking state and delivering development state profiling information in the running JVM.
    • Trace. Investigates state in all parts of the JVM; a "debugger-on-steroids" interface.
    • Thread Profiler. Collects statistics information from all running threads in the JVM and provides mechanisms to alter Thread runtime parameters and/or priorities.
  • Analyzer. Creates simple-to-understand reports from reports retrieved from the net or local JVM.
    • Talkback Analyzer. Reads a set of talkback reports and collects relevant statistics from them. This developer stream should perhaps not be located in the Development Facilities project, but has been placed here for now and for lack of a better place.
    • Introspection GUI. The biggest problem with obtaining profiling information from several current JVMs is the complexity of the information interface. I propose that we create a slim and simple GUI for the Harmony development facilities where such information may be visualized in a simple manner.

Again, feedback is welcome - but use the Harmony mailing list for the feedback.

Modular Structure JVM Components

  • Execution Modules
    • Execution Manager
    • Execution Engine
    • Code generator
    • Profile Collector
  • GC
  • Threading/sync Manager
  • Platform Portability Layer (OS and HW)
  • Class Libraries
  • Platform Accessors
  • VM Accessors
  • VM Core (the hub that glues all the above modules together)

VM Core Sub-components

  • JNI native interface module
  • JNI invocation interface module
  • Global/local references manager
  • Reflection manager (i.e., used by reflection native code)
  • Invocation manager - required to dynamically invoke methods from within the VM itself
  • Exception manager - can unwind stacks to throw exceptions
  • Bootstrapper - code to get the VM started
  • Resolver - performs field, class, method resolution
  • Verifier
  • Class initializer - invokes <clinit>'s
  • Boot loader - the bootstrap class loader (reads ZIP files, etc)
  • Class deriver - defines runtime types (including array types)
  • Native library manager - dlopen()'s native libs, finds functions
  • Properties manager - sets system properties (e.g., "java.vm.name").
  • String manager - converts between String <-> char *utf8; interning
  • Memory allocator - allocator for non-Java-heap memory
  • Finalizer module

J2SDK Toolkit Architecture

In addition to the JVM and classpath, the standard JDK tools must be implemented for Harmony. These tools includes:

  • An appletviewer
  • A Browser Java plug-in
  • A Java compiler (javac). Possible candidates is Eclipse and Jikes.
  • A jar utility & signer
  • A javadoc utility
  • more?

These utilities can either be written in Java using the classpath project, or written in C/C++. In the later case we should, to promote reuse and facilitate deployment, strive for a single distribution library (called Common Tools Library or CTL in the image below) on top of the OAL from the JVM project.

http://www.jguru.se/jguru/Channel_Html/generic/images/developers/harmony/tools.jpg

The overall tool goal is to permit or promote augmented clients in addition to the standard-named ones. I believe most of us would like to see an augmented keytool that could - say - provide native OpenSSL CA management directly to the default keystore. Given a decent Swing-based GUI for the job, key management annoyances would likely be greatly reduced compared to today's text-based equivalent. Alas, we would strive for the situation illustrated below:

http://www.jguru.se/jguru/Channel_Html/generic/images/developers/harmony/tools_example.jpg

  • No labels