Ticket #696 (closed Enhancement: fixed)
Remove "ClientState" parameter from Core API
Reported by: | jri | Owned by: | jri |
---|---|---|---|
Priority: | Major | Milestone: | Release 4.4 |
Component: | DeepaMehta Standard Distribution | Version: | 4.3 |
Keywords: | Cc: | dgf, Malte, carolina | |
Complexity: | 3 | Area: | Application Framework / API |
Module: | deepamehta-core |
Description
The ClientState parameter is omnipresent in the Core API but rarely used by plugin developers. It bloats the API signatures and render them non-intuitive.
The ClientState parameter should be completely removed from the Core API. Instead ClientState should be injectable to where it is needed.
Change History
comment:2 Changed 10 years ago by Jörg Richter
Remove ClientState? parameter from Core API (#696).
BREAKING CHANGES
The clientState parameter is completely removed from all APIs.
So, just drop it from all your method calls.
If your plugin needs access to the cookies inject HttpHeaders and construct a Cookies object on it.
Cookies is a new class which is call compatible to the former ClientState (which is dropped).
Example:
import de.deepamehta.core.service.Cookies; import javax.ws.rs.Path; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; @Path("...") public class YourPlugin ... { @Context private HttpHeaders httpHeaders; void someMethod() { Cookies cookies = new Cookies(httpHeaders); ... } }
Note: injecting the HTTP headers only works in a root resource class, that is a class which has a @Path annotation.
IMPORTANT: the DM standard distro is not yet working, in particular the Workspaces plugin. This is because we can't cheat anymore by passing null as clientState. The Workspace plugin did this to avoid the vicious circle that occurs when an workspace assigment (an Aggregation) gets itself an workspace assignment, which gets itself ...
To solve this situation we aim to solve #341 ("Association Definitions with custom Association Types") first. We will introduce a dedicated association type Workspace Assignment then. This allows the Workspace plugin to skip workspace assignment in case a Workspace Assignment association is detected. A generic Aggregation in contrast can not be distinguished ... ooh, hey, let's wait a minute ... while I'm writing this the solution becomes evident: of course an Aggregation can be recognized as a workspace assignment: by checking the involved players! OK, lets go this way. Lets wait #341 a little.
See #696.
comment:3 Changed 10 years ago by Jörg Richter
comment:4 Changed 10 years ago by Jörg Richter
Remove ClientState?: fix Workspaces plugin (#696).
Remove vicious circle that would occur when assigning a workspace to an workspace assignment (association of type Aggregation).
See #696.
comment:5 Changed 10 years ago by Jörg Richter
Remove ClientState? parameter from Core API (#696).
BREAKING CHANGES
The clientState parameter is completely removed from all APIs.
So, just drop it from all your method calls.
If your plugin needs access to the cookies inject HttpHeaders and construct a Cookies object on it.
Cookies is a new class which is call compatible to the former ClientState (which is dropped).
Example:
import de.deepamehta.core.service.Cookies; import javax.ws.rs.Path; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; @Path("...") public class YourPlugin ... { @Context private HttpHeaders httpHeaders; void someMethod() { Cookies cookies = new Cookies(httpHeaders); ... } }
Note: injecting the HTTP headers only works in a root resource class, that is a class which has a @Path annotation.
IMPORTANT: the DM standard distro is not yet working, in particular the Workspaces plugin. This is because we can't cheat anymore by passing null as clientState. The Workspace plugin did this to avoid the vicious circle that occurs when an workspace assigment (an Aggregation) gets itself an workspace assignment, which gets itself ...
To solve this situation we aim to solve #341 ("Association Definitions with custom Association Types") first. We will introduce a dedicated association type Workspace Assignment then. This allows the Workspace plugin to skip workspace assignment in case a Workspace Assignment association is detected. A generic Aggregation in contrast can not be distinguished ... ooh, hey, let's wait a minute ... while I'm writing this the solution becomes evident: of course an Aggregation can be recognized as a workspace assignment: by checking the involved players! OK, lets go this way. Lets wait #341 a little.
See #696.
comment:6 Changed 10 years ago by Jörg Richter
comment:7 Changed 10 years ago by Jörg Richter
Remove ClientState?: fix Workspaces plugin (#696).
Remove vicious circle that would occur when assigning a workspace to an workspace assignment (association of type Aggregation).
See #696.
comment:8 Changed 10 years ago by Jörg Richter
Core API: easify cookie access (#696).
BREAKING CHANGE
If your plugin needs access to the current request's cookies just call Cookies.get().
This works in any class.
Internally the Core stores the current request (and thus the cookies) in a thread-local variable.
Example:
import de.deepamehta.core.service.Cookies; public class YourPlugin ... { void someMethod() { Cookies cookies = Cookies.get(); ... } }
This is much more easy than the recently introduced approach (which worked in root resource classes only):
import de.deepamehta.core.service.Cookies; import javax.ws.rs.Path; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; @Path("...") public class YourPlugin ... { @Context private HttpHeaders httpHeaders; void someMethod() { Cookies cookies = new Cookies(httpHeaders); ... } }
See #696.
comment:9 Changed 10 years ago by Jörg Richter
comment:10 Changed 10 years ago by Jörg Richter
Remove ClientState? parameter from Core API (#696).
BREAKING CHANGES
The clientState parameter is completely removed from all APIs.
So, just drop it from all your method calls.
If your plugin needs access to the cookies inject HttpHeaders and construct a Cookies object on it.
Cookies is a new class which is call compatible to the former ClientState (which is dropped).
Example:
import de.deepamehta.core.service.Cookies; import javax.ws.rs.Path; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; @Path("...") public class YourPlugin ... { @Context private HttpHeaders httpHeaders; void someMethod() { Cookies cookies = new Cookies(httpHeaders); ... } }
Note: injecting the HTTP headers only works in a root resource class, that is a class which has a @Path annotation.
IMPORTANT: the DM standard distro is not yet working, in particular the Workspaces plugin. This is because we can't cheat anymore by passing null as clientState. The Workspace plugin did this to avoid the vicious circle that occurs when an workspace assigment (an Aggregation) gets itself an workspace assignment, which gets itself ...
To solve this situation we aim to solve #341 ("Association Definitions with custom Association Types") first. We will introduce a dedicated association type Workspace Assignment then. This allows the Workspace plugin to skip workspace assignment in case a Workspace Assignment association is detected. A generic Aggregation in contrast can not be distinguished ... ooh, hey, let's wait a minute ... while I'm writing this the solution becomes evident: of course an Aggregation can be recognized as a workspace assignment: by checking the involved players! OK, lets go this way. Lets wait #341 a little.
See #696.
comment:11 Changed 10 years ago by Jörg Richter
comment:12 Changed 10 years ago by Jörg Richter
Remove ClientState?: fix Workspaces plugin (#696).
Remove vicious circle that would occur when assigning a workspace to an workspace assignment (association of type Aggregation).
See #696.
comment:13 Changed 10 years ago by Jörg Richter
Core API: easify cookie access (#696).
BREAKING CHANGE
If your plugin needs access to the current request's cookies just call Cookies.get().
This works in any class.
Internally the Core stores the current request (and thus the cookies) in a thread-local variable.
Example:
import de.deepamehta.core.service.Cookies; public class YourPlugin ... { void someMethod() { Cookies cookies = Cookies.get(); ... } }
This is much more easy than the recently introduced approach (which worked in root resource classes only):
import de.deepamehta.core.service.Cookies; import javax.ws.rs.Path; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; @Path("...") public class YourPlugin ... { @Context private HttpHeaders httpHeaders; void someMethod() { Cookies cookies = new Cookies(httpHeaders); ... } }
See #696.
comment:14 Changed 10 years ago by Jörg Richter
comment:15 Changed 10 years ago by Jörg Richter
comment:16 Changed 10 years ago by Jörg Richter
comment:17 Changed 10 years ago by jri
- Status changed from accepted to closed
- Resolution set to fixed
comment:18 follow-up: ↓ 19 Changed 10 years ago by Malte
On a sidenote to changes affecting "ClientState?" (since I remember there was some connection to Workspaces):
- How can plugin developers control to which workspace their objects (topics ro assocs) are assigned when using 'createTopic()' or 'createAssiocation' calls in 4.4?
- By which means can plugin developers currently update an objects workspace assignment (e.g. changing the workspace)?
I am aware that all this might very well change with 4.5 but I want to know how it is 4.4.
Thankful for any explanation.
comment:19 in reply to: ↑ 18 ; follow-up: ↓ 20 Changed 10 years ago by jri
Replying to Malte:
On a sidenote to changes affecting "ClientState?" (since I remember there was some connection to Workspaces):
In DM 4.4 just the access to a ClientState object has changed. The underlying cookie mechanics has not. Also the handling of workspaces has not changed.
- How can plugin developers control to which workspace their objects (topics ro assocs) are assigned when using 'createTopic()' or 'createAssiocation' calls in 4.4?
Just as in DM 4.3 and before: add a dm4_workspace_id cookie to your request.
- By which means can plugin developers currently update an objects workspace assignment (e.g. changing the workspace)?
Workspaces API (not changed in DM 4.4):
void assignToWorkspace(DeepaMehtaObject object, long workspaceId) void assignTypeToWorkspace(Type type, long workspaceId)
The workspace assignment is added to existing assignments. Workspace is a multi-facet.
At the moment the Workspaces service lacks 2 things:
- removing a workspace assignment. As a workaround you could use the Facets service directly.
- REST API
I am aware that all this might very well change with 4.5 but I want to know how it is 4.4.
At least 2 things will change in DM 4.5
- Each object is assigned to one workspace only
- Technically the workspace assignment is stored as an object property. The Aggregations remain there but become cosmetic.
comment:20 in reply to: ↑ 19 Changed 10 years ago by Malte
Replying to jri:
Replying to Malte:
On a sidenote to changes affecting "ClientState?" (since I remember there was some connection to Workspaces):
In DM 4.4 just the access to a ClientState object has changed. The underlying cookie mechanics has not. Also the handling of workspaces has not changed.
- How can plugin developers control to which workspace their objects (topics ro assocs) are assigned when using 'createTopic()' or 'createAssiocation' calls in 4.4?
Just as in DM 4.3 and before: add a dm4_workspace_id cookie to your request.
When writing "createTopic()" I referred to using "dms" directly (in a non resource method/without request scope). So how one can control the workspace assignment here, e.g. when calling another plugins service-methods without having a cookie but with knowing that topics created via this plugin *must* stay within one specific workspace.
Case: The wikidata plugin creates its own workspace and all wikidata-topics shall be (initially) assigned to that wikidata workspace (which happens in a non-resource method).
Thanks for your help.
comment:21 Changed 10 years ago by jri
When you call dms.createTopic() or dms.createAssociation() outside a request scope your topic/association gets no workspace assignment automatically. You have to do the assignment manually.
There is one exception (but presumably not applying to your case): Types whose URI have a dm4. prefix are assigned to the standard "DeepaMehta" workspace automatically. (This applies only to types, not to regular topics/associations). These types are regarded part of the DM Standard Distribution.
The best way to do the workspace assignment manually is using the Workspaces service:
void assignToWorkspace(DeepaMehtaObject object, long workspaceId) void assignTypeToWorkspace(Type type, long workspaceId)
Use the former for regular topics/associations and the latter for types.
But I fear in your case -- you're in a migration, right? -- you don't have access to the Workspaces service. In that case my recommended workaround is: don't use a migration but the init() and/or postInstall() hooks. The former is triggered each time your plugin starts, the latter is triggered only once in the life-time of your plugin. In both cases the plugin services are already available.
These circumstances have not changed in 4.4 and are not related to DM 4.4's ClientState redesign.
Your question is rather related to #371 and #324. I definitely see need for action regarding these tickets. However, not a high priority as a workaround exists. But the more you insist ... :-)