Salome HOME
[EDF27816] : Fix bug presence of proxy into a list
[modules/yacs.git] / doc / principes.rst
1
2 :tocdepth: 3
3
4 .. _principes:
5
6 YACS general principles
7 ===============================
8 A calculation scheme is constructed based on the calculation node concept.  
9 A calculation node represents an elementary calculation that can be the local execution of a Python 
10 script or the remote execution of a SALOME component service.
11
12 The calculation scheme is a more or less complex assembly of calculation nodes.
13
14 This assembly is made by connecting input and output ports of these calculation nodes.
15
16 Data are exchanged between nodes through ports.  They are typed.
17
18 Composite nodes:  Block, Loop, Switch are used to modularise a calculation scheme and define 
19 iterative processes, parametric calculations or branches.
20
21 Finally, containers can be used to define where SALOME components will be executed (on a network or in a cluster).
22
23 .. _datatypes:
24
25 Data types
26 ----------------------
27 Data exchanged between calculation nodes through ports are typed.  
28 There are four categories of types:  basic types, object references, sequences and structures.  
29 User types can be defined by combining these basic elements.  
30 Many types are predefined either by YACS or by the components used such as GEOM or SMESH.
31
32 Basic types
33 '''''''''''''''''''''
34 There are 5 basic types: int, double, bool, string and file. They are predefined by YACS.
35
36 ================= =====================================
37 YACS type           Comment
38 ================= =====================================
39 int                   for integers
40 double                for double reals
41 bool                  for booleans
42 string                for character strings
43 file                  for files
44 ================= =====================================
45
46 Python generic type
47 ...................
48
49 YACS adds a special type for exchanging generic Python objects between Python inline nodes (See :ref:`scriptnode` 
50 and :ref:`functionnode`). The type is named **pyobj** and uses the pickle module to exchange Python objects.
51 Consequently only Python objects that are pickable could be used for YACS **pyobj** ports.
52
53 It's forbidden to define the object's type into the node, it should be defined in an external Python module. To avoid
54 problems with YACS, you should add the module into your **PYTHONPATH** before launching SALOME.
55
56 Object references
57 ''''''''''''''''''''''''''
58 Object references are used to type CORBA objects managed by SALOME components. In general, these types 
59 are defined by the components that use them. All that is necessary to define a YACS object reference type, is to 
60 give it a name and associate it with the CORBA Repository ID.  
61 Some examples of pre-defined types are given below.
62
63 ================= ==============================
64 YACS type          CORBA Repository ID 
65 ================= ==============================
66 Study               IDL:SALOMEDS/Study:1.0
67 SObject             IDL:SALOMEDS/SObject:1.0
68 GEOM_Shape          IDL:GEOM/GEOM_Object:1.0
69 MESH                IDL:SALOME_MED/MESH:1.0
70 FIELD               IDL:SALOME_MED/FIELD:1.0
71 ================= ==============================
72
73 Simple or multiple inheritance relations can be defined between these types.  
74 The following gives an example of the MED component.
75
76 ================= ============================== =====================================
77 YACS type          Base type                          CORBA Repository ID
78 ================= ============================== =====================================
79 FIELDDOUBLE         FIELD                           IDL:SALOME_MED/FIELDDOUBLE:1.0
80 ================= ============================== =====================================
81
82 .. _calciumtypes:
83
84 YACS also defines types for datastream ports:
85
86 ================= =======================================================
87 YACS type               CORBA Repository ID
88 ================= =======================================================
89 CALCIUM_integer    IDL:Ports/Calcium_Ports/Calcium_Integer_Port:1.0
90 CALCIUM_real       IDL:Ports/Calcium_Ports/Calcium_Real_Port:1.0
91 CALCIUM_double     IDL:Ports/Calcium_Ports/Calcium_Double_Port:1.0
92 CALCIUM_string     IDL:Ports/Calcium_Ports/Calcium_String_Port:1.0
93 CALCIUM_logical    IDL:Ports/Calcium_Ports/Calcium_Logical_Port:1.0
94 CALCIUM_boolean    IDL:Ports/Calcium_Ports/Calcium_Logical_Port:1.0
95 CALCIUM_complex    IDL:Ports/Calcium_Ports/Calcium_Complex_Port:1.0
96 ================= =======================================================
97
98 A list of available types can be obtained by consulting catalogs of SALOME components:  GEOMCatalog.xml, 
99 SMESHCatalog.xml, MEDCalatog.xml, etc. These catalogs are in the XML format that is described in :ref:`schemaxml`.  
100 A view is also possible in the graphic user interface by viewing the components catalog.
101
102 Sequences
103 '''''''''''''''
104 A sequence type is used to type a list of homogenous elements.  The type contained in the list is the same for 
105 all elements.  A sequence type is defined by giving it a name and specifying the type of elements in the sequence.
106
107 The SALOME KERNEL defines sequence types for basic types.
108
109 ================= ==============================
110 YACS type          Type of elements 
111 ================= ==============================
112 dblevec               double
113 intvec                int
114 stringvec             string
115 boolvec               bool
116 ================= ==============================
117
118 A sequence type can be defined for a sequence.  In this case, the element type is a sequence type.
119
120 Structures
121 ''''''''''''''''
122 The structure type is used to type a data structured as a C structure.  This data contains named and typed members.  
123 A structure type is defined by giving it a name and specifying the list of members (name, type).
124
125 For example, the GEOM component defines a structure type with name “BCError” comprising a single member with name “incriminated” 
126 and type “ListOfLong”.  “ListOfLong” itself is a sequence of “int”.
127
128 Ports
129 -------------
130 A port can be considered as an interface of a node with the exterior.  There are three types of port:  control ports, 
131 data ports and datastream ports.  Each has different semantics.
132  
133 Control ports
134 ''''''''''''''''''''''''
135 This type of port is used to apply constraints on node execution chains.  An elementary or composite node 
136 usually has an input control port and an output control port.  A node for which the input control port is connected 
137 to the output control port of another node will not be executed until the second node is terminated.
138
139 Data ports
140 ''''''''''''''''''''''''
141 This type of port is used to define data that will be used by a node when it is executed, and the data that will be produced 
142 by the node at the end of its execution.  A data port has a name, a direction (input, output) and the data contained in it 
143 have a type.  The order in which ports are defined is important because this order is used as the order of the arguments 
144 during the call for SALOME component services.
145
146 In general, an elementary calculation node is executed as follows:
147  - control is given to the node through the input control port
148  - input data are acquired by the node through the input data ports
149  - the node is executed
150  - output data are provided to output ports
151  - control is returned by the node through the output control port.
152
153 An input data port can be initialized or connected to an output data port.
154
155 .. _datastreamports:
156
157 Datastream ports
158 ''''''''''''''''''''''''
159 This type of port is used to exchange data during execution. Not all elementary nodes support this type of port.  
160 For the moment, this type of port is only supported by nodes related to SALOME components.  A datastream port has a name, 
161 a direction (input, output) and a type.  This type is not a data type directly but is rather the type of a CORBA object 
162 that manages the data exchange (see :ref:`progDSC` for further information on how to implement a datastream port).
163
164 It is not a simple task to implement a datastream port so SALOME provides a ready made port called CALCIUM datastream
165 port. It has been designed to ease scientific code coupling. You can see more about these ports in :ref:`calcium`.
166 Only a limited set of data types can be used to define these ports (see :ref:`CALCIUM types<calciumtypes>`).
167
168 A CALCIUM port can be configured by way of properties. A property is a pair (name, value), where name is the name of the property and value
169 is a character string that gives its value. Following is the list of properties supported by CALCIUM ports :
170
171 .. tabularcolumns:: |p{2.5cm}|p{3.5cm}|L|
172
173 ================= ============================== =====================================
174 Property name      Default value                  Description
175 ================= ============================== =====================================
176 DependencyType     TIME_DEPENDENCY                specify if data exchanged depend on time (TIME_DEPENDENCY) or on iteration (ITERATION_DEPENDENCY)
177 ================= ============================== =====================================
178
179
180 Elementary calculation nodes
181 -------------------------------------
182 An elementary calculation node represents a particular calculation function (for example multiplication of 2 matrices).  
183 Every calculation node has a type. There can be one node type that executes a service of a SALOME component and another 
184 node type that executes a piece of Python script.  
185 Elementary calculation nodes are distributed into two categories: inline nodes that are executed mainly in the YACS coupler, 
186 and service nodes that are executed remotely and correspond to the use of SALOME components.
187
188 Every calculation node has a name used as an identifier. This identifier must be unique in its definition context. A context is 
189 defined by a calculation scheme or a composite node.
190
191 A calculation node has an input control port and an output control port. These control ports are connected through the control flow.
192
193 A calculation node usually has input and output data ports. The number and type of data ports is determined by the type of 
194 calculation node. These data ports are connected through the data flow.
195
196 A calculation node may have properties. A property is a pair (name, value), where name is the name of the property and value 
197 is a character string that gives its value.
198
199 .. _scriptnode:
200
201 Python script inline node
202 ''''''''''''''''''''''''''''''
203 A Python script node executes the Python code in a context in which variables are present with a value equal to the content 
204 of input data ports when this execution is started. For example, if the node has an input data port named “matrix”, the 
205 variable “matrix” will be present in the execution context of the script and its value will be the content of the port with the 
206 same name. At the end of execution of the script, the output data ports will contain the values of variables with the same 
207 name present in the execution context. These variables must necessarily be present.
208
209 When this type of node is an internal node in a loop, the execution context is reinitialised for each iteration of the loop.
210
211 This type of node is executed mainly in the YACS process but it can be executed in remote 
212 processes (but only in YACS containers :ref:`containers`).
213
214 To create this type of node:
215
216 - from the GUI, see :ref:`inline_script`
217 - in a XML file, see :ref:`xml_script_node`
218 - from python interface, see :ref:`pyscript`
219
220 .. _functionnode:
221
222 Python function inline node
223 ''''''''''''''''''''''''''''''
224 A Python function node executes a Python function, for which the arguments correspond to the node input data ports.  
225 The name of the function to be executed is given by a parameter of the node.  If such a node has 3 input data ports 
226 named 'a', 'b', 'c' and the name of the function is 'f', execution of the node will correspond to calling f(a,b,c) where a, b and c 
227 are the values of data ports with the same name.
228
229 Node output data are expected in return from the function in the form of a Python tuple. For example, if there are three 
230 output data ports named 'x', 'y', 'z', the function should terminate by "return x,y,z" where x, y and z are values 
231 for the output ports of the same name.
232
233 When this type of node is an internal node in a loop, the execution context is kept for every iteration of the loop, so 
234 that variables can be reused during iterations.
235
236 This type of node is executed mainly in the YACS process but it can be executed in remote 
237 processes (but only in YACS containers :ref:`containers`).
238
239 To create this type of node:
240
241 - from the GUI, see :ref:`inline_function`
242 - in a XML file, see :ref:`xml_function_node`
243 - from python interface, see :ref:`pyfunc`
244
245 .. _servicenode:
246
247 SALOME service node
248 ''''''''''''''''''''''''''''''
249 A SALOME service node executes a service of a SALOME component. 
250 A service node can be defined in two ways:
251
252  1. by indicating the component type (GEOM, SMESH, etc.) and the service to be executed
253  2. by indicating an existing service node and the service to be executed
254
255 The second form exists because in some cases, it is required to use the state of the component at the end of execution of the 
256 first service to execute the second service. The state of the component is kept in a component instance that is created 
257 every time that the first form is used. If the second form is used, the existing instance is reused and a new component 
258 instance will not be created.
259
260 A service node has input and output data ports and it may also have input and output datastream ports.
261
262 A service node is loaded and executed on a SALOME container. This placement is managed using the YACS container concept 
263 (see :ref:`containers`) that is a slight abstraction of the SALOME container. 
264 Placement of the SALOME service can be managed by the same name to denote the YACS container on which it is to be placed. 
265 This is only possible with the first node definition form. If no placement information is given, the service will be placed 
266 on the default container of the SALOME platform:  FactoryServer container on the local machine.
267
268 The properties of a SALOME service node are converted into environment variables when the service is executed and can be retrieved
269 in the component with the method getProperties that returns an Engines::FieldsDict struct. The retrieved properties are the
270 properties of the node completed by the properties of the including Blocs.
271
272 To create this type of node:
273
274 - from the GUI, see :ref:`salome_service`
275 - in a XML file, see :ref:`xml_service_node`
276 - from python interface, see :ref:`pyservice`
277
278 SalomePython node
279 ''''''''''''''''''''''''''''''
280 A SalomePython node is a Python function node to which YACS provides the information necessary to run SALOME 
281 components and execute their services (in the Python execution context).  It is the address of the container into 
282 which the component is to be loaded and executed.  This address is given in the "_container_from_YACS_" variable 
283 in the form <machine name>/<container name>. Therefore, parameters can be set for this node using container placement 
284 information like a SALOME service node.
285
286 Restriction:  this type of node cannot execute a SALOME service with datastream ports.  The node is seen by YACS 
287 as being a Python node.  Datastream ports are not managed.
288
289 Data nodes
290 ''''''''''''''''''''''''''''''
291 A Data node is used to define data (DataIn node) or to collect results (DataOut node) of a calculation scheme.
292
293 DataIn node
294 ...................
295 A DataIn node has output data ports only that are used to define input data for the calculation scheme. These data have a name (the port name), a type (the port type) and an initial value.
296
297 To create this type of node:
298
299 - from the GUI, see :ref:`datain_node`
300 - in a XML file, see :ref:`xml_datain`
301 - from python interface, see :ref:`py_datain`
302
303 DataOut node
304 ...................
305 A DataOut node only has input data ports that are used to store output results from the calculation scheme.  These results have a name (the port name) and a type (the port type).  If the result is a file, a name can be given to the file into which the result file will be copied.
306
307 All values of node results can be saved in a file at the end of the calculation.
308
309 To create this type of node:
310
311 - from the GUI, see :ref:`dataout_node`
312 - in a XML file, see :ref:`xml_dataout`
313 - from python interface, see :ref:`py_dataout`
314
315 Study nodes
316 ''''''''''''''''''''''''''''''
317 A Study node is used to relate the elements of a SALOME study to the data and results of a calculation scheme.
318
319 StudyIn node
320 ...................
321 A StudyIn node has output data ports only. It is used to define data in the calculation scheme originating from a SALOME study.
322
323 A port corresponds to data stored in the associated study.  The data has a name (the port name), a type (the port type), and a reference that gives the entry into the study.  This reference is either a SALOME Entry (for example 0:1:1:2) or a path in the SALOME study tree (for example, /Geometry/box_1).
324
325 To create this type of node:
326
327 - from the GUI, see :ref:`studyin_node`
328 - in a XML file, see :ref:`xml_studyin`
329 - from python interface, see :ref:`py_studyin`
330
331 StudyOut node
332 ...................
333 A StudyOut node only has input data ports.  It is used to store results in a SALOME study.
334
335 A port corresponds to a result to be stored in an associated study.  The result has a name (the port name), a type (the port type), and a reference that gives the entry into the study.  This reference is either a SALOME Entry (for example 0:1:1:2) or a path in the SALOME study tree (for example, /Geometry/box_1).
336
337 The associated study may be saved in a file at the end of the calculation.
338
339 To create this type of node:
340
341 - from the GUI, see :ref:`studyout_node`
342 - in a XML file, see :ref:`xml_studyout`
343 - from python interface, see :ref:`py_studyout`
344
345 Connections
346 -----------------
347 Connections between input and output ports of elementary or composite nodes are made by creating links between these ports.
348
349 Control links
350 ''''''''''''''''''''''''''''''
351 Control links are used to define an order in which nodes will be executed.  They relate an output port of one node to an input port of another node.  These two nodes must be defined in the same context.  The definition of the link consists simply of giving the name of the input side node and the name of the output side node.
352
353 Dataflow links
354 ''''''''''''''''''''''''''''''
355 Dataflow links are used to define a dataflow between an output data port for one node and an input data 
356 port for another node.  There is no need for these nodes to be defined in the same context.  A dataflow link adds a control 
357 link between the two nodes concerned or between the appropriate parent nodes to respect the rule for definition of the 
358 control links.  The dataflow link guarantees consistency between the dataflow and the execution order.   
359 All that is necessary to define the link is to give the names of the input side node and port and the names of the output 
360 side node and port.  
361 The port types must be compatible (see :ref:`compatibility`).
362
363 Data links
364 ''''''''''''''''''''''''''''''
365 In some cases (mainly loops), it is useful to be able to define dataflows without defining the associated control link 
366 as in the dataflow link.  The datalink is then used.  The definition is exactly the same as for the dataflow link.  
367 The port types must be compatible (see :ref:`compatibility`).
368
369 .. _datastreamlinks:
370
371 Datastream links
372 ''''''''''''''''''''''''''''''
373 Datastream links are used to define a data stream between an output datastream port for one node and an input datastream port 
374 for another node.  These two nodes must be defined in the same context and it must be possible to execute them in parallel.  
375 Therefore, there must not be direct or indirect control link between them.  The link is defined by giving output node and port 
376 names and input node and port names.  The definition of the datastream links may be complemented by properties that 
377 define parameters of the behaviour of the DSC port that makes the data exchange (see :ref:`progDSC`).  
378 The port types must be compatible (see :ref:`compatibility`).
379
380 For CALCIUM datastream ports, links can be configured by way of properties that are listed here (more information about them
381 can be found in :ref:`calcium`):
382
383 .. tabularcolumns:: |p{3cm}|p{3cm}|L|
384
385 ==================== ============================== =====================================
386 Property name          Default value                  Description
387 ==================== ============================== =====================================
388 DateCalSchem           TI_SCHEM                       specify the temporal scheme (TI_SCHEM, TF_SCHEM, ALPHA_SCHEM) for ports with time dependency
389 StorageLevel           infinite                       specify the maximum number of data kept in the destination port
390 Alpha                  0.0                            specify the coefficient of the ALPHA_SCHEM
391 DeltaT                 1.e-6                          tolerance to check if two dates are identical
392 InterpolationSchem     L1_SCHEM                       specify the interpolation function (linear:L1_SCHEM or step:L0_SCHEM)
393 ExtrapolationSchem     not defined                    specify the extrapolation function (E0_SCHEM or E1_SCHEM) in case of timeout (not implemented)
394 ==================== ============================== =====================================
395
396 As for other ports, CALCIUM port types must be compatible to be connected. But they must also have the same DependencyType 
397 property (see :ref:`datastreamports`).
398
399 .. _compatibility:
400
401 Compatibility of data types
402 '''''''''''''''''''''''''''''''''''''''''
403 A data, dataflow or datastream link may only be created if the data type of the output port is compatible with the data type 
404 of the input port.  There are three forms of compatibility:
405
406  - identity of types (for example double -> double)
407  - specialization of types (for example FIELDDOUBLE -> FIELD)
408  - type conversion (for example int -> double)
409
410 Compatibility by conversion
411 ......................................
412 Compatibility by conversion is applicable to basic types and to their derivatives (sequence, structure).  
413 The following conversions are accepted:
414
415 ================= ============================== ====================================
416 YACS type          Conversion possible into              Comment
417 ================= ============================== ====================================
418 int                 double
419 int                 bool                           true if int != 0 else false
420 ================= ============================== ====================================
421
422 The conversion is also applicable to types constructed as a sequence of ints that may be converted into a 
423 sequence of doubles.  YACS controls the conversion.  This is also applicable to nested sequence of sequence, structure 
424 of structure, sequence of structure structures and types, etc.
425
426 Compatibility by specialization
427 ......................................
428 The compatibility rule is expressed differently for data (or dataflow) links and datastream links.
429
430 For data (or dataflow) links, the type of output data port must be derived from (or identical to) the type of input 
431 data port.  For example, an output data port with a FIELDDOUBLE type may be connected to an input data port with 
432 the FIELD type because the FIELDDOUBLE type is derived from the FIELD type (where FIELD is the basic type of FIELDDOUBLE).
433
434 The rule for datastream links is exactly the opposite of the rule for data links:  the type of the input datastream port 
435 must be derived from the type of the output port.  
436 At the moment there is no derived datastream type.  Therefore the only applicable rule is identity of types.
437
438 Multiple links
439 '''''''''''''''''''
440 Control ports support 1 to N and N to 1 multiple links.
441
442 Data ports support 1 to N and N to 1 multiple links.  1 to N links do not create any problem.  N to 1 links should be used with 
443 caution, because the final result depends on the order in which the exchanges are made.  This type of link will be reserved 
444 for looping back in iterative loops.  In this case, the order in which exchanges are made is perfectly reproducible. 
445
446 Datastream ports also support 1 to N and N to 1 multiple links.  1 to N datastream links do not create any particular problems:  data 
447 exchanges are simply duplicated for all connected input ports.  However, data exchanges for N to 1 datastream links will be 
448 overlapped in the single input port.  The final result may depend on the order in which exchanges are made.
449
450 Composite nodes
451 --------------------------------
452 There are several types of composite nodes, namely block, loop and switch nodes.  
453 A composite node may contain one or several nodes of an arbitrary type (elementary or composite).  
454 By default, the set of node inputs and outputs making up the composite node are accessible from the outside.  
455 It can be said that composite node inputs are composed of the set of internal node inputs.  The same is applicable for outputs.  
456 This is the white box concept.
457
458 The Bloc node
459 ''''''''''''''
460 This is a group of nodes with dependency links between internal nodes.  
461 The Bloc is a white box (internal nodes are visible).  
462 A calculation scheme is a Bloc.  The Bloc is manipulated in a manner similar to an elementary node.  
463 It is provided with a single input control port and a single output control port.  
464 Consequently, two blocks connected through a dataflow data link will be executed in sequence, all nodes in the 
465 first block will be executed before starting the second block.
466
467 A Bloc node may have properties. A property is a pair (name, value), where name is the name of the property and value 
468 is a character string that gives its value. The properties of a Bloc are inherited by the nodes in the Bloc.
469
470 To create this type of node:
471
472 - from the GUI, see :ref:`block_node`
473 - in a XML file, see :ref:`xml_block`
474 - from python interface, see :ref:`py_block`
475
476 The ForLoop node
477 '''''''''''''''''''''
478 A loop is used to make iterations on an internal node.  
479 This internal node may be a composite node or an elementary node.  
480 Some internal node outputs may be explicitly looped back onto inputs of this internal node.  
481 A ForLoop loop executes the internal node a fixed number of times.  This number is given by a data port in the loop 
482 named “nsteps” or by a parameter of the loop of the same name. The current step number is accessible through
483 an output port of the loop named "index".
484
485 To create this type of node:
486
487 - from the GUI, see :ref:`forloop_node`
488 - in a XML file, see :ref:`xml_forloop`
489 - from python interface, see :ref:`py_forloop`
490
491 The While node
492 ''''''''''''''''''''
493 A While loop executes the internal node as long as a condition is true.  
494 The value of the condition is given by a data port of the loop named “condition”.
495
496 To create this type of node:
497
498 - from the GUI, see :ref:`whileloop_node`
499 - in a XML file, see :ref:`xml_whileloop`
500 - from python interface, see :ref:`py_whileloop`
501
502 The ForEach node
503 ''''''''''''''''''''''
504 The ForEach node is also a loop, but it executes a loop body in parallel by iterating on one and only one data collection.  
505 A data collection is of the sequence type.  
506 An input data port of the ForEach node named “SmplsCollection” receives the data collection on which the loop iterates.
507 This data collection is typed.  The data type on which the loop iterates is unique.  The number of parallel branches managed 
508 by the loop is fixed by a parameter of the loop (input port named "nbBranches").  
509 If the collection size is 100 and this parameter is fixed at 25, the loop will execute 4 packets of 25 calculations in parallel.  
510 The internal node can access the current iteration of the data collection through the output data port from the loop named “evalSamples”.
511
512 Typed data collections can be constructed at the output from the loop.  All that is necessary is to connect an output data 
513 port of the internal node to an input data port of a node outside the loop. The loop automatically constructs the data collection.
514
515 To create this type of node:
516
517 - from the GUI, see :ref:`foreachloop_node`
518 - in a XML file, see :ref:`xml_foreachloop`
519 - from python interface, see :ref:`py_foreachloop`
520
521 The Switch node
522 ''''''''''''''''''''''
523 The Switch node performs the conditional execution (among N) of a node (composite, elementary).  
524 These nodes must have a minimum number of compatible inputs and outputs.  
525 The switch condition (integer, real) is used to switch execution of one node among N.  
526 The switch condition is given by an input data port of the Switch node named “select” or by a parameter of this node with the same name.
527
528 If the nodes are terminal (nothing is executed from their outputs), they do not need to have compatible outputs.  
529 Output ports used at the node output must be compatible with each other (i.e. they must be derived from a common generic 
530 type that can be used by another input node).
531
532 To create this type of node:
533
534 - from the GUI, see :ref:`switch_node`
535 - in a XML file, see :ref:`xml_switch`
536 - from python interface, see :ref:`py_switch`
537
538 The OptimizerLoop node
539 '''''''''''''''''''''''''
540 This node can be used to build an optimization process.
541 It has one and only one internal node as all the loop nodes. It is the internal node that is "optimized".
542 The optimization algorithm must be defined by the user. The main idea behind is : the OptimizerLoop iterates until
543 the user optimization algorithm says the process is ended (convergence or error). At each iteration, the 
544 OptimizerLoop gives the data provided by the internal node to the algorithm. The algorithm returns a new sample
545 that is given by the OptimizerLoop to the internal node and so on until the end. In most optimization processes, the sample
546 is the variable (x) and the data that is returned by the internal node is the function to optimize (f(x)). Sometimes, the
547 gradient is also returned.
548
549 The definition of the optimization algorithm is done by way of plugin.
550 The plugin can be a C++ plugin implemented in a dynamic library (.so file) or a Python plugin implemented in a Python module (.py).
551 It is possible to implement two kinds of algorithm : synchronous or asynchronous.
552 The implementation of an optimization algorithm as a plugin is described in :ref:`optimizationplugin`.
553
554 The plugin is defined by 2 parameters :
555
556 - **lib** the file name of the dynamic library or of the Python module. The name of the dynamic library must be given without
557   extension (.so) but the name of the Python must be given with extension (.py).
558 - **entry**, the name of an entry point in the dynamic library or in the Python module that will return the algorithm plugin
559   factory (see :ref:`optimizationplugin` for more informations)
560
561 The node has five ports:
562
563 - **algoInit**, an input port that takes an object used for the initialization of the algorithm
564 - **evalSamples**, an output port that gives the samples in the optimization process
565 - **evalResults**, an input port that collects the results given by the internal node
566 - **nbBranches**, an input port that can be used to parallelize the optimization process as in the ForEach node (number of
567   branches). Most of a time, the optimization process is sequential so the number of branches will be 1, but in some cases 
568   it is possible to parallelize the process so the number  of branches will be greater than 1.
569 - **algoResults**, an output port that gives the results of the optimization algorithm
570
571 To create this type of node:
572
573 - from the GUI, see :ref:`optimizerloop_node`
574 - in a XML file, see :ref:`xml_optimizerloop`
575 - from python interface, see :ref:`py_optimizerloop`
576
577
578
579 .. _containers:
580
581 Containers
582 ---------------------
583 The SALOME platform executes its components after loading them in containers.
584 A SALOME container is a process managed by the platform that may be executed
585 on any known resource.
586
587 **WARNING !** There are two types of containers in the Salome world that must
588 be clearly distinguished:
589
590 - YACS container, that will be explained extensively here.
591 - SALOME container which is a single process managed by the plateform that may
592   be executed on any resource in the resource catalog of the current SALOME
593   application. This single process can perform a set of jobs.
594
595 To avoid misleading, in this chapter, container word will be systematically explicited.
596
597 YACS containers are used in the definition of a scheme to define constraints
598 on the execution of the nodes of a YACS scheme. They are part of the scheme
599 as well as the nodes are.
600 Exactly one YACS container is attached to an elementary node.
601
602 The tasks (elementary nodes) that can be run remotely are ( or the tasks that
603 are attached to a YACS container are ) :
604
605 - Python script node.
606 - Python function node.
607 - Salome node.
608
609 So all elementary nodes of a scheme (whatever their types in the list above)
610 that can be executed remotely should be attached to a set of YACS container objects.
611
612 YACS containers can be seen as a placement request at edition time of a scheme.
613 **During the execution of a scheme, a YACS container is incarnated into one or
614 several SALOME containers** depending on the type of the YACS container.
615
616 Presently, there are 3 types of containers that incarnates the 3 different
617 mapping strategies between YACS containers and SALOME containers :
618
619 - *Mono YACS container* : The most simple. There is exactly one KERNEL container
620   attached on one mono YACS container. **WARNING**, this type of YACS container
621   can be dangerous into the context of foreach because several tasks can be
622   invoked in parallel inside of a same process that can lead to problems if the
623   service owning this YACS container is not thread safe. This type of YACS
624   container leads to no special treatment from Executor point of view.
625 - *Multi YACS container* : There are as many SALOME containers as YACS component
626   instances attached to it in the scheme.
627   In the context of a foreach loop, it can lead to a pool of SALOME containers
628   attached to a YACS container. This type of YACS container leads to no special
629   treatment from Executor point of view.
630 - *HP YACS container* : HP stands for Homogeneous Pool of SALOME containers. A HP
631   YACS container is mapped to a fixed size set of SALOME containers. This pool is
632   homogeneous which means that each of the SALOME containers inside of the pool
633   can be used indifferentely by the nodes attached to a same HP YACS container.
634   Contrary to the 2 YACS container types above, the Executor is active with
635   that type of YACS container by performing, if needed, a cutoff towards executed
636   tasks list in READY state regarding the availability of different YACS
637   HP containers.
638
639 To create containers from TUI, see :ref:`py_container_creation`.
640
641 All of these 3 types of YACS containers are sharing a common important features : set of properties.
642
643 Properties are a set of (key,value) pairs which are designed to be forwarded
644 directly to the KERNEL (expected "name" property and "attached_on_cloning"
645 property, see :ref:`containers_aoc_property`) when a task attached to the YACS
646 container has LOAD status during the execution of a scheme.
647
648 The array below presents extensively the list of available keys and
649 corresponding values expected that are common to 3 types of YACS container.
650 Those properties (excepted "name" and "attached_on_cloning" property) are the
651 way to specify the request to the KERNEL when the mapping will be requested by
652 the Executor of YACS.
653 For your information the dump in XML file of each YACS container object
654 contains exclusively those (key,value) pairs.
655
656 - To set properties from GUI to a YACS container, see :ref:`pp_for_container`.
657 - To set properties from python interface, see :ref:`py_container`.
658
659 .. note:: One important property is the "container_name" that must not be
660           confused with the property "name".
661
662           - "name" is relative to YACS container only (that will appear in the
663             XML file)
664
665           - "container_name" is a part of the request at run time when attaching
666             SALOME container with YACS container. Warning, the behaviour of
667             mapping is sensitive to the fact that "container_name" property is
668             empty or not.
669
670 .. note:: HP YACS containers have 2 additionnal properties compared to Mono
671           and Multi YACS Containers. The first one is the "SizeOfPool" that defines the
672           size of the set of SALOME containers. The second one is "InitializeScriptKey"
673           which contains the string of a python code that will be passed to each of the
674           SALOME containers of the pool to initialize it (if necessary).
675
676 .. tabularcolumns:: |p{3cm}|p{3cm}|p{10cm}|
677
678 =================== ============= =============================================
679 Name                  Type            Type of constraint
680 =================== ============= =============================================
681 name                  string       if given imposes the resource to use. If not given, the resource manager will try
682                                    to find the best resource according to the constraints given by the other attributes.
683 attached_on_cloning   bool         By default false for Multi and Mono YACS containers. Always true and not settable for HP containers. See :ref:`containers_aoc_property`
684 container_name        string       if given imposes the SALOME container name
685 hostname              string       if given imposes the machine (constraint used if name is not given)
686 policy               "best",       Choose the best or the first or the next in 
687                      "first" or    the list of resources, once other criteria  
688                      "cycl"        have been applied. By default, YACS uses the “altcycl” policy
689                      "altcycl"     that selects the next resource in the list of known resources (constraint used if name is not given)
690 OS                    string       if given restricts the choice of the OS (constraint used if name is not given)
691 workingdir            string       if given specifies the execution directory.  
692                                    By default, the YACS run directory will be used 
693                                    on the local machine and the $HOME directory will be used on remote machines.
694 isMPI                 bool         indicates if the container has to support MPI
695 mem_mb                int          minimum requested memory size (constraint used if name is not given)
696 cpu_clock             int          minimum requested CPU speed (constraint used if name is not given)
697 nb_proc_per_node      int          number of processors by node (constraint used if name is not given)
698 nb_node               int          number of nodes (constraint used if name is not given)
699 nb_component_nodes    int          ??
700 parallelLib           string       ??
701 =================== ============= =============================================
702
703 When using the "best" policy, a price is computed for each resource based on some criteria and the resource with the best price is chosen.
704 The list of these criteria, from the most important to the least important, is:
705  1. Number of processors (nb procs). For a resource, it is given by "nb_node" * "nb_proc_per_node".
706  2. Number of nodes (nb nodes)
707  3. Number of processors by node (nb proc/node)
708  4. CPU frequency (cpu clock)
709  5. Memory (mem mb)
710 Undefined criteria are ignored. The price of each criterion is:
711  - the highest (3) if the expected value of the criterion is equal to the value of the criterion in the resource
712  - medium (2) if the expected value of the criterion is less than the value of the criterion in the resource
713  - the lowest (1) if the expected value of the criterion is higher than the value of the criterion in the resource
714
715 .. _containers_aoc_property:
716
717 Attached On cloning property
718 ''''''''''''''''''''''''''''''
719
720 A specific chapter is dedicated to that property of YACS container. This property
721 is only used by YACS and it is not forwarded to KERNEL.
722 The value of this property is either False or True.
723 The property is writable and by default set to false for mono YACS containers
724 and multi YACS containers. For HP YACS containers this property is not writable
725 and set to true.
726 It controles the behaviour of the YACS container when cloning is triggered.
727
728 A cloning is triggered during execution of a scheme for ForEachLoop and
729 OptimizerLoop nodes of the scheme.
730 In fact, when a ForEachLoop or OpmizerLoop node is executed it immediatly
731 clones nbOfBranches times the node inside it (and performs right connections
732 on these copies) using Node::clone method that recursively creates a deep copy
733 of the node.
734
735 The question is : What is done for deep copied elementary nodes executed
736 remotely ? Do the copied node and base node share the same YACS container
737 object or is the copied node lying on a deep copy of the YACS container
738 of the base node ?
739
740 The "attached_on_cloning" property of YACS container is considered here.
741
742 - If false, a deep copy of YACS container is done when cloning the remotely
743   executed node.
744 - If true, the cloned node and the node itself will share the same YACS
745   container.
746
747 So it appears natural that HP YACS containers have this property set to true
748 because it is the aim of HP YACS container to share a same pool of workers
749 accross all the nodes especially in the ForEachLoop or OptimizerLoop context.
750
751 .. _catalogResources:
752
753 The resources catalog
754 ''''''''''''''''''''''''''''''''''''''''''
755 The list of resources (machines and SALOME installations) known to SALOME is given in the resources catalog, the CatalogResources.xml file 
756 that must be located in the directory of the SALOME application used.  
757 This file is in the XML format.  Each resource is described with the **machine** tag that has several attributes that characterize it.
758
759 .. tabularcolumns:: |p{3cm}|p{3cm}|p{10cm}|
760
761 ================================== =========================== ==============================================
762 Characteristic                         XML attribute               Description
763 ================================== =========================== ==============================================
764 resource name                       name                       the resource name
765 computer name                       hostname                   the complete machine name:  this is the key that uniquely determines the machine
766                                                                (for example : "nickel.ccc.cea.fr") 
767 access protocol                     protocol                   "ssh" (default), "rsh" or "sh"
768 Type                                type                       "single_machine" (default) or "cluster"
769 user name                           userName                   user name to be used to connect to the machine 
770 operating system                    OS
771 memory size                         memInMB
772 clock frequency                     CPUFreqMHz
773 Number of nodes                     nbOfNodes
774 Number of processors per node       nbOfProcPerNode
775 SALOME application                  appliPath                  directory of the SALOME application to be used on this machine
776 mpi implementation                  mpi                        indicates which MPI implementation is used on this machine
777                                                                ("lam", "mpich1",
778                                                                "mpich2", "openmpi")
779 batch manager                       batch                      if the machine has to be used through a batch system, gives the 
780                                                                name of the batch manager
781                                                                ("pbs", "lsf", "slurm").
782                                                                No default.
783 Can Launch Batch Jobs               canLaunchBatchJobs         Indicate if the resource can be used to launch
784                                                                batch jobs, through the JOBMANAGER module for
785                                                                instance. It can be "false" (default) or
786                                                                "true".
787 Can Run Containers                  canRunContainers           Indicate if the resource can be used to run
788                                                                containers. It must be set to "true" if you
789                                                                want to use this resource with YACS. It can be
790                                                                "false" (default) or "true".
791 ================================== =========================== ==============================================
792
793 The list of SALOME modules of the resource can also be indicated.  By default, SALOME assumes that all components 
794 requested by YACS are present.
795
796 If only some components are available within a resource, the list of components must be specified.
797 This list can be specified with the sub-tag **component** that has two attributes : **name** (the name of the component)
798 and **moduleName** (the name of the module) that is optional. You can use also the sub-tag **modules** that is provided
799 for compatibility with older versions. If the **modules** sub-tag is used, a component with the same name as
800 the moduleName attribute is added to the list.
801
802 The following is an example of a resource catalog:
803
804 .. code-block:: xml
805
806   <!DOCTYPE ResourcesCatalog>
807   <resources>
808     <machine hostname="is111790" name="is111790" 
809              OS="LINUX" CPUFreqMHz="2992" memInMB="1024" 
810              protocol="rsh" type="single_machine"
811              nbOfNodes="1" nbOfProcPerNode="1"
812              canRunContainers="true">
813     </machine>
814     <machine hostname="is111915" name="is111915" 
815              OS="LINUX" CPUFreqMHz="2992" memInMB="1024" 
816              protocol="ssh" type="single_machine"
817              nbOfNodes="1" nbOfProcPerNode="1" 
818              appliPath="SALOME/Run"
819              canRunContainers="true">
820              <modules moduleName="GEOM"/>
821              <component name="SMESH"/>
822              <component name="VISU" moduleName="VISU"/>
823     </machine>
824   </resources>
825
826 .. _etats:
827
828 States of a node
829 -----------------------------
830 The possible states of a node when a calculation scheme is being edited are as follows:
831
832 =================== =============================================
833 State                 Comment
834 =================== =============================================
835 READY                The node is valid, ready to be executed   
836 INVALID              The node is invalid, the scheme cannot be executed
837 =================== =============================================
838
839 A node may be in the following states during execution of a calculation scheme:
840
841 =================== =============================================================
842 State                 Comment
843 =================== =============================================================
844 READY                the node is valid, ready to be executed
845 TOLOAD               the component associated with the node can be loaded
846 LOADED               the component associated with the node is loaded
847 TOACTIVATE           the node can be executed
848 ACTIVATED            the node is being executed
849 DONE                 execution of the node is finished with no error
850 ERROR                execution of the node is finished with error
851 FAILED               node in error because previous nodes were in error
852 DISABLED             execution of the node is disabled
853 PAUSE                execution of the node is paused
854 =================== =============================================================
855
856 .. _nommage:
857
858 Context sensitive naming of nodes
859 -------------------------------------
860 We have seen that elementary and composite nodes have a unique name in the definition context that corresponds 
861 to the parent node (calculation scheme or composite node).  Several sorts of naming are used to denote nodes in all 
862 possible situations:
863
864  - local naming:  this is the name of the node in its definition context
865  - absolute naming:  this is the name of the node seen from the highest level of the calculation scheme
866  - relative naming:  this is the name of a node seen from a parent composite node.
867
868 The general rule is that absolute and relative names are constructed by concatenating local names of the node and 
869 its parents, and separating them with dots.
870
871 Consider the example of an elementary node with name “n” defined in a block name “b”, that is itself defined in a block name “c” 
872 itself defined at the highest level of the scheme. The local name of the node is “n”.  The absolute name is “c.b.n”.  
873 The relative name in block “c” is “b.n”.  
874
875 The same rule is applied for naming ports.  If node “n” has a port name “p”, then all that is necessary to obtain the port 
876 name is to add “.p” to the node name.
877
878 There is an exception to this rule that concerns the Switch node.  In this case, it is necessary to take account of case 
879 that is not a genuine node.  If it is said that block “b” in the previous example is a switch that has a case with a 
880 value of 1 and a default case, then the absolute name of node “n” in the case 1 will be “c.b.p1_n” and the absolute name of the node in 
881 the default case will be “c.b.default_n”.
882
883 .. _errorreport:
884
885 Error report
886 -------------------
887 Every node has an associated error report if its state is INVALID, ERROR or FAILED.  This report is in the XML format.
888
889 Elementary nodes produce a simple report that contains a single (error) tag with 2 attributes:
890
891 - node:  that gives the node name
892 - state:  that indicates its state.
893
894 The tag content is the text of the error.  For a Python script node, this will usually be the traceback of the exception 
895 encountered.  For a service node, it will be either the content of a SALOME exception or the content of a CORBA exception.
896
897 Composite nodes produce a composite report contained in a tag with the same name (error) with the same two node and state 
898 attributes.  The tag contains all error reports for erroneous child  nodes.
899
900 The following shows an error report for a division by zero in a Python node contained in a loop:
901
902 .. code-block:: xml
903
904   <error node= proc state= FAILED>
905   <error node= l1 state= FAILED>
906   <error node= node2 state= ERROR>
907   Traceback (most recent call last):
908     File "<string>", line 1, in ?
909   ZeroDivisionError: integer division or modulo by zero
910   
911   </error>
912   </error>
913   </error>
914
915 Execution trace files
916 --------------------------
917 For each execution several trace files are produced:
918
919 - the ouput file of the YACS process that executes the scheme
920 - a trace file that reports all the events that have occured during the execution
921 - the output files of all launched containers
922
923 YACS process output file
924 ''''''''''''''''''''''''''''''''''''''''''
925 In this file you will find all the outputs of the inline nodes and error reports (:ref:`errorreport`).
926  
927 YACS events trace file
928 ''''''''''''''''''''''''''''''''''''''''''
929 The file name is: traceExec_<scheme name>, in which <scheme name> is the name given to the scheme.
930
931 Each line of the file represents an event related to a node.  It contains two character strings.  
932 The first is the node name.  The second describes the event.
933
934 The following shows a trace for the same example as above::
935
936   n load
937   n initService
938   n connectService
939   n launch
940   n start execution
941   n end execution OK
942   n disconnectService
943   l1.node2 load
944   l1.node2 initService
945   l1.node2 connectService
946   l1.node2 launch
947   l1.node2 start execution
948   l1.node2 end execution ABORT, Error during execution
949   l1.node2 disconnectService
950
951 Container output file
952 ''''''''''''''''''''''''''''''''''''''''''
953 In this file you will find all the outputs of the SALOME components (calculation codes).
954 Most of the time, the file name is : /tmp/<yacs pid>_<container name>_<container id>_<computer name>_<user name>.log, where:
955
956 - <yacs pid> is the id of the YACS process
957 - <container name> is the name given to the container in :ref:`containers`.
958 - <container id> is an internal id for the container
959 - <computer name> is the name of the computer on which the container runs
960 - <user name> is the login name of the user on the container computer
961
962 By default this file is put in the /tmp directory. It is possible to change that default by setting the SALOME_TMP_DIR environment
963 variable to a different location.
964
965 If the SALOME component uses CALCIUM datasream ports, this file will also contain a trace of all the calls
966 to the CALCIUM library.
967 This trace has the following form::
968
969  Elapsed time |    Request |  Container         |   Instance | Port | Error | Infos
970  34:54:23:112 |      CP_CD | clic6_23_B_0x1e080 | SOL_inst_1 |      |       |
971  34:54:23:134 |      WRITE | clic6_23_B_0x1e080 | SOL_inst_1 | temp |       | i=0
972  34:54:23:162 |      WRITE | clic6_23_B_0x1e080 | SOL_inst_1 |  tpi |       | i=0
973  34:54:23:162 | BEGIN_READ | clic6_23_B_0x1e080 | SOL_inst_1 | puis |       | i=0
974  34:54:23:174 |   END_READ | clic6_23_B_0x1e080 | SOL_inst_1 | puis |       | read i=0
975  34:54:23:174 | BEGIN_READ | clic6_23_B_0x1e080 | SOL_inst_1 |  tfi |       | i=0
976
977 - column "Elapsed time" gives the elapsed time since a reference time that is given by the computer system (January 1, 1970 on Linux).
978   The time format is: hours:minutes:seconds:milliseconds.
979 - column "Request" gives the name of the CALCIUM call.
980 - column "Container" gives the container identification (<computer name>_<yacs pid>_<container name>_<container_id>)
981 - column "Instance" gives the name of the SALOME component that has issued the call
982 - column "Port" gives the name of the port on which the request is done
983 - column "Error" gives the error description if there is one
984 - column "Infos" gives more information about the request or the error 
985
986 By default, the trace is produced in the container output file. It is possible to disable the trace by setting
987 the DSC_TRACELEVEL environment variable to 0 (export DSC_TRACELEVEL=0, for bash shell). It is also possible to redirect
988 the trace in an another file by setting the DSC_TRACE environment variable to 1 (export DSC_TRACE=1, for bash shell).
989 In this case the trace is written in a file with name : $SALOME_TMP_DIR/<container identification>.tce.
990
991
992 Schema shutdown
993 -----------------
994 When YACS executes a schema, it starts new containers or uses existing containers. When the execution is finished, YACS can shutdown (or stop)
995 containers but the user can control how these containers are shutdown.
996
997 There are several level of shutdown:
998
999 - level 0: nothing is shutdown
1000 - level 1: shutdown all new containers not named by the user
1001 - level 2: same as level 1 plus all new containers named by the user
1002 - level 3: same as level 2 plus all existing containers used by the schema
1003
1004 To shutdown a schema:
1005
1006 - from GUI, see :ref:`shutdown`
1007 - from console, see :ref:`xml_shutdown`
1008
1009 .. _archi:
1010
1011 YACS general architecture
1012 ------------------------------
1013
1014 YACS module implements API of a full SALOME module only for the schema execution.  The schema edition is done in the GUI process alone.  
1015 For execution, YACS has a CORBA servant that implements Engines::EngineComponent CORBA interface (see SALOME KERNEL IDL interfaces).  
1016 YACS GUI and YACS CORBA engine share YACS core libraries (engine and runtime): GUI uses them at schema design time, then a schema XML 
1017 file is saved and passed to YACS CORBA API, and finally YACS core libraries execute the schema at YACS CORBA server side.
1018
1019 YACS GUI differs from standard full SALOME modules (such as Geometry or Mesh) in that it does not use SALOMEDS objects to create 
1020 Object Browser representation of its data, and creates this representation in a way light SALOME modules do.  
1021 This is done in order to avoid publishing lots of objects in SALOMEDS study just to create visual representation of data and 
1022 thus to improve GUI performance.
1023
1024 YACS architecture scheme is shown on the picture below.
1025
1026 .. image:: images/general_architecture_0.jpg
1027      :align: center
1028
1029 The YACS module is a SALOME module with one document (study) per desktop.
1030
1031 YACS is composed of several packages. The main things are mentioned in the next sections.
1032
1033 Bases package
1034 '''''''''''''''''''''''
1035 Bases package contains common base classes (exception, threads, etc.) and constants.
1036
1037 Engine package
1038 '''''''''''''''''''''''
1039 Engine package consists of calculation schema generic classes (calculation nodes, control nodes, control and data 
1040 flow links, etc.). 
1041
1042 Engine is in charge to:
1043
1044     * edit,
1045     * check consistency,
1046     * schedule,
1047     * execute
1048
1049 graphs independently from the context (i.e. Runtime) the graph is destined to run.
1050
1051 SALOME Runtime package
1052 '''''''''''''''''''''''
1053 Runtime package provides implementation of YACS generic calculation nodes for SALOME platform. 
1054 Runtime exists in a given Context.  
1055
1056 Runtime is in charge to:
1057
1058     * treat physically the basic execution of elementary tasks in a given context,
1059     * transfer data in this context,
1060     * perform the physical deployment of the execution.
1061
1062 Runtime simply appears in Engine as an interface that a concrete Runtime must implement to be piloted by Engine.
1063
1064 The SALOME Runtime implements following nodes:
1065
1066     * Inline function node.  A function inline node is implemented by a Python function.
1067     * Inline script node.  A script inline node is implemented by a Python script.
1068     * Component service node.  This is a calculation node associated with a SALOME component service.
1069     * CORBA reference service node.  Reference service node for CORBA objects.  This is a node that executes a CORBA service.
1070     * CPP node.  This is a C++ node (in process component), i.e. local C++ implementation - single process.
1071
1072 XML file loader package
1073 ''''''''''''''''''''''''''''''''
1074 This is XML reader for generic calculation schema.
1075
1076 XML file loader provides
1077
1078     * a possibility to load a calculation schema in memory by reading and parsing a XML file describing it,
1079     * an executable named driver that can be used to load and execute (see :ref:`execxml`) a calculation 
1080       schema given as a XML file (see :ref:`schemaxml`).
1081
1082 GUI design
1083 ''''''''''''''''''''''''''''''''
1084 Goals of Graphic User Interface design are the following:
1085
1086     * Provide a general mechanism for the synchronisation of several views (tree views, 2D canvas views, edition dialogs).  
1087       For this goal, a subject/observers design pattern is used: several observers can attach or detach themselves to/from the subject.  
1088       The subject send update events to the lists of observers and does not know the implementation of the observers.  The observers 
1089       correspond to the different views in case of YACS.
1090     * Provide an interface of Engine for edition with a general mechanism for undo-redo.
1091     * Be as independent as possible of Qt (and SALOME) to allow a potential re-use of YACS GUI outside SALOME.
1092