groimp-platform:extents
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
groimp-platform:extents [2024/12/16 16:17] – gaetan | groimp-platform:extents [2025/01/14 15:29] (current) – gaetan | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Graph Extent | + | ====== Graph Extents |
+ | |||
+ | A special feature of the graph management is the manipulation of [[https:// | ||
- | In order to optimize the XL queries, GroIMP use an additional structure around the nodes from the graph: the [[https:// | ||
===== Extent structure ===== | ===== Extent structure ===== | ||
- | GroIMP | + | Extents are double linked lists. They could be used for any type of java classes. But, in GroIMP |
+ | To be part of the project graph an object needs to extends [[https:// | ||
+ | Then, for each new type of Node added in the graph, an extent is created and linked to its direct super class. The type of Node is described by its [[https:// | ||
+ | If a Node is added to the graph and it extends several level of Nodes, an extent | ||
+ | |||
+ | |||
+ | [[https:// | ||
+ | * getType(): return the type of the node of this extent. | ||
+ | * getSubExtents(): | ||
+ | * getFirstNode(): | ||
+ | * getNextNode(): | ||
+ | * getTotalSize(): | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | E.g. in the following: (the init method is simplified, and we assume that there are not other nodes in the graph) | ||
+ | <code java> | ||
+ | module A; | ||
+ | module B extends A; | ||
+ | module C extends B; | ||
+ | |||
+ | init()[ Axiom ==> C; ] | ||
+ | </ | ||
+ | |||
+ | the graph only contains the root: Node, the RGGRoot, and one C node. GroIMP will create the following extents: | ||
+ | * one for Node of size 1 | ||
+ | * one for RGGRoot of size 1 | ||
+ | * one for A of size 0 | ||
+ | * one for B of size 0 | ||
+ | * one for C of size 1 | ||
- | For instance the following | ||
- | When a node is added in the graph, it is added as well | ||
- | The extent is basically a linked list of the node's references. | ||
===== Extent index ===== | ===== Extent index ===== | ||
+ | |||
+ | An extent collects its nodes not by a single list, but by a number of (doubly linked) lists. Currently, eight lists are used, but this can easily be changed. This feature is used to partition the extents. The eight lists are called the extent indexes. | ||
+ | |||
+ | The extent indexes are defined from 0 to 7. By default most nodes added to the graph are added with the index 0. There are two exceptions (by default. You can manually set index of Node): | ||
+ | - //meta objects//: Nodes of the meta graph. Added at index 7. | ||
+ | - //GUI inserted objects//: Nodes inserted from the GUI. Added at index 6 (since GroIMP 2.1.5, they where added to index 7 before). | ||
+ | |||
+ | The most common example of extent index is the // | ||
+ | |||
+ | **Note**: before GroIMP version 2.1.5, all objects added through the GUI> | ||
+ | |||
+ | An index is visible, if it is included in the queries. A Node can be added in the scene with a geometrical representation, | ||
+ | |||
+ | It is possible to change the index visibility in a project with the method: '' | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | For instance, let's consider the following method in an empty project. Notice that we set the visible extent value to 1: | ||
+ | |||
+ | <code java> | ||
+ | public void run(){ | ||
+ | de.grogra.rgg.model.Runtime.INSTANCE.currentGraph().setVisibleExtents(1); | ||
+ | println((*Node*)); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | The method output: | ||
+ | < | ||
+ | de.grogra.rgg.RGGRoot[id=99]@2e86af42 | ||
+ | de.grogra.rgg.Axiom[id=100]@59f1c976 | ||
+ | </ | ||
+ | |||
+ | Only the " | ||
+ | |||
+ | Let's change the visible extent value to **255**. Now the method output: | ||
+ | < | ||
+ | de.grogra.graph.impl.Node[id=0]@5add4889 | ||
+ | de.grogra.graph.impl.Node[id=1]@4f690d55 | ||
+ | de.grogra.rgg.RGGRoot[id=103]@621de1a6 | ||
+ | Model[id=101]@331e288e | ||
+ | parameters[id=102]@cd97a89 | ||
+ | de.grogra.rgg.Axiom[id=104]@4cface1f | ||
+ | </ | ||
+ | |||
+ | Some additional nodes are now visible: | ||
+ | * the roots (id 0 and 1). id 0 is the root of the main graph. id 1 is the root of the meta graph. | ||
+ | * the nodes from the meta graph: the compiled version of the files: Model, and parameters. | ||
+ | |||
+ | Notice that: | ||
+ | * Once the setVisibleExtents is called. The value remains until a new value is set. | ||
+ | * setVisibleExtents use as parameter the decimal value of a binary number of 8 values where each 1 mean that the index is visible, the 0 to 7 index visibility are defined from left to right. E.g. to have all indexes visible, we use 11111111 (eight 1), which is equal in decimal to 255. To have all indexes visible except for the 1rst one, we use 11111110 (=254). The default value is 01111111 (=127). | ||
+ | |||
+ | |||
+ | |||
+ | ===== Extent in XL queries ===== | ||
+ | |||
+ | === Graph complexity === | ||
+ | |||
+ | Extent are used in RGG for queries that involve Node types. E.g. the query '' | ||
+ | |||
+ | Such a query will **not** visit the graph. It will loop over the extents data. Thus, the complexity of the graph //might// not affect the query. | ||
+ | |||
+ | Speed up queries by using more specific Node type: As the query loop over the extents content, '' | ||
+ | |||
+ | |||
+ | === Indexes === | ||
+ | |||
+ | Additionally, | ||
+ | |||
+ | === Examples === | ||
+ | |||
+ | The following code will create a chain of 8 cylinders, then stop growing. | ||
+ | |||
+ | <code java> | ||
+ | |||
+ | module A(int i) extends F { | ||
+ | {setExtentIndex(i); | ||
+ | } | ||
+ | |||
+ | static int i = 0; | ||
+ | {de.grogra.rgg.model.Runtime.INSTANCE.currentGraph().setVisibleExtents(127); | ||
+ | |||
+ | public void init()[ Axiom ==> A(i); ] | ||
+ | |||
+ | public void run() [ a:A(x), (x==i) ==> a A(++i); ] | ||
+ | </ | ||
+ | |||
+ | Indeed, the last F added as an extent index of 7, thus not visible (setVisibleExtents(127) means 0 to 6 visible). In this case, the query search for F that have a extent index of 7, but the index is not visible, thus, not used in the query. | ||
+ |
groimp-platform/extents.1734362257.txt.gz · Last modified: 2024/12/16 16:17 by gaetan