Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VTK Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
VTK
VTK Examples
Commits
acc1229c
Commit
acc1229c
authored
3 years ago
by
Sankhesh Jhaveri
Browse files
Options
Downloads
Patches
Plain Diff
Separate function to return cross-ref dict in SelectExamples
parent
2d50e847
No related branches found
Branches containing commit
No related tags found
1 merge request
!179
Separate function to return cross-ref dict in SelectExamples
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Python/Utilities/SelectExamples.py
+23
-10
23 additions, 10 deletions
src/Python/Utilities/SelectExamples.py
with
23 additions
and
10 deletions
src/Python/Utilities/SelectExamples.py
+
23
−
10
View file @
acc1229c
...
...
@@ -92,6 +92,27 @@ def get_examples(d, vtk_class, lang, all_values=False, number=5, ):
return
total
,
[
f
'
{
s
[
1
]
}
'
for
s
in
samples
]
def
get_crossref_dict
(
ref_dir
):
"""
Download and return the json cross-reference file.
This function ensures that the dictionary is recent.
:param ref_dir: The directory where the file will be downloaded
:return: The dictionary cross-referencing vtk classes to examples
"""
path
=
download_file
(
ref_dir
,
Links
.
xref_url
,
overwrite
=
False
)
if
not
path
.
is_file
():
print
(
f
'
The path:
{
str
(
path
)
}
does not exist.
'
)
return
None
dt
=
datetime
.
today
().
timestamp
()
-
os
.
path
.
getmtime
(
path
)
# Force a new download if the time difference is > 10 minutes.
if
dt
>
600
:
path
=
download_file
(
ref_dir
,
Links
.
xref_url
,
overwrite
=
True
)
with
open
(
path
)
as
json_file
:
return
json
.
load
(
json_file
)
def
main
():
vtk_class
,
language
,
all_values
,
number
=
get_program_parameters
()
language
=
language
.
lower
()
...
...
@@ -103,17 +124,9 @@ def main():
return
else
:
language
=
available_languages
[
language
]
tmp_dir
=
tempfile
.
gettempdir
()
path
=
download_file
(
tmp_dir
,
Links
.
xref_url
,
overwrite
=
False
)
if
not
path
.
is_file
():
print
(
f
'
The path:
{
str
(
path
)
}
does not exist.
'
)
xref_dict
=
get_crossref_dict
(
tempfile
.
gettempdir
())
if
xref_dict
is
None
:
return
dt
=
datetime
.
today
().
timestamp
()
-
os
.
path
.
getmtime
(
path
)
# Force a new download if the time difference is > 10 minutes.
if
dt
>
600
:
path
=
download_file
(
tmp_dir
,
Links
.
xref_url
,
overwrite
=
True
)
with
open
(
path
)
as
json_file
:
xref_dict
=
json
.
load
(
json_file
)
total_number
,
examples
=
get_examples
(
xref_dict
,
vtk_class
,
language
,
all_values
=
all_values
,
number
=
number
)
if
examples
:
...
...
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