Chapter 1
|
Before You Begin
|
You can get the latest versions of this documentation at http://jace.reyelts.com/jace. An html version is available at http://jace.reyelts.com/jace/docs/guide/guide0.html and a pdf version is available at http://jace.reyelts.com/jace/docs/guide/guide.pdf.
If you're interested in learning how to develop with Jace, you've come to the right place, but first things first. If you've never used JNI before, you're going to be absolutely lost. No class library or set of tools can be an adequate substitute for the knowledge that you'll gain by reading through the freely available Java Native Interface Programmer's Guide and Java Native Interface Specification. Your time will have been well spent.
Jace is made available under the BSD license, which roughly means that you're free to do whatever you want to with it. Here's the fine print:
Copyright (c) 2002, Toby Reyelts
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
Neither the name of Toby Reyelts nor the names of his contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You've probably already got a development platform in mind, or perhaps two or three. Jace is excellent for cross-platform development, because it's built using only the standard C++ library and a JDK 1.2 or later compiler. Here's a matrix of all of the known Jace compatible compilers, operating systems, and architectures. If your favorite compiler/os/arch isn't listed, download the source and give the build a try. You're likely to experience a pleasant surprise.
|
Windows i386 |
Solaris Sparc |
Linux i386 |
MacOSX |
Visual C++ 6.0 |
X |
|
|
|
Visual C++ .NET (7.0 and 7.1) |
X |
|
|
|
Forte C++ 6.0 |
|
X |
|
|
GCC 3.x |
X |
X |
X |
X |
If you haven't already, you may download Jace from http://jace.reyelts.com/jace or http://sf.net/projects/jace. You'll get a jace[XXX].jar file (where XXX is the version of Jace being downloaded) which you can then simply extract using your favorite zip tool (for example, Winzip) or the JDK's jar utility. This is what you should see:
The release folder contains all of the binaries and tools you need to use Jace. It consists of the following folders:
- bin - The proxygen, batchgen, autoproxy, and peergen code-generation tools.
- docs - The documentation necessary to use Jace - including what you're staring at right now.
- examples - Several example programs used to demonstrate the features available in Jace.
- include - The header files that you need to #include when you develop with Jace.
- lib - Debug and release binaries of the Jace Runtime Library (JRL) for a few platforms (for example, Windows and Linux).
The source folder contains the source used to build the JRL and code-generation tools. This is where you can go to build your own version of the JRL if Jace didn't come with pre-built binaries for your platform. The source directory has the following folders:
- c++/include - The C++ header files required to build the JRL.
- c++/lib - The makefiles and scripts used to build the JRL for several platforms.
- c++/source - The C++ source files required to build the JRL.
- java/jace - The Java source files required to build the entire set of code-generation tools.
- java/classes - An intermediary build directory for the Java classes.