Version 98 of XOTcl

Updated 2012-08-27 16:20:55 by LkpPo

This is a page for information, tips and hints about the XOTcl object oriented extension.

Home: http://www.xotcl.org/

Currently at version 1.6.7


Partly taken from the XOTcl homepage [L1 ]:

XOTcl combines the ideas of scripting and object-orientation in a way that preserves the benefits of both of them. It is equipped with several new language functions that help building and managing complex systems. It supports the following features:

  • Dynamic Object Aggregations, to provide dynamic aggregations through nested namespaces (objects).
  • Nested Classes, to reduce the interference of independently developed program structures.
  • Assertions, to reduce the interface and the reliability problems caused by dynamic typing and, therefore, to ease the combination of many components.
  • Per-object mixins, as a means to improve flexibility of mixin methods by giving an object access to several different supplemental classes, which may be changed dynamically.
  • Per-class mixins, as a means to improve flexibility of mixin methods to a class, all instances of the class have access to the mixed in methods like for multiple inheritance, but without the need of intersection classes.
  • Per-class and per-object filters, as a means of abstractions over method invocations to implement large program structures, like design patterns.
  • Dynamic Component Loading, XOTcl integrates the Tcl package loading with architectural support for integration with object oriented constructs. Moreover, it provides tracking/tracing of component loading.
  • Dynamic read/write introspection and extensibility.
  • Meta-classes.

XOTcl is included in Windows Tcl distributions ActiveTcl [L2 ] and WinTclTk [L3 ] as well as in the "Batteries included" version of the Aqua distribution for Mac OsX [L4 ].

Zoran Vasiljevic describes: "... it runs leak free, does not crash, obeys to what's written in the manual, is thread-safe, can be used under AOLserver or under Tcl threading extension w/o problems, is loaded with features., checked with Purify... ... We have written 100K lines in Xotcl and I find it very valuable. I like it more than [incr Tcl] since it ihas more of the dynamic nature of Tcl than [incr Tcl] does. The [incr Tcl] is more appealing to c++/java programmers. Xotcl should be more appealing to Tcl programmers, IMHO."

RZ found this simple crash (already reported on the mailing list with no answer yet):

 % package req XOTcl
 1.5.3
 % namespace import ::xotcl::*
 % Object x
 ::x
 % x set y 1
 1
 % x configure -set

IL How does XOtcl work with an existing aolserver application?

GN Preexisting aolserver applications can be extended with XOTcl; new ones can be written based on XOTcl. The OpenACS core group decided to use XOTcl as a requirement starting with 5.3. OpenACS support for XOTcl and several OpenACS packages can be obtained from the OpenACS cvs HEAD version.


XOTcl is thread safe (see Thread-safe Tcl Extensions) and one of the fastest OO Tcl Extensions (see Tcl OO Bench).


Gustaf Neumann GN writes to the XOTcl mailing list [L5 ] on 20Jul03:

...let me re-iterate the basic "philosophical" point of view. Languages like xotcl are object oriented, while languages like java (and most of UML) is class-oriented.

Class-oriented means: look at the class and you know exactly how all of the instances look alike. The class is the first and primary language construct; the class is well the place where you specify the instance variables (there are no instance variables except those specified in the class). The only kind of individualism left in the objects is to let them differ by their state (the values of their instance variables). Changing classes (class migration) is conceptually quite hard for this setup.

Object oriented (in this distinction) means that the primary elements are objects, which keep all instance variables. classes my be used to specify the behavior of objects, they are container for methods and they control the life-cycle of objects. Objects are like the facts, and classes are like rules, that determine the behavior of the objects. Since the connection between objects and classes is rather loose, it is sufficient to define their relation through an association. Therefore it is quite easy to change the relation between objects and classes (and between classes and classes) dynamically. Objects have arbitrary individualism, they may have variables never used in any class, they may have private procs etc.

From the expressiveness, object oriented languages can - in principle - be restricted to behave like class-oriented languages, but the other way around is much harder.


Useful code tidbits

Comparison with other Tcl OO Extensions


See also

You might be interested in the French Wiki pages about XOTcl and XOTclIDE [L7 ].

Less closely related

NEM 18Apr2004: I guess a question which comes up with any object system eventually is "has anyone written a mega-widget framework with this yet?" It seems to me that XOTcl is a pretty powerful object system, and so could probably form the basis of a very nice widget framework. Has anyone done any experiments in this direction? How would you go about it? Create a new meta-class type construct (Widget or something like that)? Doing something like this as an exercise might be a useful way to show off some of the more powerful features of XOTcl, and how they can be used to good effect.

Artur Trzewik 19Apr2004: There are pretty many GUI Stuff in XOTclIDE in component IDEBaseGUI. It is not complete GUI Framework but some special classes that offer OO way to use Tk. For example Menu-Framework that can control automatic menu enablement and same time pop-up menus. Also

  • Standards Dialogs. Entry Dialog, List Chooser, ...
  • Framework for modeless Dialogs
  • Editor Widgets (with save callback, file open and save)
  • List dialog class that can be used by inheritance to program own logic (the way it was used in XOTclIDE)

Indeed XOTcl works pretty good with other widget frameworks. I have used Tix and BWidget without problems. Even ITk is possible (but not tested be myself).

WHD 23Apr2004 Artur, I think you're describing a collection of widget-like objects written in XOTcl; what Neil was asking about was a straightforward means of creating new widgets in XOTcl, rather like snit::widgets which work like and interoperate with Tk widgets. So let me ask the question a different way--using XOTcl, is it possible to create an object that looks and acts like a Tk widget?

Artur Trzewik 23Apr2004 - Yes, it is possible to create Tk-like widgets with XOTcl (the same do Tix or ITk). But you not really want it. Because Tk is not realy OO (it has some OO characteristic because options by some widget has the same name). You can not build a child class of the button or text Tk widgets, but it is a base technique for OO widget set. Therefore really OO widget set would wrap Tk widget and not build some new Tk-like widget.

XOTcl widget set should be more like WinForms from .NET, Qt, or Java Swing. For example with XOTcl is possible to use more program techniques than Tk offers. One problem of adapting Tk to OO is lack of events (Publisher-Subscriber Model) that is useful for implementing Model View Controller Pattern. In this case you must wrap Tk in XOTcl-Classes and program it yourself. Other tasks were: Validators, Buffering, Building from XML.

 (AlbrechtMucha edited previous paragraph: around "Publisher-Subscriber" where strange character combinations)

Some techniques of using Tk in XOTcl were also discussed in XOTcl mailings; see http://alice.wu-wien.ac.at/pipermail/xotcl (I do not remember the month) June 2004 probably [L8 ]

The question is what to you want achieve with XOTcl widget set.

  • new Tk widgets (XOTcl is hidden from user)
  • Tk megawidgets (XOTcl is hidden from user)
  • OO Widgetset with OO Techniques (Model View Controller). Not Tk specific

For me Tk is good base widget set. But in OO-Application you will rather wrap them in your classes and adapt them to your OO-use specific for your application. The advantage of XOTcl is not the possibility to build new Tk-Widgets but rather use them in OO-manner.

Sarnold: What about snit emulation with Xoins? It already support snit::widget emulation (non-surprisingly named xoins::widget), and the current release (O.5p1) handles also widgetadaptors. It is, being build on the top of XOTcl, faster than snit, especially at instantiation.


Strick 11jan2005 -- Does anyone have hints on using XOTcl in a safe interpreter? It doesn't have a Xotcl_SafeInit(), so you can't load it. Aliasing it from a full interpreter is a bad idea: "Object eval" would give you access to the full interpreter. It looks like I'll have to do surgery on the sources? This paper [L9 ] makes me think it's been done before.


SYStems Does anyone know where I can get recent Debian packages for XOTcl? Sarge doesn't have any XOTcl packages at all.

vkvalli XOTcl on debian


SRIV In response to Artur's comment "Yes it is possible to create Tk like widgets with XOTcl, but you not really want it." ... I want it. For Tk to gain momentum, it needs to be extensible. Using any other paradigm because you feel it is superior is just unacceptable.

RLH "For Tk to gain momentum" - exactly what do you think that means? Tk has been around a long time and while other "dynamic" languages use Tk the more popular ones are moving to other toolkits. Python has Tkinter but wxPython is preferred (a book is in the works as well), Ruby has Tk but most use either Fox or wx again. Perl uses Tk but I see wxPerl coming up now and when it gets a bit more mature and a bit more exposure I see that becoming the toolkit there as well. Now it is possible that Tile will be able to move some back to using Tk but I don't see a mass migration back to Tk because of it.

SRIV You answered your own question.

RLH I rambled yes.


http://www.approximity.com/ruby/Comparison_rb_st_m_java.html is a comparison between Ruby and XOTcl.


DKF: The XOTcl Method Traversal Order is fairly complex and not especially well documented, and so merited its own page.

GN Here is a summary of the invocation order of XOTcl:

  • the precedence order defines the order, in which classes are prioritized or shadow each other.
    Abbreviations: POM: per-object mixin, PCM: per-class mixin, C: Classes
    The precedence order is: POM, PCM, C
    All of these are class hierarchies, where the contained classes are linearized; when a class is mixed into a precedence order, where it is already present, it has no effect.
  • the method resolution order overlays the precedence order. it includes
    • filters (firstly per-object filters, then per-class filters), dispatched "on top" (i.e. before the methods of the precedence order): filters can change the results of methods.
    • object specific methods (dispatched between PCM and C)
    • assertions (per default, turned off):
      • assertions are turned on/off on a per-object basis
      • assertions are lists of Tcl expressions
      • we distinguish between pre- and post-conditions and invariants
      • pre- and post-conditions are defined per-method (more precisely instproc and proc)
      • a precondition is evaluated before every method dispatch (method-specific)
      • a postcondition is evaluated before after method dispatch (method-specific)
      • an invariant is evaluated before and after every method dispatch for the object
      • these three types can be selectively activated/deactivated

Assertions are similar to the :before, :after, :around in CLOS, but all three types (as they are defined in current XOTcl) do not change the result of a method. Assertions, as we have these today, are specialized, but could be generalized to something more CLOS-like.

Finally, "unknown" is an exception handler, invoked in case the method to be dispatched is not defined by the classes in the precedence order or by the object. This means, a mixin containing a certain method can prevent that unknown is called.

Forwarders are c-implemented methods. They are pure convenience and could be implemented by the user as methods as well. If a class providing an forwarder to its instances is mixed in, the forwarders are mixed in as well.

Pre- and post-conditions can be implemented roughly with mixins, but they cannot measure the immediate effect of a single method call (mixins would implement the pre- and postconditions of an invocation of a next-chain). All tree types can however be implemented by filters (which can alter results). It would be quite slow, and give no nice error traces. It will be some work, but it should be possible. It is hard to say, what on this level cannot done with filters.


escargo 4 Jun 2007 - It would be interesting to know the relationship between XOTcl and xowiki[L10 ].

LV The code at the xowiki-doc URL you list says that xowiki is written in xotcl.


Ben Thomasson XOTclLib is a library of user-added features to XOTcl


XOwiki [L11 ] is a wiki on top of openacs written in xotcl.