Notes on Porting the PIA

(to embedded systems)

Alternatives

OS Alternatives:

Language Alternatives:

Note that the EGCS compilers now supports the SH4 processor; this comes from Cygnus's GNUPro. It may not support the SH3.

C Porting Considerations

Memory Management

Threads

Processor and Cursor Interfaces

Available Resources

Translating Java to C

Translating XML to C

What is Essential?

This is roughly equivalent to ``where to start.''

What can be Left Out?

What's Disorganized?

Several parts of the system are ``disorganized'' -- left in an incomplete or confusing state because we simply haven't had time to give them the attention they deserve. If you're doing a port, these parts should be done right instead of simply being copied.

Recommended Sequence

  1. org.risource.ds.{Table, List}
  2. org.risource.dps.active.{ParseTreeNode, ParseTreeText, ParseTreeElement, ...}
  3. org.risource.dps.output.ToParseTree
    at this point you can build parse trees in memory. Any parser can construct them.
  4. org.risource.dps.input.FromParseTree
  5. org.risource.dps.output.ToExternalForm
    at this point you can traverse a parse tree and output it as a character stream.
  6. org.risource.dps.handle.{BasicHandler, GenericHandler}
  7. org.risource.dps.util.{BasicNamespace, BasicEntityTable}; other classes in util as needed. Most of them are simple. Many are just class wrappers for a lot of global functions.
  8. org.risource.dps.process.BasicProcessor
    At this point you can actually process documents. You can parse them offline and create initialized C data structures if you like.
  9. org.risource.dps.parse.BasicParser
    This is optional -- you only need it if you are going to process documents that are represented as character strings. If you can stick with parse trees, you can leave it out.
  10. Handler classes for the tags you need.

In parallel with this you should be prototyping the user interface using a working PIA -- this will give you something you can interact with and test, and will tell you exactly which parts of the PIA you need to implement.

Scheme/DSSSL Porting Considerations


Copyright © 1999 Ricoh Innovations, Inc.
$Id: porting.html,v 1.9 2001-01-11 23:36:50 steve Exp $
Stephen R. Savitzky <steve@rii.ricoh.com>