Difference: DesignRules (1 vs. 5)

Revision 52005-05-05 - KrisDeVolder

Line: 1 to 1
 
META TOPICPARENT name="WebHome"

Design Rules

Line: 6 to 6
 
This is only an attempt to provide a definition / vision on what we mean by "design rule". This is not intended to be the final word on it, but rather a working definition open for dicussion.
Changed:
<
<
A Design Rule is a (relatively) easily verifiable rule that constrains how code is to be structured.
>
>
A design rule is a (relatively) easily verifiable rule that says something about how to write code.
 By adhering to a design rule developers trade away some flexibility on how they write and structure code
Changed:
<
<
in order to make it easier to manually or automatically verify important properties of their software.
>
>
in order to make it easier to manually or automatically verify important properties.
 
Changed:
<
<
A design rule is not the same as the actual property one is seaking to guarantee (let's call this the interesting property) but can actually be a weaker or stronger property than the interesting property. The property specified by the design rule is a structural property of their code which developer chose to adopt because it:
>
>
A design rule is not the same as the actual property one is seaking to guarantee (let's call this the interesting property) but can actually be a weaker or stronger property than the interesting property. The property specified by the design rule is a more structural property which developer would chose to adopt because:
 
Changed:
<
<
  1. Is easier to verify (manually or automatically) than the interesting property.
  2. The fact that the desing-rule property holds boosts the developer's confidence in that the interesting property holds.
  3. It makes the code easier to read and understand (because it makes the interesting property more obvious and easier to verify).
>
>
  1. The design rule is easier to verify (manually or automatically) than the interesting property.
  2. The fact that the desing-rule property holds boosts the developer's confidence that the interesting property holds.
  3. Adherence to the design rule makes the code easier to read and understand (because it makes the interesting property more obvious and easier to verify).
 
Changed:
<
<
For example, let's consider the opening and closing of files. An interesting property we may wish to ensure ourselves of as developers is that:
>
>
For example, let's consider the opening and closing of files. The interesting property we may wish to ensure ourselves of as developers is that:
 
Changed:
<
<
  • All files that are opened are always eventually closed.
>
>
  • All files that are opened are eventually closed.
 
Changed:
<
<
This property is potentially very hard to verify. However, it becomes easier to verify if the following design rule is followed:
>
>
We do not call the above property a design rule. It rather describes a behavioral property but does not say anything about how we ensure that the property holds. A design rule is more specific in that it says something about the specific code structure one adopts so that it becomes feasible to reason about and ensure that this behavioral property holds.

The behavioral property itself is potentially very hard to verify. This is because there all kinds of ways in which files can be opened and eventually closed. Without knowing the intended design structure a developer has in mind to ensure that a particular file is effectively guaranteed to be closed, it is unclear how to limit the scope of an analysis to verify the property.

However, the property becomes easier to verify if the following design rule is followed:

 
  • Files that are opened by a method should be closed before exiting the method.
Changed:
<
<
By adopting this desing rule the developer agrees to always open and close file in manner similar to the following idiom:
>
>
By adopting this desing rule the developer agrees to open and close file in following something like the following idiom:
 
     void operateOnFile(String filename) {
Line: 40 to 43
 rule may need to be extended to allow for exceptions. For example, we could ammend the rule to allow open files to be stored in instance variables of certain objects. For these more complex cases we may then chose to adopt other, perhaps more application specific design rules to gain confidence that those files are also not left accidentally open.
Added:
>
>
-- KrisDeVolder - 05 May 2005

Revision 42005-05-05 - KrisDeVolder

Line: 1 to 1
 
META TOPICPARENT name="WebHome"

Design Rules

Changed:
<
<
>
>
 
Note
This is only an attempt to provide a definition / vision on what we mean by "design rule". This is not intended to be the final word on it, but rather a working definition open for dicussion.
Added:
>
>
  A Design Rule is a (relatively) easily verifiable rule that constrains how code is to be structured. By adhering to a design rule developers trade away some flexibility on how they write and structure code

Revision 32005-05-05 - KrisDeVolder

Line: 1 to 1
 
META TOPICPARENT name="WebHome"

Design Rules

Changed:
<
<
This page is the start of a hopefully growing collection of design rules. By building this collection of examples we will hopefully be able to form an idea of the kind/range of things that would be useful to enforce as design rules as well as how we would like to express them in our domain specific language.

What are Design Rules

Note: This is an attempt to provide a definition / vision on what we mean by "design rule". This is not the be all and end all.

>
>
Note
This is only an attempt to provide a definition / vision on what we mean by "design rule". This is not intended to be the final word on it, but rather a working definition open for dicussion.
  A Design Rule is a (relatively) easily verifiable rule that constrains how code is to be structured. By adhering to a design rule developers trade away some flexibility on how they write and structure code
Line: 21 to 15
 
  1. The fact that the desing-rule property holds boosts the developer's confidence in that the interesting property holds.
  2. It makes the code easier to read and understand (because it makes the interesting property more obvious and easier to verify).
Changed:
<
<
For example, let's us considering the opening and closing of files. An interesting property we may wish to ensure ourselves of as developers is that
>
>
For example, let's consider the opening and closing of files. An interesting property we may wish to ensure ourselves of as developers is that:
 
Changed:
<
<
  • All files are opened before they are always closed eventually.
>
>
  • All files that are opened are always eventually closed.
 
Changed:
<
<
This property is potentially very hard to verify. However, it becomes much easier to verify it if adopt the following design rule:
>
>
This property is potentially very hard to verify. However, it becomes easier to verify if the following design rule is followed:
 
Changed:
<
<
  • Files that are opened by a method should closed within the same method.
>
>
  • Files that are opened by a method should be closed before exiting the method.
  By adopting this desing rule the developer agrees to always open and close file in manner similar to the following idiom:
Line: 42 to 36
 

Note that this design rule may be overly restrictive for some situations. In such cases, the desing

Changed:
<
<
rule may need to be extended to allow for certain exceptions. For these more complex cases may then chose to adopt a different design rule as an alternative.

Design Rule Catalog

-- Main.kdvolder - 05 May 2005

>
>
rule may need to be extended to allow for exceptions. For example, we could ammend the rule to allow open files to be stored in instance variables of certain objects. For these more complex cases we may then chose to adopt other, perhaps more application specific design rules to gain confidence that those files are also not left accidentally open.
 

Revision 22005-05-05 - KrisDeVolder

Line: 1 to 1
 
META TOPICPARENT name="WebHome"
Added:
>
>

Design Rules

 This page is the start of a hopefully growing collection of design rules. By building this collection of examples we will hopefully be able to form an idea of the kind/range of things that would be useful to enforce as design rules as well as how we would like to express them in our domain specific language.
Added:
>
>

What are Design Rules

Note: This is an attempt to provide a definition / vision on what we mean by "design rule". This is not the be all and end all.

A Design Rule is a (relatively) easily verifiable rule that constrains how code is to be structured. By adhering to a design rule developers trade away some flexibility on how they write and structure code in order to make it easier to manually or automatically verify important properties of their software.

A design rule is not the same as the actual property one is seaking to guarantee (let's call this the interesting property) but can actually be a weaker or stronger property than the interesting property. The property specified by the design rule is a structural property of their code which developer chose to adopt because it:

  1. Is easier to verify (manually or automatically) than the interesting property.
  2. The fact that the desing-rule property holds boosts the developer's confidence in that the interesting property holds.
  3. It makes the code easier to read and understand (because it makes the interesting property more obvious and easier to verify).

For example, let's us considering the opening and closing of files. An interesting property we may wish to ensure ourselves of as developers is that

  • All files are opened before they are always closed eventually.

This property is potentially very hard to verify. However, it becomes much easier to verify it if adopt the following design rule:

  • Files that are opened by a method should closed within the same method.

By adopting this desing rule the developer agrees to always open and close file in manner similar to the following idiom:

     void operateOnFile(String filename) {
        ... open file ...
        ... operate on the file ...
        ... close the file ...
     }

Note that this design rule may be overly restrictive for some situations. In such cases, the desing rule may need to be extended to allow for certain exceptions. For these more complex cases may then chose to adopt a different design rule as an alternative.

Design Rule Catalog

 

Revision 12005-05-05 - KrisDeVolder

Line: 1 to 1
Added:
>
>
META TOPICPARENT name="WebHome"
This page is the start of a hopefully growing collection of design rules. By building this collection of examples we will hopefully be able to form an idea of the kind/range of things that would be useful to enforce as design rules as well as how we would like to express them in our domain specific language.

-- Main.kdvolder - 05 May 2005

 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback