Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Design

Reusable Associations


Data Hiding

If we use centralized control, only the control class needs access to the inserted data. In C++, this can be easily arranged by adding friend statements:


class Net {
  friend class nets;
  friend class blockNets;
  ChildAggregate     <Master,Net> nets;
  TargetXtoX     <Block,Terminal,Net> blockNets;
  ...
}; 


In Java, the inserted data must be public. If support for associations becomes a part of these languages, the compilers should take care of this problem.

Other Ways of Inserting Data

Until now, we have assumed that the additional data we have to insert to implant the association is inserted as members. We'll mention only briefly other approaches that we explored, which proved less practical for inserting this data.

Required data can be inserted through inheritance, but when a class participates in several associations we get multiple inheritance, and this approach cannot be used in Java or C#. For example:


class Net : ChildAggregate<Master,Net>,
  TargetXtoX<Block,Terminal,Net>,
      Parent1toX<Net,Pin>,
        Parent1toX<Net,Connector> {
    ...
};


The Pattern Template Library (PTL; www.codefarms.com/products.htm) was built on this principle. The Data Object Library (DOL; www.codefarms.com/products.htm) provided automatically persistent associations based on ACC and inserted members. It was implemented with a code generator and C macros. Over 18 years, this library was successfully used on many large and complex projects.

Aspect Programming transparently inserts sections of code using a precompiler. However, AOP needs instruction about where and what should be inserted, and generating this instruction is more complicated than directly generating the members. We reached this conclusion after a discussion with Olaf Spinczyk, the author of AspectC++ (see www.codefarms.com/ aspects.doc).


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.