Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
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
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
d2123101
Commit
d2123101
authored
9 years ago
by
Nathaniel Kofalt
Browse files
Options
Downloads
Patches
Plain Diff
Implement rules
parent
893f21ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/rules.py
+21
-7
21 additions, 7 deletions
api/rules.py
with
21 additions
and
7 deletions
api/rules.py
+
21
−
7
View file @
d2123101
...
...
@@ -5,6 +5,7 @@ log = logging.getLogger('scitran.api.jobs')
import
bson
import
pymongo
import
datetime
import
fnmatch
from
.
import
base
from
.
import
util
...
...
@@ -46,18 +47,31 @@ def eval_match(match_type, match_param, file_, container):
if
not
match_type
in
MATCH_TYPES
:
raise
Exception
(
'
Unsupported match type
'
+
match_type
)
# Match the file's type
if
match_type
==
'
file.type
'
:
pass
return
file_
[
'
type
'
]
==
match_param
# Match a shell glob for the file name
elif
match_type
==
'
file.name
'
:
pass
return
fnmatch
.
fnmatch
(
file_
[
'
type
'
],
match_param
)
# Match any of the file's measurements
elif
match_type
==
'
file.measurements
'
:
pass
return
match_param
in
file_
[
measurements
]
# Match the container's primary measurment
elif
match_type
==
'
container.measurement
'
:
pass
return
container
[
'
measurement
'
]
==
match_param
# Match the container having any file (including this one) with this type
elif
match_type
==
'
container.has-type
'
:
pass
else
raise
Exception
(
'
Unimplemented match type
'
+
match_type
)
for
c_file
in
container
[
'
files
'
]:
if
match_param
in
c_file
[
'
measurements
'
]:
return
True
return
False
raise
Exception
(
'
Unimplemented match type
'
+
match_type
)
def
eval_rule
(
rule
,
file_
,
container
):
...
...
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