0026964: Merge OCAF white-papers into OCAF user's guide
The text of white papers has been rearranged as follows: OCAF white paper: Purpose of OCAF Overview of the architecture A look inside OCAF - merged with the Introduction chapter Getting Started An example of OCAF usage - added in Samples chapter The Data Framework - merged with Data Framework Services chapter Persistent Data Storage - added as a separate chapter OCAF function mechanism white paper: - added as a separate Example of Function Mechanism Usage chapter Distribution of data through OCAF tree white paper: - added as "The choice between standard and custom attributes" paragraph in Standard Attributes chapter.
@ -32,9 +32,6 @@ user_guides/ocaf/ocaf.md
|
||||
user_guides/tobj/tobj.md
|
||||
user_guides/draw_test_harness/draw_test_harness.md
|
||||
user_guides/brep_wp/brep_wp.md
|
||||
user_guides/ocaf_functionmechanism_wp/ocaf_functionmechanism_wp.md
|
||||
user_guides/ocaf_tree_wp/ocaf_tree_wp.md
|
||||
user_guides/ocaf_wp/ocaf_wp.md
|
||||
user_guides/vis/vis.md
|
||||
|
||||
dev_guides/dev_guides.md
|
||||
|
@ -12,9 +12,6 @@ user_guides/modeling_algos/modeling_algos.md
|
||||
user_guides/boolean_operations/boolean_operations.md
|
||||
user_guides/shape_healing/shape_healing.md
|
||||
user_guides/ocaf/ocaf.md
|
||||
user_guides/ocaf_functionmechanism_wp/ocaf_functionmechanism_wp.md
|
||||
user_guides/ocaf_tree_wp/ocaf_tree_wp.md
|
||||
user_guides/ocaf_wp/ocaf_wp.md
|
||||
user_guides/step/step.md
|
||||
user_guides/draw_test_harness/draw_test_harness.md
|
||||
user_guides/tobj/tobj.md
|
||||
|
@ -285,10 +285,7 @@ OCAF differs from any other CAD framework in the organization of application dat
|
||||
|
||||
OCAF organizes and embeds these attributes in a document. OCAF documents, in their turn, are managed by an OCAF application.
|
||||
|
||||
For more details see @ref occt_user_guides__ocaf "OCAF User's Guide" and the OCAF white papers:
|
||||
* @ref occt_user_guides__ocaf_wp "Application Framework"
|
||||
* @ref occt_user_guides__ocaf_tree_wp "Distribution of Data through OCAF Tree"
|
||||
* @ref occt_user_guides__ocaf_functionmechanism_wp "Application Framework Function Mechanism"
|
||||
For more details see @ref occt_user_guides__ocaf "OCAF User's Guide".
|
||||
|
||||
See also: our <a href="http://www.opencascade.com/content/tutorial-learning">E-learning & Training</a> offerings.
|
||||
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
BIN
dox/user_guides/ocaf/images/ocaf_wp_image007.png
Normal file
After Width: | Height: | Size: 23 KiB |
@ -1,286 +0,0 @@
|
||||
OCAF Function Mechanism {#occt_user_guides__ocaf_functionmechanism_wp}
|
||||
========================
|
||||
|
||||
@tableofcontents
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_1 Introduction
|
||||
|
||||
This guide describes the usage of the Function Mechanism of Open CASCADE Application Framework on a simple example.
|
||||
This example represents a "nail" composed by a cone and two cylinders of different radius and height:
|
||||
|
||||
@image html ocaf_functionmechanism_wp_image003.png "A nail"
|
||||
@image latex ocaf_functionmechanism_wp_image003.png " A nail"
|
||||
|
||||
These three objects (a cone and two cylinders) are independent,
|
||||
but the Function Mechanism makes them connected to each other and representing one object – a nail.
|
||||
The object "nail" has the following parameters:
|
||||
|
||||
* The position of the nail is defined by the apex point of the cone.
|
||||
The cylinders are built on the cone and therefore they depend on the position of the cone.
|
||||
In this way we define a dependency of the cylinders on the cone.
|
||||
* The height of the nail is defined by the height of the cone.
|
||||
Let’s consider that the long cylinder has 3 heights of the cone
|
||||
and the header cylinder has a half of the height of the cone.
|
||||
* The radius of the nail is defined by the radius of the cone.
|
||||
The radius of the long cylinder coincides with this value.
|
||||
Let’s consider that the header cylinder has one and a half radiuses of the cone.
|
||||
|
||||
So, the cylinders depend on the cone and the cone parameters define the size of the nail.
|
||||
|
||||
It means that re-positioning the cone (changing its apex point) moves the nail,
|
||||
the change of the radius of the cone produces a thinner or thicker nail,
|
||||
and the change of the height of the cone shortens or prolongates the nail.
|
||||
It is suggested to examine the programming steps needed to create a 3D parametric model of the "nail".
|
||||
This guide describes in detail usage of the Function Mechanism.
|
||||
Other aspects, such as the data model and the interfaces are mentioned in brief.
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_2 Step 1: Data Tree
|
||||
|
||||
The first step consists in model data allocation in the OCAF tree.
|
||||
In other words, it is necessary to decide where to put the data.
|
||||
|
||||
In this case, the data can be organized into a simple tree
|
||||
using references for definition of dependent parameters:
|
||||
|
||||
* Nail
|
||||
* Cone
|
||||
+ Position (x,y,z)
|
||||
+ Radius
|
||||
+ Height
|
||||
* Cylinder (stem)
|
||||
+ Position = "Cone" position translated for "Cone" height along Z;
|
||||
+ Radius = "Cone" radius;
|
||||
+ Height = "Cone" height multiplied by 3;
|
||||
* Cylinder (head)
|
||||
+ Position = "Long cylinder" position translated for "Long cylinder" height along Z;
|
||||
+ Radius = "Long cylinder" radius multiplied by 1.5;
|
||||
+ Height = "Cone" height divided by 2.
|
||||
|
||||
The "nail" object has three sub-leaves in the tree: the cone and two cylinders.
|
||||
|
||||
The cone object is independent.
|
||||
|
||||
The long cylinder representing a "stem" of the nail refers to the corresponding parameters
|
||||
of the cone to define its own data (position, radius and height). It means that the long cylinder depends on the cone.
|
||||
|
||||
The parameters of the head cylinder may be expressed through the cone parameters
|
||||
only or through the cone and the long cylinder parameters.
|
||||
It is suggested to express the position and the radius of the head cylinder
|
||||
through the position and the radius of the long cylinder, and the height
|
||||
of the head cylinder through the height of the cone.
|
||||
It means that the head cylinder depends on the cone and the long cylinder.
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_3 Step 2: Interfaces
|
||||
|
||||
The interfaces of the data model are responsible for dynamic creation
|
||||
of the data tree of the represented at the previous step, data modification and deletion.
|
||||
|
||||
The interface called *INail* should contain the methods for creation
|
||||
of the data tree for the nail, setting and getting of its parameters, computation, visualization and removal.
|
||||
|
||||
@subsection occt_ocaf_functionmechanism_wp_3_1 Creation of the nail
|
||||
|
||||
This method of the interface creates a data tree for the nail at a given leaf of OCAF data tree.
|
||||
|
||||
It creates three sub-leaves for the cone and two cylinders and allocates the necessary data (references at the sub-leaves of the long and the head cylinders).
|
||||
|
||||
It sets the default values of position, radius and height of the nail.
|
||||
|
||||
The nail has the following user parameters:
|
||||
* The position – coincides with the position of the cone
|
||||
* The radius of the stem part of the nail – coincides with the radius of the cone
|
||||
* The height of the nail – a sum of heights of the cone and both cylinders
|
||||
|
||||
The values of the position and the radius of the nail are defined for the cone object data.
|
||||
The height of the cone is recomputed as 2 * heights of nail and divided by 9.
|
||||
|
||||
@subsection occt_ocaf_functionmechanism_wp_3_2 Computation
|
||||
|
||||
The Function Mechanism is responsible for re-computation of the nail.
|
||||
It will be described in detail later in this document.
|
||||
|
||||
A data leaf consists of the reference to the location of the real data
|
||||
and a real value defining a coefficient of multiplication of the referenced data.
|
||||
|
||||
For example, the height of the long cylinder is defined as a reference to the height of the cone
|
||||
with coefficient 3. The data leaf of the height of the long cylinder
|
||||
should contain two attributes: a reference to the height of cone and a real value equal to 3.
|
||||
|
||||
@subsection occt_ocaf_functionmechanism_wp_3_3 Visualization
|
||||
|
||||
The shape resulting of the nail function can be displayed using the standard OCAF visualization mechanism.
|
||||
|
||||
@subsection occt_ocaf_functionmechanism_wp_3_4 Removal of the nail
|
||||
|
||||
To automatically erase the nail from the viewer and the data tree it is enough to clean the nail leaf from attributes.
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_4 Step 3: Functions
|
||||
|
||||
The nail is defined by four functions: the cone, the two cylinders and the nail function.
|
||||
The function of the cone is independent. The functions of the cylinders depend on the cone function.
|
||||
The nail function depends on the results of all functions:
|
||||
|
||||
@image html ocaf_functionmechanism_wp_image005.png "Picture 3. A graph of dependencies between functions"
|
||||
@image latex ocaf_functionmechanism_wp_image005.png "Picture 3. A graph of dependencies between functions"
|
||||
|
||||
Computation of the model starts with the cone function, then the long cylinder,
|
||||
after that the header cylinder and, finally, the result is generated by the nail function at the end of function chain.
|
||||
|
||||
The Function Mechanism of Open CASCADE Technology creates this graph of dependencies
|
||||
and allows iterating it following the dependencies.
|
||||
The only thing the Function Mechanism requires from its user
|
||||
is the implementation of pure virtual methods of *TFunction_Driver*:
|
||||
|
||||
* <i>\::Arguments()</i> – returns a list of arguments for the function
|
||||
* <i>\::Results()</i> – returns a list of results of the function
|
||||
|
||||
These methods give the Function Mechanism the information on the location of arguments
|
||||
and results of the function and allow building a graph of functions.
|
||||
The class *TFunction_Iterator* iterates the functions of the graph in the execution order.
|
||||
|
||||
The pure virtual method *TFunction_Driver::Execute()* calculating the function should be overridden.
|
||||
|
||||
The method <i>\::MustExecute()</i> calls the method <i>\::Arguments()</i> of the function driver
|
||||
and ideally this information (knowledge of modification of arguments of the function) is enough
|
||||
to make a decision whether the function should be executed or not. Therefore, this method usually shouldn’t be overridden.
|
||||
|
||||
The cone and cylinder functions differ only in geometrical construction algorithms.
|
||||
Other parameters are the same (position, radius and height).
|
||||
|
||||
It means that it is possible to create a base class – function driver for the three functions,
|
||||
and two descendent classes producing: a cone or a cylinder.
|
||||
|
||||
For the base function driver the methods <i>\::Arguments()</i> and <i>\::Results()</i> will be overridden.
|
||||
Two descendent function drivers responsible for creation of a cone and a cylinder will override only the method <i>\::Execute()</i>.
|
||||
|
||||
The method <i>\::Arguments()</i> of the function driver of the nail returns the results of the functions located under it in the tree of leaves. The method <i>\::Execute()</i> just collects the results of the functions and makes one shape – a nail.
|
||||
|
||||
This way the data model using the Function Mechanism is ready for usage. Do not forget to introduce the function drivers for a function driver table with the help of *TFunction_DriverTable* class.
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_5 Appendix 1
|
||||
|
||||
This appendix gives an example of the code for iteration and execution of functions.
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
|
||||
|
||||
// The scope of functions is defined.
|
||||
Handle(TFunction_Scope) scope = TFunction_Scope::Set( anyLabel );
|
||||
|
||||
// The information on modifications in the model is received.
|
||||
TFunction_Logbook& log = scope-GetLogbook();
|
||||
|
||||
// The iterator is iInitialized by the scope of functions.
|
||||
TFunction_Iterator iterator( anyLabel );
|
||||
Iterator.SetUsageOfExecutionOrder( true );
|
||||
|
||||
// The function is iterated, its dependency is checked on the modified data and executed if necessary.
|
||||
for (; iterator.more(); iterator.Next())
|
||||
{
|
||||
// The function iterator may return a list of current functions for execution.
|
||||
// It might be useful for multi-threaded execution of functions.
|
||||
const TDF_LabelList& currentFunctions = iterator.Current();
|
||||
|
||||
//The list of current functions is iterated.
|
||||
TDF_ListIteratorOfLabelList currentterator( currentFucntions );
|
||||
for (; currentIterator.More(); currentIterator.Next())
|
||||
{
|
||||
// An interface for the function is created.
|
||||
TFunction_IFunction interface( currentIterator.Value() );
|
||||
|
||||
// The function driver is retrieved.
|
||||
Handle(TFunction_Driver) driver = interface.GetDriver();
|
||||
|
||||
// The dependency of the function on the modified data is checked.
|
||||
If (driver-MustExecute( log ))
|
||||
{
|
||||
// The function is executed.
|
||||
int ret = driver-Execute( log );
|
||||
if ( ret )
|
||||
return false;
|
||||
} // end if check on modification
|
||||
} // end of iteration of current functions
|
||||
} // end of iteration of functions.
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@section occt_ocaf_functionmechanism_wp_6 Appendix 2
|
||||
|
||||
This appendix gives an example of the code for a cylinder function driver. In order to make the things clearer, the methods <i>\::Arguments()</i> and <i>\::Results()</i> from the base class are also mentioned.
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
|
||||
|
||||
// A virtual method ::Arguments() returns a list of arguments of the function.
|
||||
CylinderDriver::Arguments( TDF_LabelList& args )
|
||||
{
|
||||
// The direct arguments, located at sub-leaves of the fucntion, are collected (see picture 2).
|
||||
TDF_ChildIterator cIterator( Label(), false );
|
||||
for (; cIterator.More(); cIterator.Next() )
|
||||
{
|
||||
// Direct argument.
|
||||
TDF_Label sublabel = cIterator.Value();
|
||||
Args.Append( sublabel );
|
||||
|
||||
// The references to the external data are checked.
|
||||
Handle(TDF_Reference) ref;
|
||||
If ( sublabel.FindAttribute( TDF_Reference::GetID(), ref ) )
|
||||
{
|
||||
args.Append( ref-Get() );
|
||||
}
|
||||
}
|
||||
|
||||
// A virtual method ::Results() returns a list of result leaves.
|
||||
CylinderDriver::Results( TDF_LabelList& res )
|
||||
{
|
||||
// The result is kept at the function label.
|
||||
Res.Append( Label() );
|
||||
}
|
||||
|
||||
// Execution of the function driver.
|
||||
Int CylinderDriver::Execute( TFunction_Logbook& log )
|
||||
{
|
||||
// Position of the cylinder – position of the first function (cone)
|
||||
//is elevated along Z for height values of all previous functions.
|
||||
gp_Ax2 axes = …. // out of the scope of this guide.
|
||||
// The radius value is retrieved.
|
||||
// It is located at second child sub-leaf (see the picture 2).
|
||||
TDF_Label radiusLabel = Label().FindChild( 2 );
|
||||
|
||||
// The multiplicator of the radius ()is retrieved.
|
||||
Handle(TDataStd_Real) radiusValue;
|
||||
radiusLabel.FindAttribute( TDataStd_Real::GetID(), radiusValue);
|
||||
|
||||
// The reference to the radius is retrieved.
|
||||
Handle(TDF_Reference) refRadius;
|
||||
RadiusLabel.FindAttribute( TDF_Reference::GetID(), refRadius );
|
||||
|
||||
// The radius value is calculated.
|
||||
double radius = 0.0;
|
||||
|
||||
if ( refRadius.IsNull() )
|
||||
{
|
||||
radius = radiusValue-Get();
|
||||
}
|
||||
else
|
||||
{
|
||||
// The referenced radius value is retrieved.
|
||||
Handle(TDataStd_Real) referencedRadiusValue;
|
||||
RefRadius-Get().FindAttribute(TDataStd_Real::GetID() ,referencedRadiusValue );
|
||||
radius = referencedRadiusValue-Get() * radiusValue-Get();
|
||||
}
|
||||
|
||||
// The height value is retrieved.
|
||||
double height = … // similar code to taking the radius value.
|
||||
|
||||
// The cylinder is created.
|
||||
TopoDS_Shape cylinder = BRepPrimAPI_MakeCylinder(axes, radius, height);
|
||||
|
||||
// The result (cylinder) is set
|
||||
TNaming_Builder builder( Label() );
|
||||
Builder.Generated( cylinder );
|
||||
|
||||
// The modification of the result leaf is saved in the log.
|
||||
log.SetImpacted( Label() );
|
||||
|
||||
return 0;
|
||||
}
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@ -1,139 +0,0 @@
|
||||
Distribution of Data Through OCAF Tree {#occt_user_guides__ocaf_tree_wp}
|
||||
=======================================
|
||||
@tableofcontents
|
||||
|
||||
@section occt_ocaf_tree_wp_1 Introduction
|
||||
|
||||
Open CASCADE Application Framework (OCAF) represents a set of classes for Rapid Application Development.
|
||||
OCAF helps to implement such functions as undo and redo, copy, cut and paste, storage and retrieval of documents, and many others.
|
||||
|
||||
OCAF is based on a notion of label-attribute. The labels form a tree.
|
||||
The attributes are attached to the labels and store user data in the OCAF document.
|
||||
|
||||
This document describes how data should be stored in the OCAF document and considers the following issues:
|
||||
|
||||
* Should we choose standard attributes or is it better to create new ones?
|
||||
* How can we optimize data allocation to make it easy to use and efficient for memory usage and application speed?
|
||||
|
||||
In particular, the document describes an example of using standard OCAF attributes and creating new OCAF attributes. It is assumed that the reader is already familiar with some OCAF basics.
|
||||
|
||||
|
||||
@section occt_ocaf_tree_wp_2 Description
|
||||
|
||||
When you start to design an application based on OCAF,
|
||||
usually you need to choose between standard and newly-created attributes
|
||||
to be used for allocation of data in the OCAF document.
|
||||
Before giving an answer to this question, let’s overview standard OCAF attributes.
|
||||
|
||||
All basic data types are represented in OCAF as special attributes:
|
||||
* Integer,
|
||||
* Double,
|
||||
* String,
|
||||
* Array of integer values,
|
||||
* Array of double values,
|
||||
* Array of string values,
|
||||
* Topological shapes.
|
||||
|
||||
An attentive reader might have noticed that there is no Boolean type.
|
||||
This is because the Integer type is usually used instead.
|
||||
|
||||
So, we have an opportunity to describe any model by means of standard OCAF attributes.
|
||||
But will this description be efficient for memory, speed, and, at the same time, convenient to use?
|
||||
It depends on a particular model.
|
||||
|
||||
OCAF has one restriction: only one attribute type may be allocated to one label.
|
||||
It is necessary to take into account the design of the application data tree.
|
||||
For example, if a label should possess several double values,
|
||||
it is necessary to distribute them through several child sub-labels or use an array of double values.
|
||||
|
||||
Let’s consider several boundary implementations of the same model in OCAF tree
|
||||
and analyse the advantages and disadvantages of each approach.
|
||||
|
||||
@section occt_ocaf_tree_wp_3 Comparison and analysis of approaches
|
||||
|
||||
Below are described two different model implementations:
|
||||
one is based on standard OCAF attributes and the other is based
|
||||
on the creation of a new attribute possessing all data of the model.
|
||||
|
||||
A load is distributed through the shape. The measurements are taken at particular points defined by (x, y and z) co-ordinates. The load is represented as a projection onto X, Y and Z axes of the local co-ordinate system at each point of measurement. A matrix of transformation is needed
|
||||
to convert the local co-ordinate system to the global one, but this is optional.
|
||||
|
||||
So, we have 15 double values at each point of measurement.
|
||||
If the number of such points is 100 000, for example, it means
|
||||
that we have to store 1 500 000 double values in the OCAF document.
|
||||
|
||||
The first approach consists in using standard OCAF attributes.
|
||||
Besides, there are several variants of how the standard attributes may be used:
|
||||
* Allocation of all 1 500 000 double values as one array of double values attached to one label;
|
||||
* Allocation of values of one measure of load (15 values) as one array of double values and attachment of one point of measure to one label;
|
||||
* Allocation of each point of measure as an array of 3 double values attached to one label, the projection of load onto the local co-ordinate system axes as another array of 3 double values attached to a sub-label, and the matrix of projection (9 values) as the third array also attached to a sub-label.
|
||||
|
||||
Certainly, other variants are also possible.
|
||||
|
||||
@image html ocaf_tree_wp_image003.png "Allocation of all data as one array of double values"
|
||||
@image latex ocaf_tree_wp_image003.png "Allocation of all data as one array of double values"
|
||||
|
||||
The first approach to allocation of all data represented as one array of double values
|
||||
saves initial memory and is easy to implement.
|
||||
But access to the data is difficult because the values are stored in a flat array.
|
||||
It will be necessary to implement a class with several methods giving access
|
||||
to particular fields like the measurement points, loads and so on.
|
||||
|
||||
If the values may be edited in the application,
|
||||
it means that the whole array will be backed-up on each edition.
|
||||
The memory usage will increase very fast!
|
||||
So, this approach may be considered only in case of non-editable data.
|
||||
|
||||
Let’s consider the allocation of data of each measurement point per label (the second case).
|
||||
In this case we create 100 000 labels – one label for each measurement point
|
||||
and attach an array of double values to these labels:
|
||||
|
||||
@image html ocaf_tree_wp_image004.png "Allocation of data of each measurement point as arrays of double values"
|
||||
@image latex ocaf_tree_wp_image004.png "Allocation of data of each measurement point as arrays of double values"
|
||||
|
||||
Now edition of data is safer as far as memory usage is concerned.
|
||||
Change of value for one measurement point (any value: point co-ordinates, load, and so on)
|
||||
backs-up only one small array of double values.
|
||||
But this structure (tree) requires more memory space (additional labels and attributes).
|
||||
|
||||
Besides, access to the values is still difficult and it is necessary
|
||||
to have a class with methods of access to the array fields.
|
||||
|
||||
The third case of allocation of data through OCAF tree is represented below:
|
||||
|
||||
@image html ocaf_tree_wp_image005.png "Allocation of data into separate arrays of double values"
|
||||
@image latex ocaf_tree_wp_image005.png "Allocation of data into separate arrays of double values"
|
||||
|
||||
In this case sub-labels are involved and we can easily access the values of each measurement point,
|
||||
load or matrix. We don’t need an interface class with methods of access to the data
|
||||
(if it exists, it would help to use the data structure, but this is optional).
|
||||
|
||||
On the one hand, this approach requires more memory for allocation of the attributes (arrays of double values).
|
||||
On the other hand, it saves memory during the edition of data
|
||||
by backing-up only the small array containing the modified data.
|
||||
So, if the data is fully modifiable, this approach is more preferable.
|
||||
|
||||
Before making a conclusion, let’s consider the same model implemented through a newly created OCAF attribute.
|
||||
|
||||
For example, we might allocate all data belonging to one measurement point as one OCAF attribute.
|
||||
In this case we implement the third variant of using the standard attributes (see picture 3),
|
||||
but we use less memory (because we use only one attribute instead of three):
|
||||
|
||||
@image html ocaf_tree_wp_image006.png "Allocation of data into newly created OCAF attribute"
|
||||
@image latex ocaf_tree_wp_image006.png "Allocation of data into newly created OCAF attribute"
|
||||
|
||||
The second variant of using standard OCAF attributes still has drawbacks:
|
||||
when data is edited, OCAF backs-up all values of the measurement point.
|
||||
|
||||
Let’s imagine that we have some non-editable data.
|
||||
It would be better for us to allocate this data separately from editable data.
|
||||
Back-up will not affect non-editable data and memory will not increase so much during data edition.
|
||||
|
||||
@section occt_ocaf_tree_wp_4 Conclusion
|
||||
|
||||
When deciding which variant of data model implementation to choose,
|
||||
it is necessary to take into account the application response time,
|
||||
memory allocation and memory usage in transactions.
|
||||
|
||||
Most of the models may be implemented using only standard OCAF attributes.
|
||||
Some other models need special treatment and require implementation of new OCAF attributes.
|
Before Width: | Height: | Size: 24 KiB |
@ -1,624 +0,0 @@
|
||||
OCAF White-Paper {#occt_user_guides__ocaf_wp}
|
||||
========================
|
||||
@tableofcontents
|
||||
|
||||
@section ocaf_wp_1 What is OCAF ?
|
||||
|
||||
@subsection ocaf_wp_1_1 Purpose of OCAF
|
||||
|
||||
The Open CASCADE Application Framework (OCAF) is an easy-to-use platform for rapidly developing
|
||||
sophisticated domain-specific design applications.
|
||||
A typical application developed using OCAF deals with two or three-dimensional (2D or 3D) geometric modeling
|
||||
in trade-specific Computer Aided Design (CAD) systems, manufacturing or analysis applications,
|
||||
simulation applications or illustration tools.
|
||||
|
||||
Developing a design application requires addressing many technical aspects.
|
||||
In particular, given the functional specification of your application, you must at least:
|
||||
|
||||
* Design the architecture of the application — definition of the software components and the way they cooperate
|
||||
* Define the data model able to support the functionality required — a design application operates on data maintained during the whole end-user working session
|
||||
* Structure the software in order to
|
||||
* synchronize the display with the data — commands modifying objects must update the views
|
||||
* support generalized undo-redo commands — this feature has to be taken into account very early in the design process
|
||||
* Implement the function for saving the data — if the application has a long life cycle, the compatibility of data between versions of the application has to be addressed
|
||||
* Build the application user interface
|
||||
|
||||
By providing architectural guidance and ready-to-use solutions to these issues,
|
||||
OCAF helps you to develop your application significantly faster: you concentrate on the application's functionality.
|
||||
|
||||
As you use the architecture provided by OCAF, the design of your application is made easy: as the application developer you can concentrate on the functionality instead of the underlying mechanisms required to support it.
|
||||
|
||||
Also, thanks to the coupling with the other Open CASCADE Technology modules,
|
||||
your application can rapidly be prototyped. In addition, the final application
|
||||
can be developed by industrializing the prototype — you don't need to restart the development from scratch.
|
||||
|
||||
Last but not least, you base your application on an Open Source component:
|
||||
this guarantees the long-term usefulness of your development.
|
||||
|
||||
@subsection ocaf_wp_1_2 Overview of the Architecture
|
||||
|
||||
OCAF provides you with an object-oriented Application-Document-Attribute model.
|
||||
This consists of C++ class libraries. The main class, Application, is an abstract class
|
||||
in charge of handling documents during the working session. Services provided by this class include:
|
||||
* Creating new documents
|
||||
* Saving documents and opening them
|
||||
* Initializing document views
|
||||
|
||||
The document, implemented by the concrete class Document, is the container for the application data.
|
||||
Its main purpose is to centralize notifications of data editing in order to provide Undo-Redo.
|
||||
Each document is saved in a single flat ASCII file defined by its format and extension (a ready-to-use format is provided with OCAF).
|
||||
|
||||
Application data are attributes, that is, instances of classes derived from the *Attribute* abstract class,
|
||||
organized according to the OCAF Data Framework.
|
||||
The OCAF Data Framework references aggregations of attributes using persistent identifiers in a single hierarchy (the Data Framework is described <a href="#ocaf_wp_2">in the next chapter</a>). A wide range of attributes come with OCAF, including:
|
||||
|
||||
* Primitive attributes such as *Integer, Real, Name* and *Comment*;
|
||||
* Shape attribute containing the geometry of the whole model or elements of it;
|
||||
* Other geometric attributes such as Datums (points, axis and plane) and Constraints (*tangent-to, at-a-given-distance, from-a-given-angle, concentric,* etc.)
|
||||
* Modeling step and Function attributes — the purpose of these attributes is to rebuild objects after they have been modified (parameterization of models)
|
||||
* Visualization attributes — these attributes allow data to be visualized in a 2D or 3D viewer
|
||||
* User attributes, that is, attributes typed by the application
|
||||
* In addition, application-specific data can be added by defining new attribute classes;
|
||||
naturally, this changes the standard file format. The only functions that have to be implemented are:
|
||||
* Copying the attribute
|
||||
* Converting it from and to its persistent homolog (persistence is briefly presented in the paragraph <a href="#ocaf_wp_2_3">Persistent Data Storage</a>)
|
||||
|
||||
@image html ocaf_wp_image003.png "The Application-Document-Attribute model "
|
||||
@image latex ocaf_wp_image003.png "The Application-Document-Attribute model "
|
||||
|
||||
OCAF uses other modules of Open CASCADE Technology — the Shape attribute is implemented with the geometry supported by the <a href="#user_guides__modeling_data">Modeling Data</a> module and the viewer is the one provided with the <a href="#user_guides__visualization">Visualization</a> module. Modeling functions can be implemented using the <a href="#user_guides__modeling_algos">Modeling Algorithms</a> module.
|
||||
|
||||
@subsection ocaf_wp_1_3 Getting Started
|
||||
|
||||
At the beginning of your development, you first define an application class by inheriting from the Application abstract class.
|
||||
You only have to create and determine the resources of the application
|
||||
for specifying the format of your documents (you generally use the standard one) and their file extension.
|
||||
|
||||
Then, you design the application data model by organizing attributes you choose among those provided with OCAF.
|
||||
You can specialize these attributes using the User attribute. For example, if you need a reflection coefficient,
|
||||
you aggregate a User attribute identified as a reflection coefficient
|
||||
with a Real attribute containing the value of the coefficient (as such, you don't define a new class).
|
||||
|
||||
If you need application specific data not provided with OCAF, for example,
|
||||
to incorporate a finite element model in the data structure,
|
||||
you define a new attribute class containing the mesh,
|
||||
and you include its persistent homologue in a new file format.
|
||||
|
||||
Once you have implemented the commands which create and modify the data structure
|
||||
according to your specification, OCAF provides you, without any additional programming:
|
||||
|
||||
* Persistent reference to any data, including geometric elements — several documents can be linked with such reference;
|
||||
* Document-View association;
|
||||
* Ready-to-use functions such as :
|
||||
* Undo-redo;
|
||||
* Save and open application data.
|
||||
|
||||
Finally, you develop the application's graphical user interface using the toolkit of your choice, for example:
|
||||
* KDE Qt or GNOME GTK+ on Linux;
|
||||
* Microsoft Foundation Classes (MFC) on Windows Motif on Sun;
|
||||
* Other commercial products such as Ilog Views.
|
||||
|
||||
You can also implement the user interface in the Java language using
|
||||
the Swing-based Java Application Desktop component (JAD) provided with OCAF.
|
||||
|
||||
@subsection ocaf_wp_1_4 An example of OCAF usage
|
||||
|
||||
To create a useful OCAF-based application, it is necessary to redefine two deferred methods: <i> Formats</i> and <i> ResourcesName</i>
|
||||
|
||||
In the <i> Formats </i> method, add the format of the documents, which need to be read by the application and may have been built in other applications.
|
||||
|
||||
For example:
|
||||
|
||||
~~~~
|
||||
void myApplication::Formats(TColStd_SequenceOfExtendedString& Formats)
|
||||
{
|
||||
Formats.Append(TCollection_ExtendedString ("OCAF-myApplication"));
|
||||
}
|
||||
~~~~
|
||||
|
||||
In the <i> ResourcesName</i> method, you only define the name of the resource file. This
|
||||
file contains several definitions for the saving and opening mechanisms associated
|
||||
with each format and calling of the plug-in file.
|
||||
|
||||
~~~~
|
||||
Standard_CString myApplication::ResourcesName()
|
||||
{
|
||||
return Standard_CString ("Resources");
|
||||
}
|
||||
~~~~
|
||||
|
||||
To obtain the saving and opening mechanisms, it is necessary to set two environment variables: <i> CSF_PluginDefaults</i>, which defines the path of the plug-in file, and <i> CSF_ResourcesDefault</i>, which defines the resource file:
|
||||
|
||||
~~~~
|
||||
SetEnvironmentVariable ( "CSF_ResourcesDefaults",myDirectory);
|
||||
SetEnvironmentVariable ( "CSF_PluginDefaults",myDirectory);
|
||||
~~~~
|
||||
|
||||
The plugin and the resource files of the application will be located in <i> myDirector</i>.
|
||||
The name of the plugin file must be <i>Plugin</i>.
|
||||
|
||||
### Resource File
|
||||
|
||||
The resource file describes the documents (type and extension) and
|
||||
the type of data that the application can manipulate
|
||||
by identifying the storage and retrieval drivers appropriate for this data.
|
||||
|
||||
Each driver is unique and identified by a GUID generated, for example, with the <i> uuidgen </i> tool in Windows.
|
||||
|
||||
Five drivers are required to use all standard attributes provided within OCAF:
|
||||
|
||||
* the schema driver (ad696002-5b34-11d1-b5ba-00a0c9064368)
|
||||
* the document storage driver (ad696000-5b34-11d1-b5ba-00a0c9064368)
|
||||
* the document retrieval driver (ad696001-5b34-11d1-b5ba-00a0c9064368)
|
||||
* the attribute storage driver (47b0b826-d931-11d1-b5da-00a0c9064368)
|
||||
* the attribute retrieval driver (47b0b827-d931-11d1-b5da-00a0c9064368)
|
||||
|
||||
These drivers are provided as plug-ins and are located in the <i> PappStdPlugin</i> library.
|
||||
|
||||
|
||||
For example, this is a resource file, which declares a new model document OCAF-MyApplication:
|
||||
|
||||
~~~~
|
||||
formatlist:OCAF-MyApplication
|
||||
OCAF-MyApplication.Description: MyApplication Document Version 1.0
|
||||
OCAF-MyApplication.FileExtension: sta
|
||||
OCAF-MyApplication.StoragePlugin: ad696000-5b34-11d1-b5ba-00a0c9064368
|
||||
OCAF-MyApplication.RetrievalPlugin: ad696001-5b34-11d1-b5ba-00a0c9064368
|
||||
OCAF-MyApplicationSchema: ad696002-5b34-11d1-b5ba-00a0c9064368
|
||||
OCAF-MyApplication.AttributeStoragePlugin: 47b0b826-d931-11d1-b5da-00a0c9064368
|
||||
OCAF-MyApplication.AttributeRetrievalPlugin: 47b0b827-d931-11d1-b5da-00a0c9064368
|
||||
~~~~
|
||||
|
||||
|
||||
### Plugin File
|
||||
|
||||
The plugin file describes the list of required plug-ins to run the application and the
|
||||
libraries in which plug-ins are located.
|
||||
|
||||
You need at least the <i> FWOSPlugin</i> and the plug-in drivers to run an OCAF application.
|
||||
|
||||
The syntax of each item is <i> Identification.Location Library_Name, </i> where:
|
||||
* Identification is GUID.
|
||||
* Location defines the location of the Identification (where its definition is found).
|
||||
* Library_Name is the name (and path to) the library, where the plug-in is located.
|
||||
|
||||
For example, this is a Plugin file:
|
||||
|
||||
~~~~
|
||||
a148e300-5740-11d1-a904-080036aaa103.Location: FWOSPlugin
|
||||
! base document drivers plugin
|
||||
ad696000-5b34-11d1-b5ba-00a0c9064368.Location: PAppStdPlugin
|
||||
ad696001-5b34-11d1-b5ba-00a0c9064368.Location: PAppStdPlugin
|
||||
ad696002-5b34-11d1-b5ba-00a0c9064368.Location: PAppStdPlugin
|
||||
47b0b826-d931-11d1-b5da-00a0c9064368.Location: PAppStdPlugin
|
||||
47b0b827-d931-11d1-b5da-00a0c9064368.Location: PAppStdPlugin
|
||||
~~~~
|
||||
|
||||
@section ocaf_wp_2 A Look Inside OCAF
|
||||
|
||||
@subsection ocaf_wp_2_1 The Design of OCAF
|
||||
|
||||
@subsubsection ocaf_wp_2_1_1 Reference-key model
|
||||
|
||||
In most existing geometric modeling systems, the data are topology driven.
|
||||
They usually use a boundary representation (BRep), where geometric models
|
||||
are defined by a collection of faces, edges and vertices,
|
||||
to which application data are attached. Examples of data include:
|
||||
|
||||
* a color;
|
||||
* a material;
|
||||
* information that a particular edge is blended.
|
||||
|
||||
When the geometric model is parameterized, that is, when you can change
|
||||
the value of parameters used to build the model (the radius of a blend, the thickness of a rib, etc.),
|
||||
the geometry is highly subject to change.
|
||||
In order to maintain the attachment of application data, the geometry must be distinguished from other data.
|
||||
|
||||
In OCAF, the data are reference-key driven. It is a uniform model in which reference-keys
|
||||
are the persistent identification of data. All **accessible** data, including the geometry,
|
||||
are implemented as attributes attached to reference-keys.
|
||||
The geometry becomes the value of the Shape attribute, just as a number is the value
|
||||
of the Integer and Real attributes and a string that of the Name attribute.
|
||||
|
||||
On a single reference-key, many attributes can be aggregated;
|
||||
the application can ask at runtime which attributes are available.
|
||||
For example, to associate a texture to a face in a geometric model,
|
||||
both the face and the texture are attached to the same reference-key.
|
||||
|
||||
@image html ocaf_wp_image004.png "Figure 2. Topology driven versus reference-key driven approaches"
|
||||
@image latex ocaf_wp_image004.png "Figure 2. Topology driven versus reference-key driven approaches"
|
||||
|
||||
@subsubsection ocaf_wp_2_1_2 Topological naming
|
||||
|
||||
Reference-keys can be created in two ways:
|
||||
|
||||
* At programming time, by the application
|
||||
* At runtime, by the end-user of the application (providing that you include this capability in the application)
|
||||
|
||||
As an application developer, you generate reference-keys in order to give semantics to the data.
|
||||
For example, a function building a prism may create three reference-keys:
|
||||
one for the base of the prism, a second for the lateral faces and a third for the top face.
|
||||
This makes up a semantic built-in the application's prism feature.
|
||||
On the other hand, in a command allowing the end-user to set a texture to a face he/she selects,
|
||||
you must create a reference-key to the selected face
|
||||
if it has not previously been referenced in any feature
|
||||
(as in the case of one of the lateral faces of the prism).
|
||||
|
||||
When you create a reference-key to selected topological elements (faces, edges or vertices),
|
||||
OCAF attaches to the reference-key information defining the selected topology — the Naming attribute.
|
||||
For example, it may be the faces to which a selected edge is common to.
|
||||
This information, as well as information about the evolution of the topology at each modeling step
|
||||
(the modified, updated and deleted faces), is used by the naming algorithm to maintain the topology
|
||||
attached to the reference-key. As such, on a parametrized model,
|
||||
after modifying the value of a parameter, the reference-keys still address the appropriate faces,
|
||||
even if their geometry has changed.
|
||||
Consequently, you change the size of the cube shown in the figure 2 above,
|
||||
the user texture stay attached to the right face.
|
||||
|
||||
<b>Note</b> As Topological naming is based on the reference-key and attributes such as Naming
|
||||
(selection information) and Shape (topology evolution information),
|
||||
OCAF is not coupled to the underlying modeling libraries.
|
||||
The only modeling services required by OCAF are the following:
|
||||
|
||||
* Each algorithm must provide information about the evolution of the topology
|
||||
(the list of faces modified, updated and deleted by the algorithm)
|
||||
* Exploration of the geometric model must be available
|
||||
(a 3D model is made of faces bounded by close wires,
|
||||
themselves composed by a sequence of edges connected by their vertices)
|
||||
|
||||
Currently, OCAF uses the Open CASCADE Technology modeling libraries.
|
||||
|
||||
@subsubsection ocaf_wp_2_1_3 Aggregation of attributes
|
||||
|
||||
To design an OCAF-based data model, the application developer is encouraged to aggregate
|
||||
ready-to-use attributes instead of defining new attributes by inheriting from an abstract root class.
|
||||
There are two major advantages in using aggregation rather than inheritance:
|
||||
|
||||
* As you don't implement data by defining new classes, the format of saved data
|
||||
provided with OCAF doesn't change; so you don't have to write the Save and Open functions
|
||||
* The application can query the data at runtime if a particular attribute is available
|
||||
|
||||
@subsubsection ocaf_wp_2_1_4 Summary
|
||||
|
||||
* OCAF is based on a uniform reference-key model in which:
|
||||
* Reference-keys provide persistent identification of data;
|
||||
* Data, including geometry, are implemented as attributes attached to reference-keys;
|
||||
* Topological naming maintains the selected geometry attached to reference-keys in parametrized models ;
|
||||
* In many applications, the data format provided with OCAF doesn't need to be extended;
|
||||
* OCAF is not coupled to the underlying modeling libraries.
|
||||
|
||||
@subsection ocaf_wp_2_2 The Data Framework
|
||||
|
||||
@subsubsection ocaf_wp_2_2_1 Data structure
|
||||
|
||||
The OCAF Data Framework is the Open CASCADE Technology realization
|
||||
of the reference-key model presented in the previous paragraph.
|
||||
It implements the reference-key as label objects,
|
||||
organized in a tree structure characterized by the following features:
|
||||
|
||||
* A document contains only one tree of labels
|
||||
* Each label has a tag expressed as an integer value unique at its level in the tree
|
||||
* A label is identified by a string — the entry — built by concatenation of tags from the root of the tree, for example [0:1:2:1]
|
||||
* Attributes are of a type identified by a universal unique identifier (GUID)
|
||||
* Attributes are attached to labels; a label may refer to many attributes as long as each has a different GUID
|
||||
|
||||
As such, each piece of data has a unique persistent address made up of the document path,
|
||||
its entry and the GUID of its class.
|
||||
|
||||
In the image the application for designing coffee machines first allocates
|
||||
a label for the machine unit. It then adds sub-labels for the main features
|
||||
(glass coffee pot, water receptacle and filter) which it refines as needed
|
||||
(handle and reservoir of the coffee pot and spout of the reservoir).
|
||||
|
||||
You now attach technical data describing the handle — its geometry and color —
|
||||
and the reservoir — its geometry and material.
|
||||
Later on, you can modify the handle's geometry without changing its color —
|
||||
both remain attached to the same label.
|
||||
|
||||
@image html ocaf_wp_image007.png "Figure 3. The coffee machine"
|
||||
@image latex ocaf_wp_image007.png "Figure 3. The coffee machine"
|
||||
|
||||
@image html ocaf_wp_image005.png "Figure 4. The data structure of the coffee machine"
|
||||
@image latex ocaf_wp_image005.png "Figure 4. The data structure of the coffee machine"
|
||||
|
||||
The nesting of labels is key to OCAF. This allows a label to have its own structure
|
||||
with its local addressing scheme which can be reused in a more complex structure.
|
||||
Take, for example, the coffee machine. Given that the coffee pot's handle has a label of tag [1],
|
||||
the entry for the handle in the context of the coffee pot only (without the machine unit) is [0:1:1].
|
||||
If you now model a coffee machine with two coffee pots, one at the label [1],
|
||||
the second at the label [4] in the machine unit,
|
||||
the handle of the first pot would have the entry [0:1:1:1]
|
||||
whereas the handle of the second pot would be [0:1:4:1].
|
||||
This way, we avoid any confusion between coffee pot handles.
|
||||
|
||||
@subsubsection ocaf_wp_2_2_2 Compound documents
|
||||
|
||||
As the identification of data is persistent, one document can reference data contained in another document,
|
||||
the referencing and referenced documents being saved in two separate files.
|
||||
|
||||
Lets look at the coffee machine application again. The coffee pot can be placed in one document.
|
||||
The coffee machine document then includes an *occurrence* — a positioned copy — of the coffee pot.
|
||||
This occurrence is defined by an XLink attribute (the external Link)
|
||||
which references the coffee pot of the first document
|
||||
(the XLink contains the relative path of the coffee pot document and the entry of the coffee pot data [0:1] ).
|
||||
|
||||
@image html ocaf_wp_image006.png "Figure 5. The coffee machine compound document"
|
||||
@image latex ocaf_wp_image006.png "Figure 5. The coffee machine compound document"
|
||||
|
||||
In this context, the end-user of the coffee machine application can open the coffee pot document,
|
||||
modify the geometry of, for example, the reservoir, and overwrite the document without worrying
|
||||
about the impact of the modification in the coffee machine document.
|
||||
To deal with this situation, OCAF provides a service which allows the application to check
|
||||
whether a document is up-to-date. This service is based on a modification counter included in each document:
|
||||
when an external link is created, a copy of the referenced document counter is associated to the XLink
|
||||
in the referencing document. Providing that each modification of the referenced document increments its own counter,
|
||||
we can detect that the referencing document has to be updated by comparing the two counters
|
||||
(an update function importing the data referenced by an XLink into the referencing document is also provided).
|
||||
|
||||
|
||||
@subsubsection ocaf_wp_2_2_3 Transaction mechanism
|
||||
|
||||
The Data Framework also provides a transaction mechanism inspired from database management systems:
|
||||
the data are modified within a transaction which is terminated either by a Commit
|
||||
if the modifications are validated or by an Abort if the modifications are abandoned —
|
||||
the data are then restored to the state it was in prior to the transaction.
|
||||
This mechanism is extremely useful for:
|
||||
|
||||
* Securing editing operations (if an error occurs, the transaction is abandoned and the structure retains its integrity)
|
||||
* Simplifying the implementation of the Cancel function (when the end-user begins a command,
|
||||
the application may launch a transaction and operate directly in the data structure;
|
||||
abandoning the action causes the transaction to Abort)
|
||||
* Executing Undo (at commit time, the modifications are recorded in order to be able to restore the data to their previous state)
|
||||
|
||||
The transaction mechanism consists simply of managing a backup copy of attributes.
|
||||
During a transaction, attributes are copied before their first modification.
|
||||
If the transaction is validated, the copy is destroyed.
|
||||
If the transaction is abandoned, the attribute is restored to its initial value
|
||||
(when attributes are added or deleted, the operation is simply reversed).
|
||||
|
||||
Transactions are document-centered, that is, the application starts a transaction on a document.
|
||||
So, modifying a referenced document and updating one of its referencing documents requires
|
||||
two transactions, even if both operations are done in the same working session.
|
||||
|
||||
@subsection ocaf_wp_2_3 Persistent Data Storage
|
||||
|
||||
@subsubsection ocaf_wp_2_3_1 Introduction
|
||||
|
||||
In OCAF, persistence, that is, the mechanism used to save a document in a file, is based on an explicit formal description of the data saved.
|
||||
|
||||
When you open a document, the application reads the corresponding file and first creates a memory representation of it. This representation is then converted to the application data model — the OCAF-based data structure the application operates on. The file's memory representation consists of objects defined by classes known as persistent.
|
||||
|
||||
The persistent classes needed by an application to save its documents make the application's data schema. This schema defines the way the data are organized in the file — the format of the data. In other words, the file is simply an ASCII dump of the persistent data defined by the schema, the persistent data being created from the application data model during the save process.
|
||||
|
||||
Only canonical information is saved. As a matter of fact, the application data model usually contains additional data to optimize processing. For example, the persistent Bézier curve is defined by its poles, whereas its data model equivalent also contains coefficients used to compute a point at a given parameter. The additional data is calculated when the document is opened.
|
||||
|
||||
The major advantages of this approach are the following:
|
||||
* Providing that the data format is published, files created by OCAF-based applications
|
||||
can be read without needing a runtime of the application (openness)
|
||||
* Although the persistence approach makes the data format more stable,
|
||||
OCAF provides a framework for managing compatibility of data between versions of the application —
|
||||
modification of the data format is supported through the versioning of schema.
|
||||
|
||||
OCAF includes a ready-to-use schema suitable for most applications.
|
||||
However, it can be extended if needed. For that, the only things you have to do are:
|
||||
|
||||
* To define the additional persistent attributes
|
||||
* To implement the functions converting these persistent attribute to and from the application data model.
|
||||
|
||||
Applications using compound documents extensively (saving data in many files linked together) should implement data management services. As a matter of fact, it's out the scope of OCAF to provide functions such as:
|
||||
* Version and configuration management of compound documents;
|
||||
* Querying a referenced document for its referencing documents.
|
||||
|
||||
In order to ease the delegation of document management to a data management application, OCAF encapsulates the file management functions in a driver (the meta-data driver). You have to implement this driver for your application to communicate with the data management system of your choice.
|
||||
|
||||
|
||||
@subsubsection ocaf_wp_2_3_2 Schemes of Persistence
|
||||
|
||||
There are three schemes of persistence, which you can use to store and retrieve OCAF data (documents):
|
||||
|
||||
* <i> Standard</i> persistence schema, compatible with previous OCAF applications
|
||||
* <i> XmlOcaf</i> persistence, allowing the storage of all OCAF data in XML form
|
||||
* <i> BinOcaf</i> persistence, allowing the storage of all OCAF data in binary format form
|
||||
|
||||
|
||||
All schemes are independent of each other, but they guarantee that the standard OCAF
|
||||
attributes stored and retrieved by one schema will be storable and retrievable by
|
||||
the other. Therefore in any OCAF application you can use any persistence schema or
|
||||
even all three of them. The choice is made depending on the *Format* string of stored OCAF documents
|
||||
or automatically by the file header data - on retrieval.
|
||||
|
||||
Persistent data storage in OCAF using the <i> Standard</i> package is presented in:
|
||||
|
||||
* Basic Data Storage
|
||||
* Persistent Collections
|
||||
|
||||
Persistent storage of shapes is presented in the following chapters:
|
||||
|
||||
* Persistent Geometry
|
||||
* Persistent Topology
|
||||
|
||||
Finally, information about opening and saving persistent data is presented in Standard
|
||||
Documents.
|
||||
|
||||
@subsubsection ocaf_wp_2_3_3 Basic Data Storage
|
||||
|
||||
Normally, all data structures provided by Open CASCADE Technology are run-time structures,
|
||||
in other words, transient data. As transient data, they exist only while an application
|
||||
is running and are not stored permanently. However, the Data Storage module provides
|
||||
resources, which enable an application to store data on disk as persistent data.
|
||||
|
||||
Data storage services also provide libraries of persistent classes and translation
|
||||
functions needed to translate data from transient to persistent state and vice-versa.
|
||||
|
||||
#### Libraries of persistent classes
|
||||
|
||||
Libraries of persistent classes are extensible libraries of elementary classes you
|
||||
use to define the database schema of your application. They include:
|
||||
* Unicode (8-bit or 16-bit character type) strings
|
||||
* Collections of any kind of persistent data such as arrays.
|
||||
|
||||
All persistent classes are derived from the \b Persistent base class, which defines
|
||||
a unique way of creating and handling persistent objects. You create new persistent
|
||||
classes by inheriting from this base class.
|
||||
|
||||
#### Translation Functions
|
||||
|
||||
Translation functions allow you to convert persistent objects to transient ones and
|
||||
vice-versa. These translation functions are used to build Storage and Retrieval drivers
|
||||
of an application.
|
||||
|
||||
For each class of 2D and 3D geometric types, and for the general shape class in the
|
||||
topological data structure library, there are corresponding persistent class libraries,
|
||||
which allow you to translate your data with ease.
|
||||
|
||||
#### Creation of Persistent Classes
|
||||
|
||||
If you use Unix platforms as well as WOK and CDL, you can create your own persistent
|
||||
classes. In this case, data storage is achieved by implementing *Storage* and *Retrieval*
|
||||
drivers.
|
||||
|
||||
The <i> Storage </i> package is used to write and read persistent objects.
|
||||
These objects are read and written by a retrieval or storage algorithm
|
||||
(<i> Storage_Schema </i>object) in a container (disk, memory, network ...).
|
||||
Drivers (<i> FSD_File</i> objects) assign a physical container for data to be stored or retrieved.
|
||||
|
||||
The standard procedure for an application in reading a container is as follows:
|
||||
|
||||
* open the driver in reading mode,
|
||||
* call the Read function from the schema, setting the driver as a parameter. This function returns an instance of the <i> Storage_Data </i> class which contains the data being read,
|
||||
* close the driver.
|
||||
|
||||
The standard procedure for an application in writing a container is as follows:
|
||||
|
||||
* open the driver in writing mode,
|
||||
* create an instance of the <i> Storage_Data </i> class, then add the persistent data to write with the function <i> AddRoot</i>,
|
||||
* call the function <i> Write </i> from the schema, setting the driver and the <i> Storage_Data </i> instance as parameters,
|
||||
* close the driver.
|
||||
|
||||
@subsubsection ocaf_wp_2_3_4 Persistent Collections
|
||||
|
||||
Persistent collections are classes which handle dynamically sized collections of data that can be stored in the database. These collections provide three categories of service:
|
||||
|
||||
* persistent strings,
|
||||
* generic arrays of data,
|
||||
* commonly used instantiations of arrays.
|
||||
|
||||
Persistent strings are concrete classes that handle sequences of characters based
|
||||
on both ASCII (normal 8-bit) and Unicode (16-bit) character sets.
|
||||
|
||||
Arrays are generic classes, that is, they can hold a variety of objects not necessarily inheriting from a unique root class. These arrays can be instantiated with any kind of storable or persistent object, and then inserted into the persistent data model of a user application.
|
||||
|
||||
The purpose of these data collections is simply to convert transient data into its persistent equivalent so that it can be stored in the database. To this end, the collections are used to create the persistent data model and assure the link with the database. They do not provide editing or query capabilities because it is more efficient, within the operative data model of the application, to work with transient data structures (from the <i> TCollection</i> package).
|
||||
|
||||
For this reason:
|
||||
|
||||
* the persistent strings only provide constructors and functions to convert between transient and persistent strings, and
|
||||
* the persistent data collections are limited to arrays. In other words, <i> PCollection</i> does not include sequences, lists, and so on (unlike <i> TCollection</i>).
|
||||
|
||||
Persistent string and array classes are found in the <i> PCollection</i> package. In addition, <i> PColStd</i> package provides standard, and frequently used, instantiations of persistent arrays, for very simple objects.
|
||||
|
||||
@subsubsection ocaf_wp_2_3_5 Persistent Geometry
|
||||
|
||||
The Persistent Geometry component describes geometric data structures which can be stored in the database. These packages provide a way to convert data from the transient "world" to the persistent "world".
|
||||
|
||||
Persistent Geometry consists of a set of atomic data models parallel to the geometric data structures described in the geometry packages. Geometric data models, independent of each other, can appear within the data model of any application. The system provides the means to convert each atomic transient data model into a persistent one, but it does not provide a way for these data models to share data.
|
||||
|
||||
Consequently, you can create a data model using these components, store data in, and retrieve it from a file or a database, using the geometric components provided in the transient and persistent "worlds". In other words, you customize the system by declaring your own objects, and the conversion of the geometric components from persistent to transient and vice versa is automatically managed for you by the system.
|
||||
|
||||
However, these simple objects cannot be shared within a more complex data model. To allow data to be shared, you must provide additional tools.
|
||||
|
||||
Persistent Geometry is provided by several packages.
|
||||
|
||||
The <i> PGeom</i> package describes geometric persistent objects in 3D space, such as points,
|
||||
vectors, positioning systems, curves and surfaces.
|
||||
|
||||
These objects are persistent versions of those provided by the <i> Geom</i> package: for
|
||||
each type of transient object provided by Geom there is a corresponding type of persistent
|
||||
object in the <i>PGeom</i> package. In particular the inheritance structure is parallel.
|
||||
|
||||
However the <i> PGeom </i>package does not provide any functions to construct, edit or access
|
||||
the persistent objects. Instead the objects are manipulated as follows:
|
||||
|
||||
* Persistent objects are constructed by converting the equivalent transient <i> Geom </i> objects. To do this you use the <i>MgtGeom::Translate</i> function.
|
||||
* Persistent objects created in this way are used to build persistent data structures that are then stored in a file or database.
|
||||
* When these objects are retrieved from the file or database, they are converted back into the corresponding transient objects from the Geom package. To do this, you use <i>MgtGeom::Translate</i> function.
|
||||
|
||||
In other words, you always edit or query transient data structures within the transient
|
||||
data model supplied by the session.
|
||||
Consequently, the documentation for the <i> PGeom </i> package consists simply of a list of available objects.
|
||||
|
||||
The <i> PGeom2d </i> package describes persistent geometric objects in 2D space, such as points,
|
||||
vectors, positioning systems and curves. This package provides the same type of services
|
||||
as the <i> PGeom</i> package, but for the 2D geometric objects provided by the <i> Geom2d</i> package.
|
||||
Conversions are provided by the <i>MgtGeom::Translate</i> function.
|
||||
|
||||
~~~~
|
||||
//Create a coordinate system
|
||||
Handle(Geom_Axis2Placement) aSys;
|
||||
|
||||
|
||||
//Create a persistent coordinate PTopoDS_HShape.cdlsystem
|
||||
Handle(PGeom_Axis2placement)
|
||||
aPSys = MgtGeom::Translate(aSys);
|
||||
|
||||
//Restore a transient coordinate system
|
||||
Handle(PGeom_Axis2Placement) aPSys;
|
||||
|
||||
Handle(Geom_Axis2Placement)
|
||||
aSys = MgtGeom::Translate(aPSys);
|
||||
~~~~
|
||||
|
||||
|
||||
@subsubsection ocaf_wp_2_3_6 Persistent Topology
|
||||
|
||||
The Persistent Topology component describes topological data structures which can be stored in the database. These packages provide a way to convert data from the transient "world" to the persistent "world".
|
||||
|
||||
Persistent Topology is based on the BRep concrete data model provided by the topology packages. Unlike the components of the Persistent Geometry package, topological components can be fully shared within a single model, as well as between several models.
|
||||
|
||||
Each topological component is considered to be a shape: a <i> TopoDS_Shape</i> object. The system's capacity to convert a transient shape into a persistent shape and vice-versa applies to all objects, irrespective of their complexity: vertex, edge, wire, face, shell, solid, and so on.
|
||||
|
||||
When a user creates a data model using BRep shapes, he uses the conversion functions that the system provides to store the data in, and retrieve it from the database. The data can also be shared.
|
||||
|
||||
Persistent Topology is provided by several packages.
|
||||
|
||||
The <i> PTopoDS</i> package describes the persistent data model associated with any BRep shape; it is the persistent version of any shape of type <i> TopoDS_Shape</i>. As is the case for persistent geometric models, this data structure is never edited or queried, it is simply stored in or retrieved from the database. It is created or converted by the <i>MgtBRep::Translate</i> function.
|
||||
|
||||
The <i> MgtBRepAbs</i> and <i> PTColStd </i> packages provide tools used by the conversion functions of topological objects.
|
||||
|
||||
~~~~
|
||||
//Create a shape
|
||||
TopoDS_Shape aShape;
|
||||
|
||||
//Create a persistent shape
|
||||
PtColStd_DoubleTransientPersistentMap aMap;
|
||||
|
||||
Handle(PTopoDS_HShape) aPShape =
|
||||
aMap.Bind2(MgtBRep::Translate
|
||||
aShape,aMap,MgtBRepAbs_WithTriangle));
|
||||
|
||||
aPShape.Nullify();
|
||||
|
||||
//Restore a transient shape
|
||||
Handle(PTopoDS_HShape) aPShape;
|
||||
|
||||
Handle(TopoDS_HShape) aShape =
|
||||
aMap.Bind1(MgtBRep::Translate
|
||||
(aPShape,aMap,MgtBRepAbs_WithTriangle));
|
||||
|
||||
aShape.Nullify();
|
||||
~~~~
|
||||
|
||||
@subsubsection ocaf_wp_2_3_7 Standard Documents
|
||||
|
||||
Standard documents offer you a ready-to-use document containing a TDF-based data
|
||||
structure. The documents themselves are contained in a class inheriting from <i> TDocStd_Application</i>
|
||||
which manages creation, storage and retrieval of documents.
|
||||
|
||||
You can implement undo and redo in your document, and refer from the data framework
|
||||
of one document to that of another one. This is done by means of external link attributes,
|
||||
which store the path and the entry of external links. To sum up, standard documents
|
||||
alone provide access to the data framework. They also allow you to:
|
||||
* Update external links;
|
||||
* Manage the saving and opening of data;
|
||||
* Manage undo/redo functionality.
|
||||
|
@ -16,8 +16,5 @@ OCCT User Guides are organized by OCCT modules:
|
||||
* @subpage occt_user_guides__step "STEP translator"
|
||||
* @subpage occt_user_guides__xde "Extended Data Exchange (XDE)"
|
||||
* @subpage occt_user_guides__ocaf "Open CASCADE Application Framework (OCAF)"
|
||||
* @subpage occt_user_guides__ocaf_wp "Application Framework White Paper"
|
||||
* @subpage occt_user_guides__ocaf_functionmechanism_wp "OCAF Function Mechanism"
|
||||
* @subpage occt_user_guides__ocaf_tree_wp "Distribution of Data through OCAF Tree"
|
||||
* @subpage occt_user_guides__tobj "TObj package"
|
||||
* @subpage occt_user_guides__test_harness "DRAW Test Harness"
|