Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
basic
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xrm
basic
Commits
607b1fbb
Commit
607b1fbb
authored
5 years ago
by
Johannes Goderbauer
Browse files
Options
Downloads
Patches
Plain Diff
implemented basic client-global caching mechanisms
parent
c9eb1a3c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
process/DataCaching_lib/DataCaching_lib.aod
+9
-0
9 additions, 0 deletions
process/DataCaching_lib/DataCaching_lib.aod
process/DataCaching_lib/process.js
+90
-0
90 additions, 0 deletions
process/DataCaching_lib/process.js
with
99 additions
and
0 deletions
process/DataCaching_lib/DataCaching_lib.aod
0 → 100644
+
9
−
0
View file @
607b1fbb
<?xml version="1.0" encoding="UTF-8"?>
<process
xmlns=
"http://www.adito.de/2018/ao/Model"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
VERSION=
"1.2.1"
xsi:schemaLocation=
"http://www.adito.de/2018/ao/Model adito://models/xsd/process/1.2.1"
>
<name>
DataCaching_lib
</name>
<majorModelMode>
DISTRIBUTED
</majorModelMode>
<process>
%aditoprj%/process/DataCaching_lib/process.js
</process>
<variants>
<element>
LIBRARY
</element>
</variants>
</process>
This diff is collapsed.
Click to expand it.
process/DataCaching_lib/process.js
0 → 100644
+
90
−
0
View file @
607b1fbb
import
(
"
system.vars
"
);
function
CachedData
(
pIdentifiyingName
,
pKeepPerLanguage
)
{
this
.
identifyingName
=
pIdentifiyingName
;
this
.
keepPerLanguage
=
pKeepPerLanguage
;
this
.
runningOnServer
=
vars
.
getString
(
"
$sys.isserver
"
)
==
"
true
"
;
if
(
this
.
runningOnServer
)
this
.
locale
=
vars
.
get
(
"
$sys.serverlocale
"
);
else
this
.
locale
=
(
this
.
keepPerLanguage
?
vars
.
get
(
"
$sys.clientlocale
"
)
:
"
_anyLanguage_
"
);
}
CachedData
.
make
=
function
(
pIdentifiyingName
,
pKeepPerLanguage
,
pDataCallbackFunction
)
{
return
(
new
CachedData
(
pIdentifiyingName
,
pKeepPerLanguage
)).
load
(
pDataCallbackFunction
);
}
CachedData
.
prototype
.
load
=
function
(
pDataCallbackFunction
)
{
//currently it's not possible to cache the data within the serer-context, so inestead the Data-function is called everytime
if
(
this
.
runningOnServer
)
return
pDataCallbackFunction
.
call
(
this
,
this
.
keepPerLanguage
,
this
.
locale
);
else
{
var
varname
=
this
.
getVariableName
();
var
data
;
if
(
vars
.
exists
(
varname
))
{
data
=
vars
.
get
(
varname
);
if
(
data
!=
null
)
return
data
;
}
data
=
pDataCallbackFunction
.
call
(
this
,
this
.
keepPerLanguage
,
this
.
locale
);
vars
.
set
(
varname
,
data
);
this
.
_register
();
return
data
;
}
};
CachedData
.
prototype
.
unload
=
function
()
{
var
varname
=
this
.
getVariableName
();
vars
.
set
(
varname
,
null
);
this
.
_unregister
();
}
CachedData
.
prototype
.
getVariableName
=
function
()
{
var
PREFIX
=
"
$global.CachedData.
"
;
var
res
=
PREFIX
+
this
.
identifyingName
+
"
.
"
+
this
.
locale
;
return
res
;
}
CachedData
.
getRegistryName
=
function
()
{
return
"
$global.CachedDataRegistry
"
;
}
CachedData
.
getRegistry
=
function
()
{
var
registryVarname
=
CachedData
.
getRegistryName
();
if
(
vars
.
exists
(
registryVarname
))
return
vars
.
get
(
registryVarname
);
else
return
{};
}
CachedData
.
prototype
.
_register
=
function
()
{
var
registry
=
CachedData
.
getRegistry
();
if
(
registry
[
this
.
getVariableName
()]
!=
undefined
)
throw
new
Error
(
"
Already registered. cannot register the same object twice
"
);
//TODO: message
else
registry
[
this
.
getVariableName
()]
=
{
keepPerLanguage
:
this
.
keepPerLanguage
};
vars
.
set
(
CachedData
.
getRegistryName
(),
registry
);
};
CachedData
.
prototype
.
_unregister
=
function
()
{
var
registry
=
CachedData
.
getRegistry
();
if
(
registry
[
this
.
getVariableName
()]
==
undefined
)
throw
new
Error
(
"
Item not found. cannot unregister
"
);
//TODO: message
else
delete
registry
[
this
.
getVariableName
()];
vars
.
set
(
CachedData
.
getRegistryName
(),
registry
);
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment