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
79e53c5b
Commit
79e53c5b
authored
7 years ago
by
Bill Lorensen
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Now creates tarballs for each example
parent
11822794
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
src/Admin/ScrapeRepo
+17
-76
17 additions, 76 deletions
src/Admin/ScrapeRepo
with
18 additions
and
76 deletions
.gitignore
+
1
−
0
View file @
79e53c5b
docs
Tarballs
This diff is collapsed.
Click to expand it.
src/Admin/ScrapeRepo
+
17
−
76
View file @
79e53c5b
...
...
@@ -47,6 +47,10 @@ def GetVTKQtCMake(S):
reg
=
re
.
compile
(
r
"
\{\{(VTKQtCMakeLists)\|(.*?)\}\}.*?
"
,
re
.
DOTALL
)
return
[
reg
.
findall
(
S
)]
def
GetVTKCMakelists
(
S
):
reg
=
re
.
compile
(
r
"
```cmake(.*?)```
"
,
re
.
DOTALL
)
return
[
''
.
join
(
reg
.
findall
(
S
))]
def
WriteCxxCode
(
toFile
,
codeName
,
code
):
toFile
.
write
(
"
**
"
+
codeName
+
"
**
"
+
"
\n
"
)
toFile
.
write
(
"
```c++
"
+
"
\n
"
)
...
...
@@ -212,6 +216,13 @@ for lang, langExt in Languages.items():
SrcFile
.
close
()
MdFile
.
write
(
src
)
MdFile
.
write
(
"
```
"
+
"
\n
"
)
# Store the full file names for the example
if
ExampleName
not
in
exampleToFileNames
:
exampleToFileNames
[
ExampleName
]
=
set
()
SrcFile
=
RepoDir
+
"
/
"
+
lang
+
"
/
"
+
KitName
+
"
/
"
+
ExampleName
+
ExampleExt
exampleToFileNames
[
ExampleName
].
add
(
SrcFile
)
ExtrasPath
=
RepoDir
+
"
/
"
+
lang
+
"
/
"
+
KitName
+
"
/
"
+
ExampleName
+
"
.extras
"
ExtraNames
=
""
if
os
.
path
.
isfile
(
ExtrasPath
)
:
...
...
@@ -221,6 +232,9 @@ for lang, langExt in Languages.items():
line
=
line
.
strip
()
print
line
ExtraPath
=
RepoDir
+
"
/
"
+
lang
+
"
/
"
+
KitName
+
"
/
"
+
line
SrcFile
=
RepoDir
+
"
/
"
+
lang
+
"
/
"
+
KitName
+
"
/
"
+
line
exampleToFileNames
[
ExampleName
].
add
(
SrcFile
)
print
"
\t
"
+
"
ExtraPath:
"
+
ExtraPath
ExtraFile
=
open
(
ExtraPath
,
'
r
'
)
extraCode
=
ExtraFile
.
read
()
...
...
@@ -240,6 +254,7 @@ for lang, langExt in Languages.items():
CMakeContents
=
CMakeFile
.
read
()
CMakeFile
.
close
()
cmake
=
FillCMakeLists
(
CMakeContents
,
ExampleName
,
ExtraNames
)
exampleToCMake
[
ExampleName
]
=
GetVTKCMakelists
(
cmake
)
if
lang
==
"
Cxx
"
:
MdFile
.
write
(
cmake
)
MdFile
.
close
()
...
...
@@ -257,80 +272,6 @@ for item in sortedByCode:
indexFile
.
write
(
"
<br>
\n
"
)
indexFile
.
close
()
exit
(
0
)
xxx
=
0
for
page
in
site
.
pages
:
# Look for find pages that start with VTK/Examples/
to_find
=
"
VTK/Examples/
"
start
=
page
.
name
.
find
(
to_find
)
# If the page doesn't start with VTK/Examples, skip it
if
start
<
0
:
continue
# Get the part of the page name that comes after VTK/Examples/
# e.g. if the page name is VTK/Examples/GeometricObjects/Line,
# ExamplePath will be GeometriObjects/Line
ExamplePath
=
page
.
name
[
start
+
len
(
to_find
):]
# Continuing the above example, the below splits GeometricObjects/Line
# into PathName = GeometricObjects/
# ExampleName = Line
PathSplit
=
os
.
path
.
split
(
ExamplePath
)
PathName
=
PathSplit
[
0
]
ExampleName
=
re
.
sub
(
"
"
,
"
_
"
,
PathSplit
[
1
])
# Get the content of the page
content
=
page
.
edit
()
# Get all of the file names and file content on the page
CodeChunks
=
GetCode
(
content
)
vtkQtCMakeChunks
=
GetVTKQtCMake
(
content
)
if
vtkQtCMakeChunks
[
0
]:
exampleToCMake
[
ExampleName
]
=
FillCMakeLists
(
ExtractCMakeLists
(
VTKQtTemplate
)[
0
],
ExampleName
)
xxx
=
xxx
+
1
vtkCMakeChunks
=
GetVTKCMake
(
content
)
if
vtkCMakeChunks
[
0
]:
exampleToCMake
[
ExampleName
]
=
FillCMakeLists
(
ExtractCMakeLists
(
VTKTemplate
)[
0
],
ExampleName
)
xxx
=
xxx
+
1
if
CodeChunks
:
for
code
in
CodeChunks
:
# Extract the Level 2 heading (e.g. ==Line.cxx==) into FileName and the content in the first <source ...> tag below the heading into FileContent
FileName
=
code
[
0
]
FileContent
=
code
[
1
]
if
FileName
==
"
CMakeLists.txt
"
:
break
if
FileName
==
"
CMakeLists.txt
"
:
continue
if
FileName
==
"
CmakeLists.txt
"
:
continue
if
FileName
==
"
CmakeLists.txt
"
:
continue
# Check if the path exists, if not, create it
if
not
os
.
path
.
exists
(
PathName
):
if
PathName
!=
""
:
os
.
makedirs
(
PathName
)
# Write the source code file
OutputFile
=
"
./
"
+
PathName
+
"
/
"
+
FileName
if
os
.
path
.
exists
(
OutputFile
):
sys
.
exit
(
"
ERROR:
"
+
OutputFile
+
"
already exists. Check for duplicate file in examples.
"
)
print
"
Creating
"
+
OutputFile
MyFile
=
open
(
OutputFile
,
'
w
'
)
MyFile
.
write
(
FileContent
)
MyFile
.
write
(
"
\n
"
)
MyFile
.
close
()
codeToPage
[
FileName
]
=
ExamplePath
# Store the full file names for the example
if
ExampleName
not
in
exampleToFileNames
:
exampleToFileNames
[
ExampleName
]
=
set
()
exampleToFileNames
[
ExampleName
].
add
(
OutputFile
)
if
xxx
>
10000
:
break
# Create tarballs for each example
tmpDir
=
tempfile
.
mkdtemp
(
prefix
=
"
VTKTarballs
"
)
+
"
/
"
...
...
@@ -371,7 +312,7 @@ for example in exampleToFileNames:
if
example
in
exampleToCMake
:
cmakeFileName
=
srcDir
+
"
/
"
+
"
CMakeLists.txt
"
cmakeFile
=
open
(
cmakeFileName
,
'
w
'
)
cmakeFile
.
write
(
exampleToCMake
[
example
])
cmakeFile
.
write
(
exampleToCMake
[
example
]
[
0
]
)
cmakeFile
.
close
()
os
.
utime
(
cmakeFileName
,(
refMtime
,
refMtime
))
...
...
@@ -390,4 +331,4 @@ for example in exampleToFileNames:
os
.
utime
(
tmpDir
,(
0
,
refMtime
))
# Cleanup the temporary directories
shutil
.
rmtree
(
tmpDir
)
#
shutil.rmtree(tmpDir)
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