Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nanospace-demo
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nanostar
nanospace
nanospace-demo
Commits
a404a862
Commit
a404a862
authored
3 years ago
by
GATEAU Thibault
Browse files
Options
Downloads
Patches
Plain Diff
[dev] example checking val change done
parent
ea9c2e10
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pythonAPI/checkUpToDate.py
+35
-12
35 additions, 12 deletions
pythonAPI/checkUpToDate.py
with
35 additions
and
12 deletions
pythonAPI/checkUpToDate.py
+
35
−
12
View file @
a404a862
...
...
@@ -34,8 +34,9 @@ nanospace = Nanospace(options.server,options.user, options.pwd)
class
Var
:
def
__init__
(
self
,
nanospace_id
):
def
__init__
(
self
,
nanospace_id
,
nanospace_name
):
self
.
id
=
nanospace_id
self
.
name
=
nanospace_name
self
.
val
=
'
?
'
def
__repr__
(
self
):
return
"
<
"
+
str
(
self
.
id
)
+
"
:
"
+
self
.
val
+
"
>
"
...
...
@@ -44,7 +45,8 @@ class Var:
try
:
#be carefull between string and formulas !! Check Python API...
self
.
val
=
nanospace
.
get_formula_value
(
self
.
id
)
print
(
self
)
return
self
.
val
#print(self)
except
ValueError
:
print
(
"
Are you sure that you
'
re using the right ID (
"
+
str
(
self
.
idA
)
+
"
)?
"
)
...
...
@@ -52,31 +54,52 @@ class Var:
print
(
'
-
'
*
60
)
traceback
.
print_exc
(
file
=
sys
.
stdout
)
print
(
'
-
'
*
60
)
def
setVal
(
self
):
nanospace
.
update_formula_value
(
84
,
'
multiplication
'
,
'
5*20
'
)
def
setVal
(
self
,
newVal
):
nanospace
.
update_formula_value
(
self
.
id
,
self
.
name
,
str
(
newVal
)
)
idA
=
2120
var_A
=
Var
(
idA
)
var_A
=
Var
(
idA
,
"
A
"
)
var_A
.
getVal
()
idB
=
2123
var_B
=
Var
(
idB
)
var_B
=
Var
(
idB
,
"
B
"
)
var_B
.
getVal
()
dicoRelation
=
{
var_A
:
var_B
}
def
compute
():
#get list to run
var_B
.
setVal
(
s1
(
var_A
.
val
))
def
s1
(
val
):
return
val
*
val
def
reCompute
():
#get list to run
var_B
.
setVal
(
s1
(
float
(
var_A
.
val
)))
print
(
"
done
"
)
reCompute
()
oldVal
=
var_A
.
getVal
()
print
(
"
waiting
"
)
# , end="", flush=False)
while
(
True
):
#print(". ", end="", flush=True)
time
.
sleep
(
1
)
newVal
=
var_A
.
getVal
()
if
not
(
oldVal
==
newVal
):
print
(
"
Value changed
"
)
print
(
var_A
)
reCompute
()
print
(
var_B
)
oldVal
=
newVal
"""
while (True):
print(
"
.
"
, end=
""
, flush=False)
time.sleep(1)
"""
This diff is collapsed.
Click to expand it.
Preview
0%
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