Skip to content

Commit feaa7b8

Browse files
committed
initial chapter about traversal and acquisition
1 parent 3523802 commit feaa7b8

File tree

3 files changed

+89
-19
lines changed

3 files changed

+89
-19
lines changed

docs/backend/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ global-utils
3030
portal-actions
3131
users-groups
3232
security
33-
traversing
33+
traversal-acquisition
3434
workflows
3535
search
3636
indexing
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
---
2+
myst:
3+
html_meta:
4+
"description": "Explaining the concepts of traversal and acquisition in Zope/Plone"
5+
"property=og:description": ""
6+
"property=og:title": ""
7+
"keywords": ""
8+
---
9+
10+
(traversal-and-acquisition-label)=
11+
12+
# Traversal and Acquisition
13+
14+
# Traversal
15+
16+
(backend-traversing-label)=
17+
18+
In Zope and Plone, traversal is the process of determining the object that is the target of a request by examining the URL path of the request or in code and looking up objects in the object hierarchy.
19+
The object hierarchy in Zope is made up of "containers" and "item" objects.
20+
Containers can contain other objects, while item objects cannot.
21+
This is to some degree like the tree structure of a filesystem with folders, subfolders, and files.
22+
23+
When a request is made to the server, it examines the URL path of the request and starts at the root of the object hierarchy.
24+
It then looks up each element of the URL path, starting with the first element in the current container, and if it finds an object with a matching name, it sets that object as the current container and continues to the next element of the URL path.
25+
This process continues until the final element of the URL path is reached, at which point the server has determined the target object of the request.
26+
If not explicitly given, at the end a default view is looked up.
27+
This can be a registered page template, a callable view class, or a RestAPI endpoint.
28+
29+
```{seealso}
30+
{ref}`Chapter Views <classic-ui-views-label>`
31+
```
32+
33+
In code, traversal can be achieved by using the `restrictedTraverse` and `unrestrictedTraverse` methods of content objects.
34+
While request traversal and `restrictedTraverse` always include security checks, these checks can be bypassed when using `unrestrictedTraverse` in code.
35+
The developer has more control over the traversal process and can access objects without the normal security restrictions, but security restrictions have to be implemented by the developer accordingly.
36+
37+
38+
# Acquisition
39+
40+
(backend-qcquisition-label)=
41+
42+
In Zope, "acquisition" is a mechanism that allows objects to inherit attributes from their parent objects in the object hierarchy.
43+
This enables objects to "acquire" attributes from their parent objects, rather than having to define all attributes themselves.
44+
45+
For example, if object A contains object B, and object A has an attribute "x", then object B can access the attribute x via acquisition, without having to define the attribute itself.
46+
47+
## Influences on traversal
48+
49+
This concept influences traversal in Zope because it allows objects to be accessed on traversal by acquisition in the object hierarchy, rather than having to know the exact location of an object.
50+
For example, if an object "C" is located at the path "/A/B/C", it can also be accessed by traversing the hierarchy starting from object E in the path "/A/B/D/E" with "E.C", because it is acquiring attributes of objects D, B and A along the way.
51+
This makes it at the same time easier and more confusing to find and access objects in a large, complex object hierarchy.
52+
53+
54+
## Explicit vs Implicit Acquisition
55+
56+
In Zope, acquisition can be either explicit or implicit.
57+
58+
Explicit acquisition refers to the ability of an object to specifically request attributes from its parent object.
59+
This is done by using the "Acquire" or "aq_acquire" method to acquire a specific attribute from a parent object.
60+
For example, if object A contains object B, and object A has an attribute "x", object B can explicitly acquire attribute x by calling `B.aq_acquire("x")`.
61+
62+
Implicit acquisition refers to the automatic inheritance of attributes from parent objects without the need for explicit requests.
63+
This is the default behavior in Zope, where objects automatically inherit attributes from their parent objects if they don't have the property defined themselves.
64+
For example, if object A contains object B, and object A has a property "x", object B can implicitly acquire property x by simply accessing the property x without calling the acquire method: `B.x`.
65+
66+
The attribute is always acquired from its nearest parent and if it does not exist there it looks at the next parent up the hierarchy.
67+
If the root is reached and no such attribute was found an `AttributeError` is raised.
68+
69+
A common use of implicit acquisition in Plone is to access tools like the `portal_catalog` from deep within the object hierarchy.
70+
This is done by calling methods on the tool, such as `context.portal_catalog.searchResults(**query)`, where `context` is a content object located deep within the hierarchy.
71+
This works because the `portal_catalog` tool is a child object of the Plone portal root, and is automatically acquired by objects further down the hierarchy.
72+
This allows developers to access the tool without having to know its exact location within the hierarchy.
73+
However, getting tools this way is discouraged, as this includes extra processing overhead.
74+
75+
In general, implicit acquisition is more commonly used in Zope, as it allows for a more natural and less verbose way of working with objects and their attributes.
76+
On the other hand, implicit acquisition needs to be blocked to be sure to not acquire attributes using the `aq_base` method.
77+
For example, if object A contains object B, and object A has a property "x", and the question is whether an attribute x exists on object B or not, then `getattr(B.aq_base, 'x', _marker)` avoids acquisition from A.
78+
79+
80+
# Further Reading
81+
82+
```{seealso}
83+
About traversal: [Zope Developers Handbook, Chapter Object Publishing](https://zope.readthedocs.io/en/latest/zdgbook/ObjectPublishing.html)
84+
```
85+
86+
```{seealso}
87+
About Acquisition: [Zope Developers Handbook, Chapter Acquisition](https://zope.readthedocs.io/en/latest/zdgbook/Acquisition.html)
88+
```

docs/backend/traversing.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)