object-system-req.xml

Delivered as text/xml

[ hide source ] | [ make this the default ]

File Contents

<?xml version='1.0' ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
               "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!ENTITY % myvars SYSTEM "../variables.ent">
%myvars;
]>
<sect1 id="object-system-requirements" xreflabel="OpenACS 4 Object Model Requirements">
<title>Object Model Requirements</title>

<authorblurb>
<para>By Pete Su</para>
</authorblurb>



<sect2 id="object-system-requirements-">
<title>I. Introduction</title>


<para>A major goal in OpenACS 4 is to unify and normalize many of the core services
of the system into a coherent common data model and API. In the past, these
services were provided to applications in an ad-hoc and irregular fashion.
Examples of such services include:</para>

<itemizedlist>
<listitem><para>General Comments</para></listitem>

<listitem><para>User/groups</para></listitem>

<listitem><para>Attribute storage in user/groups</para></listitem>

<listitem><para>General Permissions</para></listitem>

<listitem><para>Site wide search</para></listitem>

<listitem><para>General Auditing</para></listitem>
</itemizedlist>

<para>All of these services involve relating extra information and services to
application data objects, examples of which include:</para>

<itemizedlist>
<listitem><para>Bboard messages</para></listitem>

<listitem><para>A user home page</para></listitem>

<listitem><para>A ticket in the Ticket Tracker</para></listitem>

<listitem><para>A photograph in the PhotoDB</para></listitem>
</itemizedlist>

<para>In the past, developers had to use ad-hoc and inconsistent schemes to
interface to the various &quot;general&quot; services mentioned above. Since
each service used its own scheme for storing its metadata and mapping this
data to application objects, we could not implement any kind of centralized
management system or consistent administrative pages for all the services.
Consequently, a large amount of duplicate code appeared throughout the system
for dealing with these services.</para>

<para>Unifying and &quot;normalizing&quot; these interfaces, to minimize the
amount of code repetition in applications, is a primary goal of OpenACS 4. Thus
the Object Model (OM, also referred to later as the object system) is
concerned primarily with the storage and management of <emphasis>metadata</emphasis>, on
any object within a given instance of OpenACS 4. The term &quot;metadata&quot;
refers to any extra data the OM stores on behalf of the application - outside
of the application&#39;s data model - in order to enable certain generic
services. The term &quot;object&quot; refers to any entity being represented
within the OpenACS, and typically corresponds to a single row within the
relational database.</para>

</sect2>

<sect2 id="object-system-requirements-vision">
<title>Vision Statement</title>


<para>The OpenACS 4 Object Model must address five high-level requirements that
repeatedly exhibit themselves in the context of existing services in OpenACS 3.x,
as described below.</para>

<para><emphasis role="strong">Object Identifiers for General Services</emphasis></para>

<para>Generic services require a single unambiguous way of identifying
application objects that they manage or manipulate. In OpenACS 3.x, there are
several different idioms that construct object identifiers from other data.
Many modules use a <computeroutput>(user_id, group_id, scope)</computeroutput> triple combination
for the purpose of recording ownership information on objects for access
control. User/groups also uses <computeroutput>(user_id, group_id)</computeroutput> pairs in its
<computeroutput>user_group_map</computeroutput> table as a way to identify data associated with a
single membership relation.</para>

<para>Also in OpenACS 3.x, many utility modules exist that do nothing more than
attach some extra attributes to existing application data. For example,
general comments maintains a mapping table that maps application
&quot;page&quot; data (static or dynamic) to one or more user comments on the
page, by constructing a unique identifier for each page. This identifier is
usually a combination of the table in which the data is stored, and the value
of the primary key value for the particular page. This idiom is referred to
as the &quot;(on_which_table + on_what_id)&quot; method for identifying
application data. General comments stores its map from pages to comments
using a &quot;(on_which_table + on_what_id)&quot; key, plus the id of the
comment itself.</para>

<para>All of these composite key constructions are implicit object identifiers:
they build a unique ID out of other pieces of the data model. The problem is
that their definition and use is ad-hoc and inconsistent. This makes the
construction of generic application-independent services difficult.
Therefore, the OpenACS 4 Object Model should provide a centralized and uniform
mechanism for tagging application objects with unique identifiers.</para>

<para><emphasis role="strong">Support for Unified Access Control</emphasis></para>

<para>Access control should be as transparent as possible to the application
developer. Until the implementation of the general permissions system, every
OpenACS application had to manage access control to its data separately. Later
on, a notion of &quot;scoping&quot; was introduced into the core data
model.</para>

<para>&quot;Scope&quot; is a term best explained by example. Consider some
hypothetical rows in the <computeroutput>address_book</computeroutput> table:</para>

 
<informaltable>
<tgroup cols="4">
<tbody>
<row>
<entry><emphasis role="strong">...</emphasis></entry>
<entry><emphasis role="strong"><computeroutput>scope</computeroutput></emphasis></entry>
<entry><emphasis role="strong"><computeroutput>user_id</computeroutput></emphasis></entry>
<entry><emphasis role="strong"><computeroutput>group_id</computeroutput></emphasis></entry>
<entry><emphasis role="strong">...</emphasis></entry>
</row>

<row>
<entry>...</entry>
<entry><computeroutput>user</computeroutput></entry>
<entry><computeroutput>123</computeroutput></entry>
<entry> </entry>
<entry>...</entry>
</row>

<row>
<entry>...</entry>
<entry><computeroutput>group</computeroutput></entry>
<entry> </entry>
<entry><computeroutput>456</computeroutput></entry>
<entry>...</entry>
</row>

<row>
<entry>...</entry>
<entry><computeroutput>public</computeroutput></entry>
<entry> </entry>
<entry> </entry>
<entry>...</entry>
</row>
</tbody></tgroup></informaltable>

<para>The first row represents an entry in User 123&#39;s personal address book,
the second row represents an entry in User Group 456&#39;s shared address
book, and the third row represents an entry in the site&#39;s public address
book.</para>

<para>In this way, the scoping columns identify the security context in which a
given object belongs, where each context is <emphasis>either</emphasis> a person
<emphasis>or</emphasis> a group of people <emphasis>or</emphasis> the general public (itself a group
of people).</para>

<para>The problem with this scheme is that we are limited to using only users
and groups as scopes for access control, limiting applications to a single
level of hierarchy. Worse, the scoping system demanded that every page
needing access to a given application had to do an explicit scope check to
make sure access was allowed - if a developer was careless on just one site
page, a security problem could result.</para>

<para>Thus the OpenACS 4 Object Model must support a more general access control
system that allows access control domains to be hierarchical, and specifiable
with a single piece of data, instead of the old composite keys described
above.</para>

<para><emphasis role="strong">Extensible Data Models</emphasis></para>

<para>Another problem with previous OpenACS data models is that many of the central
tables in the system became bloated as they were extended to support an
increasing number of modules. The <computeroutput>users</computeroutput> table is the best case
in point: it became full of columns that exist for various special
applications (e.g. user portraits), but that aren&#39;t really related to
each other in any way except that they store information on users, i.e. the
table became grossly denormalized. Normalizing (breaking-down) this table
into several pieces, each of which is specific to a particular application,
would improve maintainability greatly. Furthermore, the ability to allow
applications or users to define new extensions to existing tables, and have
some central metadata facility for keeping track of what data belong to which
tables, would be very useful.</para>

<para>Thus the motivation for providing <emphasis>object types</emphasis> and
<emphasis>subtyping</emphasis> in the OpenACS 4 Object Model. The OM should allow developers
to define a hierarchy of metadata <emphasis>object types</emphasis> with subtyping and
inheritance. Developers can then use the framework to allow users to define
custom extensions to the existing data models, and the OM does the
bookkeeping necessary to make this easier, providing a generic API for object
creation that automatically keeps track of the location and relationships
between data.</para>

<para><emphasis role="strong">Design Note:</emphasis> While this doesn&#39;t really belong in a
requirements document, the fact that we are constrained to using relational
databases means that certain constraints on the overall design of the object
data model exist, which you can read about in <xref linkend="object-system-design-summary"/>.</para>

<para><emphasis role="strong">Modifiable Data Models</emphasis></para>

<para>Another recurring applications problem is how to store a modifiable data
model, or how to store information that may change extensively between
releases or in different client installations. Furthermore, we want to avoid
changes to an application&#39;s database queries in the face of any custom
extensions, since such changes are difficult or dangerous to make at run time,
and can make updating the system difficult. Some example applications in OpenACS
3.x with modifiable data models include:</para>

<itemizedlist>
<listitem><para>User/groups: developers and users can attach custom data to group types,
groups, and members of groups.</para></listitem>

<listitem><para>In the Ecommerce data model, the <computeroutput>ec_custom_product_fields</computeroutput>
table defines attributes for catalog products, and the
<computeroutput>ec_custom_product_field_values</computeroutput> table stores values for those
attributes.</para></listitem>

<listitem><para>In the PhotoDB data model, the <computeroutput>ph_custom_photo_fields</computeroutput> table
defines attributes for the photographs owned by a specific user, and tables
named according to the convention
&quot;<computeroutput>ph_user_&lt;user_id&gt;_custom_info</computeroutput>&quot; are used to
store values for those attributes.</para></listitem>
</itemizedlist>

<para>Thus the Object Model must provide a general mechanism for applications
and developers to modify or extend data models, without requiring changes to
the SQL schema of the system. This ensures that all applications use the same
base schema, resulting in a uniform and more maintainable system.</para>

<para><emphasis role="strong">Generic Relations</emphasis></para>

<para>Many OpenACS applications define simple relationships between application
objects, and tag those relationships with extra data. In OpenACS 3.x, this was
done using <emphasis>mapping tables</emphasis>. The user/groups module has the most
highly developed data model for this purpose, using a single table called
<computeroutput>user_group_map</computeroutput> that mapped users to groups. In addition, it uses
the <computeroutput>user_group_member_fields</computeroutput> and
<computeroutput>user_group_member_fields_map</computeroutput> tables to allow developers to
attach custom attributes to group members. In fact, these custom attributes
were not really attached to the users, but to the fact that a user was a
member of a particular group - a subtle but important distinction. As a
historical note, in OpenACS 3.x, user/groups was the only part of the system that
provided this kind of data model in a reusable way. Therefore, applications
that needed this capability often hooked into user/groups for no other reason
than to use this part of its data model.</para>

<para>The OpenACS 4 data model must support generic relations by allowing developers
to define a special kind of object type called a <emphasis>relation type</emphasis>.
Relation types are themselves object types that do nothing but represent
relations. They can be used by applications that previously used user/groups
for the same purpose, but without the extraneous, artificial
dependencies.</para>

</sect2>

<sect2 id="object-system-requirements-system-overview">
<title>System Overview</title>


<para>The Object Model package is a combination of data model and a procedural
API for manipulating application objects within an OpenACS instance. The OM
allows developers to describe a hierarchical system of <emphasis>object types</emphasis>
that store metadata on application objects. The object type system supports
subtyping with inheritance, so new object types can be defined in terms of
existing object types.</para>

<para>The OM data model forms the main part of the OpenACS 4 Kernel data model. The
other parts of the Kernel data model include:</para>

<itemizedlist>
<listitem><para>Parties and Groups</para></listitem>

<listitem><para>Permissions</para></listitem>
</itemizedlist>

<para>Each of these is documented elsewhere at length.</para>

</sect2>

<sect2 id="object-system-requirements-use-cases">
<title>Use-cases and User-scenarios</title>


<para>(Pending as of 8/27/00)</para>

</sect2>

<sect2 id="object-system-requirements-links">
<title>Related Links</title>

<itemizedlist>
<listitem><para><xref linkend="object-system-design"/></para></listitem>
<listitem><para><xref linkend="objects"/></para></listitem>
</itemizedlist>

</sect2>

<sect2 id="object-system-requirements-data-model">
<title>Requirements: Data Model</title>


<para>The data model for the object system provides support for the following
kinds of schema patterns that are used by many existing OpenACS modules:</para>

<variablelist>
<varlistentry><term><emphasis role="strong">10.0 Object Identification and Storage</emphasis></term><listitem>

<para>Object identification is a central mechanism in the new metadata system.
The fact that every object has a known unique identifier means that the core
can deal with all objects in a generic way. Thus the only action required of
an application to obtain any general service is to &quot;hook into&quot; the
object system.</para>

<para>In OpenACS 3.x, modules use ad-hoc means to construct unique identifiers for
objects that they manage. Generally, these unique IDs are built from other
IDs that happen to be in the data model. Because there is no consistency in
these implementations, every application must hook into every service
separately.</para>

<para>Examples of utilities that do this in OpenACS 3.x system are:</para>

<itemizedlist>
<listitem><para>User/groups: Information is attached to group membership relations.</para></listitem>

<listitem><para>General Comments: Comments are attached to objects representing some kind
of document.</para></listitem>

<listitem><para>General Permissions: Stores access control information on application
data.</para></listitem>

<listitem><para>User Profiling: Maps users to pieces of content that they have looked at;
content identifiers must be managed in a uniform way.</para></listitem>

<listitem><para>Site Wide Search: Stores all content in a single flat table, with object
identifiers pointing to the object containing the content in the first place.
This way, we can search the contents of many different types of objects in a
uniform way.</para></listitem>
</itemizedlist>

<para>The OM will support and unify this programming idiom by providing objects
with unique identifiers (unique within a given OpenACS instance) and with
information about where the application data associated with the object is
stored. The identifier can be used to refer to collections of heterogeneous
application data. More importantly, object identifiers will enable developers
to readily build and use generic services that work globally across a
system.</para>

<para>The object identifiers should be subject to the following
requirements:</para>

<para><emphasis role="strong">10.10 Uniqueness</emphasis></para>

<para>The object ID should be unique among all the IDs in the entire OpenACS system
in which the object lives.</para>

<para><emphasis role="strong">10.20 Useful as a Reference</emphasis></para>

<para>Applications should be able to use the unique object ID as a reference,
with which they can fetch any or all of the object&#39;s attributes.</para>

<para><emphasis role="strong">10.30 Storable</emphasis></para>

<para>Object IDs should be storable in tables. e.g. you should be able to use
them to implement mapping tables between objects, to represent
relationships.</para>

<para><emphasis role="strong">10.40 Moveable</emphasis></para>

<para>Objects should be mobile between databases. That is, information will
often need to be moved between multiple servers (development, staging, and
production), so a mechanism for moving this data is necessary. In addition, a
mechanism for tagging these objects in a way similar to CVS would be useful
in determining which objects need to be synchronized.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">20.0 Object Types</emphasis></term><listitem>

<para>An <emphasis>object type</emphasis> refers to a specification of one or more
attributes to be managed along with a piece of application data.</para>

<para>The object system should provide a data model for describing and
representing object types. This data model is somewhat analogous to the
Oracle data dictionary, which stores information about all user defined
tables in the system.</para>

<para>The canonical example of this kind of data model occurs in the current OpenACS
3.x user/groups module, which allows the developer to create new <emphasis>group
types</emphasis> that can contain not only generic system level attributes but also
extended, developer-defined attributes. In addition, these attributes can
either be attached to the group type itself, and shared by all instances, or
they can be different for each instance. At its core, the OpenACS 4 object system
is meant to be a generalization of this mechanism. The data model should
allow developers to at least do everything they used to with user/groups, but
without its administrative hassles.</para>

<para>Therefore, the data model must be able to represent object types that have
the following characteristics:</para>


<para><emphasis role="strong">20.10 Type Name</emphasis></para>

<para>A human readable name for the object type.</para>

<para><emphasis role="strong">20.20 Type Attributes</emphasis></para>

<para>Attributes whose values are shared by all instances of the object
type.</para>

<para><emphasis role="strong">20.30 Object Attributes</emphasis></para>

<para>Attributes that are specific to each particular object belonging to a
given type.</para>

<para>The data model must also enforce certain constraints on object types:</para>

<para><emphasis role="strong">20.40 Type Uniqueness</emphasis></para>

<para>Object type names must be unique.</para>

<para><emphasis role="strong">20.50 Attribute Name Uniqueness</emphasis></para>

<para>Attribute names must be unique in the scope of a single object type and
any of its parent types.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">30.0 Type Extension</emphasis></term><listitem>

<para>The Object Model must support the definition of object types that are
subtypes of existing types. A subtype inherits all the attributes of its
parent type, and defines some attributes of its own. A critical aspect of the
OM is parent types may be altered, and any such change must propagate to
child subtypes.</para>

<para>The OM data model must enforce constraints on subtypes that are similar to
the ones on general object types.</para>


<para><emphasis role="strong">30.10 Subtype Uniqueness</emphasis></para>

<para>Subtype names must be unique (this parallels requirement 10.40).</para>

<para><emphasis role="strong">30.20 Subtype Attribute Name Uniqueness</emphasis></para>

<para>Attribute names must be unique in the scope of a single object
subtype.</para>

<para><emphasis role="strong">30.30 Parent Type Prerequisite</emphasis></para>

<para>Subtypes must be defined in terms of parent types that, in fact, already
exist.</para>

<para><emphasis role="strong">30.40</emphasis></para>

<para>The extended attribute names in a subtype must not be the same as those in
its parent type.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">35.0 Methods</emphasis></term><listitem>


<para><emphasis role="strong">35.10 Method and Type Association</emphasis></para>

<para>The OM data model should define a mechanism for associating procedural
code, called <emphasis>methods</emphasis>, with objects of a given type. Methods are
associated with the each object <emphasis>type</emphasis> - not each object
<emphasis>instance</emphasis>.</para>

<para><emphasis role="strong">35.20 Method Sharing</emphasis></para>

<para>All instances of a given object type should share the same set of defined
methods for that type.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">40.0 Object Attribute Value Storage</emphasis></term><listitem>

<para>In addition to information on types, the OM data model provides for the
centralized storage of object attribute values. This facility unifies the
many ad-hoc attribute/value tables that exist in various OpenACS 3.x data models,
such as:</para>

<itemizedlist>
<listitem><para>User groups: Each instance of a group type can have custom data.</para></listitem>

<listitem><para>Photo DB: Users can define their own custom metadata to attach to
photograph objects.</para></listitem>

<listitem><para>Ecommerce: Vendors can attach custom fields to the data model describing
their products.</para></listitem>
</itemizedlist>


<para><emphasis role="strong">40.10 Generic Retrieval</emphasis></para>

<para>Attributes should be stored so that they are retrievable in a way that is
independent of the type of the object that they belong to. That is, the only
data needed to retrieve an attribute should be the system-wide ID of an
object (see requirement 10.20 above) and the attribute name.</para>

<para><emphasis role="strong">40.20 Inherited Attributes</emphasis></para>

<para>The system should allow for the automatic retrieval of inherited attribute
values, for an object belonging to a subtype.</para>

<para><emphasis role="strong">40.30. Constraints on Attributes</emphasis></para>

<para>The system should allow the developer to put down constraints on the
values that an attribute may hold, for the purposes of maintaining
application specific integrity rules.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">50.0 Object Contexts</emphasis></term><listitem>

<para>In OpenACS 3.x, there was a notion of &quot;scope&quot; for application
objects. An object could be belong to one of three scopes: public, group or
user. This provided a crude way to associate objects with particular scopes
in the system, but it was awkward to use and limited in flexibility.</para>

<para>The OpenACS 4 Object Model provides a generalized notion of scope that allows
developers to represent a hierarchy of object <emphasis>contexts</emphasis>. These
contexts are used as the basis for the permissions system. In general, if an
object has no explicit permissions attached to it, then it inherits
permissions from its context.</para>

<para>The context data model also forms the basis of the <link linkend="subsites-requirements">subsites system</link>, and is
a basic part of the <link linkend="permissions-requirements">permissions system</link>,
described in separate documents.</para>

<para>The context data model should provide the following facilities:</para>


<para><emphasis role="strong">50.10 Unique ID</emphasis></para>

<para>Every context should have a unique ID in the system.</para>

<para><emphasis role="strong">50.20 Tree Structure</emphasis></para>

<para>The data model should support a tree structured organization of contexts.
That is, contexts can be logically &quot;contained&quot; within other
contexts (i.e. contexts have parents) and contexts can contain other contexts
(i.e. contexts can have children).</para>

<para><emphasis role="strong">50.30 Data Model Constraints</emphasis></para>

<para>All objects must have a context ID. This ID must refer to an existing
context or be NULL. The meaning of a NULL context is determined by the
implementation.</para>

<para><emphasis role="strong">Note:</emphasis></para>

<para>The current system interprets the NULL context as meaning the default
&quot;site-wide&quot; context in some sense. I wanted to note this fact for
others, but there is no need to make this a requirement of the system. I
think it would be reasonable to have a NULL context be an error (psu
8/24/2000).</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">55.0 Object Relations</emphasis></term><listitem>

<para>The data model should include a notion of pair-wise relations between
objects. Relations should be able to record simple facts of the form
&quot;object X is related to object Y by relationship R,&quot; and also be
able to attach attributes to these facts.</para>
</listitem>
</varlistentry>
</variablelist>

</sect2>

<sect2 id="object-system-requirements-api">
<title>Requirements: API</title>


<para>The API should let programmers accomplish the following actions:</para>

<variablelist>
<varlistentry><term><emphasis role="strong">60.0 Object Type Creation</emphasis></term><listitem>


<para><emphasis role="strong">60.10 Create a New Object Type</emphasis></para>

<para>The object system API should provide a procedure call that creates a new
object type by running the appropriate transactions on the object system data
model. This API call is subject to the constraints laid out in the data
model. We call this operation &quot;instantiating&quot; an object.</para>

<para><emphasis role="strong">60.20 Create a New Object Subtype</emphasis></para>

<para>The object system API should provide a procedure call for creating
subtypes of a given type. Operationally, this API is the same as requirement
60.10. Instances of subtypes automatically contain all attributes of the
parent type in addition to all attributes of the subtype. This API is subject
to the constraints laid out in the data model.</para>

<para><emphasis role="strong">60.30 Create a New Relation Type</emphasis></para>

<para>There should be an API call to create a new type of object relation.
Relation types can be modeled as object types. The API below for manipulating
attributes can then be used to add attributes to relation types.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">70.0 Update an Object Type</emphasis></term><listitem>

<para>The object system API must allow the programmer to modify, add, and delete
attributes from any object type. Updates should be propagated to any child
subtypes. This API is subject to the constraints laid out in the data
model.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">80.0 Delete an Object Type</emphasis></term><listitem>

<para>The system provides an API call for deleting an object type.</para>


<para><emphasis role="strong">80.10</emphasis></para>

<para>Deleting an object type destroys all instances of the type. It should be
an error to delete types that have dependent subtypes. This API is subject to
the constraints laid out in the data model.</para>

<para><emphasis role="strong">80.10.10</emphasis></para>

<para>However, the programmer should also be able to specify that all the
subtypes and instances of those subtypes be destroyed before destroying the
object type. This is similar to a &quot;delete cascade&quot; constraint in
SQL.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">90.0 Object Instance Creation and Destruction</emphasis></term><listitem>

<para>The system must provide API calls to manage the creation and destruction
of object instances.</para>


<para><emphasis role="strong">90.10 Create an Instance of an Object Type</emphasis></para>

<para>The system should provide an API call for creating a new instance of a
given object type. The new instance should be populated with values for each
of the attributes specified in the definition of the type. In addition, it
should be possible to create the new instance with an optional context ID
that refers to the default context that the object will live in.</para>

<para><emphasis role="strong">90.20 Delete an Object Instance</emphasis></para>

<para>The OM should provide an API call for object deletion. Objects can be
deleted only when no other objects in the system refer to them. Since it
might not be practical to provide a mechanism like &quot;delete cascade&quot;
here in a reliable way, providing such a facility in the system is
optional.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">94.0 Object Relation Creation and Destruction</emphasis></term><listitem>

<para>The system must provide API calls to manage the creation and destruction
of object relations.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">94.10 Create an Object Relation</emphasis></term><listitem>

<para>The OM must provide an API call to declare that two objects are related to
each other by a given relation type. This API call should also allow
programmers to attach attributes to this object relation.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">94.20 Destroy an Object Relation</emphasis></term><listitem>

<para>There should be an API call for destroying object relations and their
attributes.</para>


</listitem></varlistentry><varlistentry><term><emphasis role="strong">95.10 Create and Destroy Contexts</emphasis></term><listitem>

<para>The system should provide an API to create and destroy object
contexts.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">100.10 Set Attribute Values for an Object</emphasis></term><listitem>

<para>The system should provide an API for updating the attribute values of a
particular instance of an object type.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">110.10 Get Attribute Values for an Object</emphasis></term><listitem>

<para>The system should provide an API for retrieving attribute values from a
particular instance of an object type.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">120.10 Efficiency</emphasis></term><listitem>

<para>The Object Model must support the efficient storage and retrieval of
object attributes. Since the OM is intended to form the core of many general
services in the OpenACS, and these services will likely make extensive use of the
OM tables, queries on these tables must be fast. The major problem here seems
to be supporting subtyping and inheritance in a way that does not severely
impact query performance.</para>

</listitem></varlistentry><varlistentry><term><emphasis role="strong">130.10 Ease of Use</emphasis></term><listitem>

<para>Most OpenACS packages will be expected to use the Object Model in one way or
another. Since it is important that the largest audience of developers
possible adopts and uses the OM, it must be easy to incorporate into
applications, and it must not impose undue requirements on an
application&#39;s data model. In other words, it should be easy to &quot;hook
into&quot; the object model, and that ability should not have a major impact
on the application data model.</para>

<para><emphasis role="strong">Note:</emphasis> Is the API the only way to obtain values? How does
this integrate with application level SQL queries?</para>
</listitem>
</varlistentry>
</variablelist>

</sect2>

<sect2 id="object-system-requirements-history">
<title>Revision History</title>


 
<informaltable>
<tgroup cols="4">
<tbody>
<row>
<entry><emphasis role="strong">Document Revision #</emphasis></entry>
<entry><emphasis role="strong">Action Taken, Notes</emphasis></entry>
<entry><emphasis role="strong">When?</emphasis></entry>
<entry><emphasis role="strong">By Whom?</emphasis></entry>
</row>

<row>
<entry>0.1</entry>
<entry>Creation</entry>
<entry>08/10/2000</entry>
<entry>Bryan Quinn</entry>
</row>

<row>
<entry>0.2</entry>
<entry>Major re-write</entry>
<entry>08/11/2000</entry>
<entry>Pete Su</entry>
</row>

<row>
<entry>0.3</entry>
<entry>Draft completed after initial reviews</entry>
<entry>08/22/2000</entry>
<entry>Pete Su</entry>
</row>

<row>
<entry>0.4</entry>
<entry>Edited, updated to conform to requirements template, pending freeze</entry>
<entry>08/23/2000</entry>
<entry>Kai Wu</entry>
</row>

<row>
<entry> </entry>
<entry>Final edits before freeze</entry>
<entry>08/24/2000</entry>
<entry>Pete Su</entry>
</row>

<row>
<entry>0.5</entry>
<entry>Edited for consistency</entry>
<entry>08/27/2000</entry>
<entry>Kai Wu</entry>
</row>

<row>
<entry>0.6</entry>
<entry>Put Object ID stuff first, because it makes more sense</entry>
<entry>08/28/2000</entry>
<entry>Pete Su</entry>
</row>

<row>
<entry>0.7</entry>
<entry>Added requirement that knowledge-level objects must be moveable between
databases.</entry>
<entry>08/29/2000</entry>
<entry>Richard Li</entry>
</row>

<row>
<entry>0.8</entry>
<entry>Rewrote intro to match language and concepts in the design document. Also
cleaned up usage a bit in the requirements section. Added short vague
requirements on relation types.</entry>
<entry>09/06/2000</entry>
<entry>Pete Su</entry>
</row>

<row>
<entry>0.9</entry>
<entry>Edited for ACS 4 Beta release.</entry>
<entry>09/30/2000</entry>
<entry>Kai Wu</entry>
</row>
</tbody></tgroup></informaltable>


</sect2>

</sect1>