Developers/Stack

From OLPC
< Developers
Revision as of 21:13, 14 December 2007 by Mcfletch (talk | contribs) (Basic Platform: waffley word)
Jump to: navigation, search

Previous Next

There are a number of approaches (software stacks) to develop software for the OLPC environment. The stack you choose will strongly influence what type of setup you need and what your actual development process will look like.

Basic Platform

The normal OLPC Operating stack looks like this:

  • Hardware -- normally an OLPC-XO, but could be another Linux machine that happens to have Sugar installed
  • Fedora Core 7 based Operating System
  • Bitfrost -- Security System
  • D-BUS Services -- various platform-specific services (most XO-specific hardware/operations are exposed via D-BUS)
    • Telepathy -- inter-machine RPC and presence engine
  • Sugar -- GUI Shell (desktop)
  • Software components

Activity Development Stacks

This section attempts to describe the major Activity development stacks available in the OLPC Sugar environment.

EToys

EToys is a Smalltalk development environment running on the Squeak virtual machine. Smalltalk is an "old" teaching language, that is, it has been in use for decades, and as a result has a huge body of components and pre-built content and resources that can be used to create new activities.

The EToys environment is easily scripted via GUI interactions, and components have access to the all of the special hardware features on the laptop. You can often create fascinating projects and useful demonstrations with just a few mouse clicks and bit of simple logic.

See: ??? to start using EToys to develop for the OLPC.

Browser

Sugar includes a Mozilla-Firefox-derived (Gecko) Web Browser Activity. This browser includes HTML, XHTML, Javascript and SVG support. You can set up simple web-servers on a laptop using Python, or children may access an application hosted on a public web server (but keep in mind that children often have very poor connectivity).

You can develop for this platform with no particular hardware or setup, and can test using regular Firefox during initial stages. It is easy to port work from elsewhere into this stack, and easy to export your work for use outside of the OLPC project. The environment is, however, rather constrained, without access to most of the special hardware or software components on the laptop.

Browser Component

The built-in Browser is actually just a thin wrapper around the Gecko control. You can use the Gecko control yourself and create web-browser derived activities, either using XUL or Python/PyGTK to instantiate the browser. This gives your Activity access to system services and hardware, at the cost of considerably more complexity.

See: ??? to start using XULRunner/Web Control to develop for the OLPC.

Python/PyGTK

Python and GTK based activities are the "standard" way to write software for the OLPC. Using Python and PyGTK is strongly encouraged so that the "View Source" button will normally show the same language whereever the user invokes it. The use of the same language throughout also means that code can often be factored out of one project to be shared with another.

The support for writing activities provided by the core Sugar system (which is itself largely written in Python) is almost always exposed first through Python libraries. On the Sugar platform, PyGTK has access to the following major libraries:

  • Cairo -- high performance postscript-like library for drawing vector graphics, with the RSVG SVG-rendering library
  • Pango -- flexible text layout system capable of dealing with complex internationalization issues
  • D-BUS -- inter-process communications
  • Telepathy -- inter-machine RPC and presence management with network traversal and discovery logic (activities are encouraged to use Tubes where practical)
  • NumPy -- high performance numeric analysis and array-handling
  • CSound -- acoustically modelled sound-synthesis engine (seen in the TamTam activity)
  • GStreamer -- general purpose media streaming platform, used for accessing the video camera and playing media
  • IPython -- enhanced interactive Python interpreter with syntax highlighting, command-completion and the like
  • Xapian -- full-text text-search engine
  • Avahi -- discovery and advertising mechanism for mesh-hosted services

GTK Controls:

  • Web Browser Control (HulaHop) -- Gecko 1.9 web browser as a simple embeddable control with Python DOM access
  • AbiWord/AbiCollab Control -- AbiWord word processor as an embeddable control with the ability to collaboratively edit with another user
  • Evince Control -- PDF and EBook-reading control
  • Pygame -- game development engine based on SDL (see OLPCGames), not exactly a control, but close...

in addition to the Python standard library, which includes rather a lot of built-in functionality. One key inclusion is the SQLite database engine, which provides a basic single-user SQL database which can be used by activities for storage.

Activities can use compiled Python extensions which are installed into their Activity directory. This can be used to provide access to the core of not-normally-Python activities you are porting. See #Low Level for more on this.

You may also consider rewriting areas that profiling say are problems in your activity as C extensions. This can save both processor load and memory depending on the nature of the extension. Keep in mind, though, that premature optimization is generally not a good idea; code first, optimize later.

See: API Reference for a more exhaustive set of pointers to libraries available with links to their documentation See: Sugar Activity Tutorial to develop in Python (with PyGTK) for the OLPC.

OLPCGames

Pygame is a high-level wrapper around the C SDL library, which provides low-level support for developing games. Pygame allows you to easily create raster (pixel-based) graphics for games with reasonable performance thanks to SDL.

OLPCGames is a Python package which allows you to create Sugar Activities using Pygame with access to the special features of the laptop. This includes the Telepathy presence and communications infrastructure and the Pango/Cairo graphics capabilities.

See: Game development HOWTO to start using Python, Pygame and OLPCGames to develop for the OLPC.

Flash

Sugar includes the Gnash engine by default, and the Adobe Flash playing engine can be installed. At the moment we do not have a Flash authoring tool that can be distributed on the laptops, however. If you have Flash-based content, it may be possible to simply run it on Gnash on Sugar.

Low Level

Being a regular Fedora 7 Linux machine, the OLPC-XO can run regular Linux i586 executables. However, integration with the Sugar shell is currently a non-trivial exercise. It is often easier to wrap your C/C++/Assembly/Whatever activity in a Python wrapper than to attempt to implement the entire Low-level Activity API yourself.

See: Emulation for Compilation for a tip on how to compile using emulation

Common Libraries Not Available

While the Sugar environment is rich, it cannot include every possible library or extension and still fit in 200MB. The following extremely common libraries are not available by default:

  • OpenGL/MESA
  • Server-based relational databases (MySQL, PostgreSQL)
  • Qt/KDE
  • Gnome

Previous Next