<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0"><channel><title>The Common Lisp Directory/CLOS</title><link>http://www.cl-user.net/asp/tags/clos</link><description>The last modified items of the Common Lisp Directory for the tag: CLOS</description><language>en-US</language><pubDate>Mon, 03 Jun 2013 00:03:30 GMT</pubDate><lastBuildDate>Mon, 03 Jun 2013 00:03:30 GMT</lastBuildDate><generator>Fractal Concept Web Application Framework</generator><item><title>evol (Added)</title><link>http://www.cl-user.net/asp/libs/evol</link><guid isPermaLink="false">17380</guid><pubDate>Mon, 19 Apr 2010 17:33:49 GMT</pubDate><description>evol - entrenched virtues of lisp (love reversed) aims to be a compatible and full-fledged replacement for the GNU autotools stack targeted at coping with the autotools' shortcomings while not repeating the mistakes made and still being made at comparable build tool projects.</description></item><item><title>Sheeple (Modified)</title><link>http://www.cl-user.net/asp/libs/sheeple</link><guid isPermaLink="false">17026</guid><pubDate>Sat, 23 Jan 2010 02:13:37 GMT</pubDate><description>Sheeple is a delegative prototype-based object system inspired by CLOS.

It is designed with the purpose of providing the goodies of CLOS programming, but in an object-based environment.

As such, it shares a lot of syntax and semantics with CLOS, including multiple delegation (similar to multiple inheritance) and multiply-dispatched functions (similar to generic functions). </description></item><item><title>Revisiting the Visitor: the &quot;Just Do It&quot; Pattern.  (Added)</title><link>http://www.cl-user.net/asp/web-sites/VisitorPattern</link><guid isPermaLink="false">16833</guid><pubDate>Tue, 28 Apr 2009 08:07:14 GMT</pubDate><description>A software design pattern is a three-part rule which expresses a relation between a certain context, a problem, and a solution. The well-known &quot;GoF Book&quot; describes 23 software design patterns. Its influence in the software engineering community has been dramatic. However, Peter Norvig notes that &quot;16 of [these] 23 patterns are either invisible or simpler [...]&quot; in Dylan or Lisp (Design Patterns in Dynamic Programming, Object World, 1996).

We claim that this is not a consequence of the notion of &quot;pattern&quot; itself, but rather of the way patterns are generally described; the GoF book being typical in this matter. Whereas patterns are supposed to be general and abstract, the GoF book is actually very much oriented towards mainstream object languages such as C++. As a result, most of its 23 &quot;design patterns&quot; are actually closer to &quot;programming patterns&quot;, or &quot;idioms&quot;, if you choose to adopt the terminology of the POSA Book.

In this talk, we would like to envision software design patterns from the point of view of dynamic languages and specifically from the angle of CLOS, the Common Lisp Object System. Taking the Visitor pattern as an illustration, we will show how a generally useful pattern can be blurred into the language, sometimes to the point of complete disappearance.

The lesson to be learned is that software design patterns should be used with care, and in particular, will never replace an in-depth knowledge of your preferred language (in our case, the mastering of first-class and generic functions, lexical closures and meta-object protocol). By using patterns blindly, your risk missing the obvious and most of the time simpler solution: the &quot;Just Do It&quot; pattern.
</description></item><item><title>Binary Methods Programming: the CLOS Perspective. (Added)</title><link>http://www.cl-user.net/asp/web-sites/BinMeths</link><guid isPermaLink="false">16832</guid><pubDate>Tue, 28 Apr 2009 08:00:19 GMT</pubDate><description>Implementing binary methods in traditional object-oriented languages is difficult: numerous problems arise regarding the relationship between types and classes in the context of inheritance, or the need for privileged access to the internal representation of objects. Most of these problems occur in the context of statically typed languages that lack multi-methods (polymorphism on multiple arguments). The purpose of this paper is twofold: first, we show why some of these problems are either non-issues, or easily solved in Common-Lisp. Then, we demonstrate how the Common-Lisp Object System (CLOS) allows us not only to implement binary methods in a straightforward way, but also to support the concept directly, and even enforce it at different levels (usage and implementation). </description></item><item><title>CLOS Efficiency: Instantiation -- On the Behavior and Performance of Lisp, Part 2.1  (Added)</title><link>http://www.cl-user.net/asp/web-sites/OBPL21</link><guid isPermaLink="false">15629</guid><pubDate>Tue, 28 Apr 2009 07:54:14 GMT</pubDate><description>This article reports the results of an ongoing experimental research on the behavior and performance of CLOS, the Common Lisp Object System. Our purpose is to evaluate the behavior and performance of the 3 most important characteristics of any dynamic object oriented system: class instantiation, slot access and dynamic dispatch. This paper describes the results of our experiments on instantiation. We evaluate the efficiency of the instantiation process in both C++ and Lisp under a combination of parameters such as slot types or classes hierarchy. We show that in a non-optimized configuration where safety is given priority on speed, the behavior of C++ and Lisp instantiation can be quite different, which is also the case amongst different Lisp compilers. On the other hand, we demonstrate that when compilation is tuned for speed, instantiation in Lisp can become faster than in C++. </description></item><item><title>SWCLOS: A Semantic Web Processor on Common Lisp Object System (Annotated)</title><link>http://www.cl-user.net/asp/web-sites/SWCLOS</link><guid isPermaLink="false">13981</guid><pubDate>Tue, 16 Dec 2008 03:24:25 GMT</pubDate><description>SWCLOS is a Semantic Web processor that is built on top of Common Lisp Object System (CLOS). Every resources in RDF and RDFS, e.g. rdfs:Class, rdfs:Resource, rdf:Property, and resource instances and properties are realized as CLOS objects with straightforward-mapping RDF/S classes to CLOS classes and RDF/S instances to CLOS instances. Axioms and entailment rules in RDF/S are embodied in the system so that a lisp programmer can codify ontology in RDF/S and use the ontology within the semantics specified by RDF/S documents. SWCLOS can read and write RDF/XML and N-triples format files as well as S-expression files. Thus, lisp programmers with SWCLOS can enjoy RDF/S programming in S-expression from the beginning to the end in their work without touching XML in communication with other people. In this paper, some examples same as on the Jena tutorial are demonstrated for the introduction of SWCLOS programming in comparison with Java, and a demonstration with the wine ontology explains the domain and range constraint functionality in SWCLOS. SWCLOS is opened to the public in the BSD-like Open Source principle. Contact the web page or the above email address.</description></item><item><title>Singleton classes (Modified)</title><link>http://www.cl-user.net/asp/libs/tfb-singleton-classes</link><guid isPermaLink="false">12927</guid><pubDate>Wed, 03 Dec 2008 21:40:47 GMT</pubDate><description>A library for implementing singleton CLOS classes, i.e. classes that only have a single instance. This is part of the Lisp hacks collection by Tim Bradshaw</description></item><item><title>Kevin Raison (Added)</title><link>http://www.cl-user.net/asp/persons/raison</link><guid isPermaLink="false">16520</guid><pubDate>Mon, 29 Sep 2008 18:49:51 GMT</pubDate><description>Founder, President and Senior Consultant of Chatsubo.net LLC, a small IT firm headquartered in Seattle, Washington. Currently developing Lisp based application software for multimedia editing and publishing as well as voicemail processing. Implementing a distributed Lisp based data storage engine. Developing decision making software for automated administration of distributed systems.</description></item><item><title>Jerry Boetje (Modified)</title><link>http://www.cl-user.net/asp/persons/16175</link><guid isPermaLink="false">16175</guid><pubDate>Sat, 15 Mar 2008 17:08:26 GMT</pubDate><description>CS instructor at the College of Charleston in Charleston, SC. Long-time Lisp user and developer. Architect and manager of the CLforJava project at the College of Charleston.</description></item><item><title>Closer to MOP (Modified)</title><link>http://www.cl-user.net/asp/libs/Closer%20to%20MOP</link><guid isPermaLink="false">12874</guid><pubDate>Mon, 23 Apr 2007 11:32:03 GMT</pubDate><description>Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect MOP features as detected by MOP Feature Tests in a growing number of Common Lisp implementations.
</description></item><item><title>grand-prix (Added)</title><link>http://www.cl-user.net/asp/libs/12656</link><guid isPermaLink="false">12656</guid><pubDate>Mon, 12 Feb 2007 08:39:17 GMT</pubDate><description>Tests, stress-test and performance-tests for Common Lisp object-databases and persistence libraries.
</description></item><item><title>cl-perec (Added)</title><link>http://www.cl-user.net/asp/libs/cl-perec</link><guid isPermaLink="false">15058</guid><pubDate>Tue, 30 Jan 2007 13:08:07 GMT</pubDate><description>cl-perec is a library for RDBMS based CLOS persistency</description></item><item><title>SISCOG - Sistemas Cognitivos Lta (Added)</title><link>http://www.cl-user.net/asp/objects/SISCOG</link><guid isPermaLink="false">14782</guid><pubDate>Sat, 25 Nov 2006 13:36:51 GMT</pubDate><description>SISCOG is a software company that provides decision-support systems for resource planning and management in transportation companies, especially in the field of railways. Lately other domains of application have been covered, keeping the focus on the resource planning and management, although diversifying for companies that have people working based on duties and rosters.</description></item><item><title>cl-wdim (Modified)</title><link>http://www.cl-user.net/asp/libs/cl-wdim</link><guid isPermaLink="false">14620</guid><pubDate>Fri, 24 Nov 2006 19:29:46 GMT</pubDate><description>Cl-wdim is &quot;a Common Lisp web framework based on persistent CLOS&quot;.</description></item><item><title> CL's MOP vs Java's Reflection (Added)</title><link>http://www.cl-user.net/asp/web-sites/CL-MOPvsJava-reflection</link><guid isPermaLink="false">14493</guid><pubDate>Tue, 31 Oct 2006 22:09:35 GMT</pubDate><description>A discussion about how the Common Lisp Meta Object Protocol compares to Java reflection.</description></item><item><title>Design by Contract (Added)</title><link>http://www.cl-user.net/asp/libs/dbc</link><guid isPermaLink="false">14540</guid><pubDate>Mon, 30 Oct 2006 08:16:23 GMT</pubDate><description>An implementation for CLOS of the Design by Contract method of software engineering, developed by Bertrand Meyer for the Eiffel programming language.</description></item><item><title>computed-class (Added)</title><link>http://www.cl-user.net/asp/libs/computed-class</link><guid isPermaLink="false">14521</guid><pubDate>Sat, 28 Oct 2006 09:36:51 GMT</pubDate><description>A library that implements computed classes. &quot;An instance of computed-class is a class meta object which supports per instance lazy computation of CLOS object slot values&quot;.</description></item><item><title>User-Level Language Crafting: Introducing the CLOS Metaobject Protocol (Commented)</title><link>http://www.cl-user.net/asp/web-sites/paepcke93userlevel</link><guid isPermaLink="false">14208</guid><pubDate>Sun, 22 Oct 2006 21:27:12 GMT</pubDate><description>Paper by Andreas Paepcke published in the book &quot;Object-Oriented Programming: the CLOS perspective&quot;, MIT Press, 1993. It discusses how CLOS carries the idea of open and modular systems to the realm of language design.</description></item><item><title>defclass-star (Added)</title><link>http://www.cl-user.net/asp/libs/defclass-star</link><guid isPermaLink="false">14469</guid><pubDate>Sun, 15 Oct 2006 17:24:51 GMT</pubDate><description>defclass* and defcondition* that automatically generates accessors other things that are schematic for most defclass declarations.</description></item><item><title>Algorithme - Information Technology services (Modified)</title><link>http://www.cl-user.net/asp/objects/algorithme</link><guid isPermaLink="false">14073</guid><pubDate>Wed, 04 Oct 2006 13:16:25 GMT</pubDate><description>A company that offers custom software, knowledge-based systems and rapid application development services, also with the use of CLOS.</description></item><item><title>The common Lisp object system metaobject kernel: a status report (Added)</title><link>http://www.cl-user.net/asp/web-sites/p309-bobrow</link><guid isPermaLink="false">14210</guid><pubDate>Thu, 21 Sep 2006 06:05:18 GMT</pubDate><description>Paper published in the &quot;Proceedings of the 1988 ACM conference on LISP and functional programming&quot;. A status report on the design of the CLOS Metaobject Protocol (MOP). The paper &quot;is organized around the classes used to implement CLOS, describing reasons for the class organization chosen, and how these classes participate in some protocols of the system&quot;.
</description></item><item><title>MCPat (Added)</title><link>http://www.cl-user.net/asp/libs/mcpat</link><guid isPermaLink="false">14281</guid><pubDate>Fri, 08 Sep 2006 23:21:07 GMT</pubDate><description>MCPat stands for Meta-Circular Pattern Matcher, a simple pattern matcher that executes code by lists against patterns.</description></item><item><title>Span/NLI (Added)</title><link>http://www.cl-user.net/asp/libs/span-nli</link><guid isPermaLink="false">14266</guid><pubDate>Thu, 07 Sep 2006 07:35:36 GMT</pubDate><description>A set of portable extensions for bindings, CLOS-compatible message passing, easier manipulation of functions, continuations and cooperative multitasking.</description></item><item><title>Erann's Lisp utilities (Added)</title><link>http://www.cl-user.net/asp/libs/erann-lisp-utils</link><guid isPermaLink="false">13967</guid><pubDate>Sun, 16 Jul 2006 09:24:35 GMT</pubDate><description>A small set of Common Lisp utilities for string and symbol operations, CLOS, mapping, flow control, anaphoric macros, and more.</description></item><item><title> MOP Retrospective - Gregor Kiczales speaks to lispvan (Added)</title><link>http://www.cl-user.net/asp/web-sites/mop-retrospective</link><guid isPermaLink="false">13920</guid><pubDate>Wed, 12 Jul 2006 09:38:19 GMT</pubDate><description>A blog entry by Bill Clementson with a link to the audio recording of a talk given by Gregor Kikzales at the Vancouver Lisp Users Group (lispvan) meeting of June 28, 2006. The meeting was based on a questions and answers session with Kikzales, who covered many topics related to the CLOS Meta-Object Protocol (MOP).</description></item><item><title>metacopy (Added)</title><link>http://www.cl-user.net/asp/libs/metacopy</link><guid isPermaLink="false">13755</guid><pubDate>Sun, 28 May 2006 10:44:47 GMT</pubDate><description>A toolkit for specifying how to make copies of CLOS objects.</description></item><item><title>Moptilities (Added)</title><link>http://www.cl-user.net/asp/libs/moptilities</link><guid isPermaLink="false">13649</guid><pubDate>Sun, 07 May 2006 09:31:56 GMT</pubDate><description>A compatibility layer on top of various CLOS MOP implementations, with some additional reflection capabilities.</description></item><item><title>Cells (Added)</title><link>http://www.cl-user.net/asp/libs/cells</link><guid isPermaLink="false">13292</guid><pubDate>Sat, 25 Mar 2006 10:19:02 GMT</pubDate><description>A dataflow, constraint-management extension to CLOS. It allows the creation of classes whose instances &quot;have slots whose values are determined by a formula&quot;, like cells in a spreadsheet. Arbitrary Common Lisp expression can be used for specifying the value of a cell. &quot;The Cells system takes care of tracking dependencies among cells, and propagating values&quot;.</description></item><item><title>Defaulting optional arguments for generic functions (Added)</title><link>http://www.cl-user.net/asp/libs/tfb-wrapping-standard</link><guid isPermaLink="false">12931</guid><pubDate>Sun, 19 Feb 2006 14:16:48 GMT</pubDate><description>An implementation of CLOS &quot;wrapping&quot; methods. They are &quot;like around methods but happen outside them (so: before and after), and the least specific wrapping method is outermost&quot;. They provide a clean way for supplying defaults for generic function optional and keyword arguments, and are also useful for running &quot;hooks&quot;-like functionality. This is part of the Lisp hacks collection by Tim Bradshaw.</description></item><item><title>Abstract classes (Added)</title><link>http://www.cl-user.net/asp/libs/tfb-abstract-classes</link><guid isPermaLink="false">12926</guid><pubDate>Sun, 19 Feb 2006 13:43:41 GMT</pubDate><description>An implementation of abstract CLOS classes, i.e. classes that can be subclassed but not instantiated. This is part of the Lisp hacks collection by Tim Bradshaw.</description></item><item><title>Lisp hacks (Added)</title><link>http://www.cl-user.net/asp/libs/tfb-lisp-hacks</link><guid isPermaLink="false">12920</guid><pubDate>Sun, 19 Feb 2006 13:02:09 GMT</pubDate><description>A collection of small libraries for packages, dynamic variables, lists, iteration, CLOS, and HTML generation.</description></item><item><title>AspectL (Added)</title><link>http://www.cl-user.net/asp/libs/AspectL</link><guid isPermaLink="false">12876</guid><pubDate>Tue, 14 Feb 2006 21:28:34 GMT</pubDate><description>AspectL is a library that provides aspect-oriented extensions for Common Lisp / CLOS.</description></item><item><title>MOP Feature Tests (Modified)</title><link>http://www.cl-user.net/asp/libs/MOP%20Feature%20Tests</link><guid isPermaLink="false">12698</guid><pubDate>Tue, 14 Feb 2006 21:27:19 GMT</pubDate><description>This package provides a test suites for checking what CLOS MOP features a Common Lisp implementation supports.
</description></item><item><title>Language Constructs for Context-oriented Programming (Added)</title><link>http://www.cl-user.net/asp/web-sites/ContextL%20Paper</link><guid isPermaLink="false">12697</guid><pubDate>Tue, 14 Feb 2006 21:06:52 GMT</pubDate><description>ContextL is an extension to the Common Lisp Object System that allows for Context-oriented Programming. It provides means to associate partial class and method definitions with layers and to activate and deactivate such layers in the control flow of a running program. When a layer is activated, the partial definitions become part of the program until this layer is deactivated. This has the effect that the behavior of a program can be modified according to the context of its use without the need to mention such context dependencies in the affected base program. We illustrate these ideas by providing different UI views on the same object while, at the same time, keeping the conceptual simplicity of object-oriented programming that objects know by themselves how to behave, in our case how to display themselves. These seemingly contradictory goals can be achieved by separating class definitions into distinct layers instead of factoring out the display code into different classes.</description></item><item><title>BKNR Datastore (Commented)</title><link>http://www.cl-user.net/asp/libs/bknr</link><guid isPermaLink="false">11313</guid><pubDate>Sat, 11 Feb 2006 23:00:29 GMT</pubDate><description>The bknr datastore is a persistence system based on transaction logging.  Similar to Java Prevalence, it logs all changes to the persistent data to a transaction log file on disk.  Snapshots can be written in order to speed up restoring long-running systems.  The bknr datastore is implemented as a MOP metaclass.  The independent bknr-indices subsystem provides for automatically maintained MOP object indices.  The XML import/export subsystem is used to import persistent objects from XML files controlled by DTD files to map slots to attributes and nodes.  The XML import/export facilities can be used without transaction logging for batch systems which solely work on XML files.</description></item><item><title>Henry Baker's Archive of Research Papers (Added)</title><link>http://www.cl-user.net/asp/web-sites/henry-baker-papers</link><guid isPermaLink="false">12212</guid><pubDate>Mon, 16 Jan 2006 17:10:57 GMT</pubDate><description>Collection of papers on programming languages research, including some on Common Lisp implementation issues and CLOS.</description></item><item><title>&quot;A Survey of Current CLOS MOP Implementations&quot; (Added)</title><link>http://www.cl-user.net/asp/web-sites/mop-survey</link><guid isPermaLink="false">12166</guid><pubDate>Sun, 15 Jan 2006 23:46:02 GMT</pubDate><description>This paper surveys implementations of the CLOS MOP in some of the more popular implementations of Common Lisp. First a brief overview of the CLOS MOP is given. A number of Common Lisp implementations are then examined independently in order to assess which aspects of the CLOS MOP they provide. A comparison is made between the various implementations. Particular attention is given to what portion of the CLOS MOP is implemented and how faithful the implementation is to the metaobject protocol described in the The Art of the Metaobject Protocol[1]. A summary of the overall availability of the CLOS MOP is then given. Finally a proposed categorization of the functionality of the CLOS MOP is described.</description></item><item><title>CLOS in Context: The Shape of the Design Space (Added)</title><link>http://www.cl-user.net/asp/web-sites/clos-book-design</link><guid isPermaLink="false">12211</guid><pubDate>Sun, 15 Jan 2006 17:07:36 GMT</pubDate><description>Chapter written by Daniel G. Bobrow, Richard P. Gabriel and Jon L. White for the book &quot;Object-Oriented Programming: The CLOS Perspective&quot; (edited by Andreas Paepcke, MIT Press, 1992). It examines the design space of CLOS in the context of related ideas from other programming languages,</description></item><item><title>CLOS: Integrating Object-Oriented and Functional Programming (Added)</title><link>http://www.cl-user.net/asp/web-sites/clos-cacm-91</link><guid isPermaLink="false">12210</guid><pubDate>Sun, 15 Jan 2006 16:58:36 GMT</pubDate><description>Paper by Richard P. Gabriel, Jon L. White and Daniel G. Bobrow published in the Sep. 1991 issue of CACM. It discusses how CLOS combines previous programming traditions and ideas.</description></item><item><title>The Common Lisp Object System: An Overview (Added)</title><link>http://www.cl-user.net/asp/web-sites/clos-ecoop-87</link><guid isPermaLink="false">12209</guid><pubDate>Sun, 15 Jan 2006 16:45:11 GMT</pubDate><description>Paper by Richard P. Gabriel and Linda DeMichiel published at ECOOP 1987. It introduces the major ideas of CLOS: generic functions, classes and inheritance, method combination and the meta-object protocol.</description></item><item><title>PCLOS Reference Manual (Added)</title><link>http://www.cl-user.net/asp/web-sites/pclos</link><guid isPermaLink="false">11553</guid><pubDate>Sat, 07 Jan 2006 15:31:11 GMT</pubDate><description>Hewlett-Packard HPL-91-182 technical report by Andreas Paepcke, 5 December 1991.
The document combines the manuals of versions 2.0, 2.1 and 3.0 of the CLOS-based PCLOS persistent object store. The first part provides and overview of the system, the others describe later modifications.</description></item></channel></rss>