-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for inputs and outputs arity
Signed-off-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
5686bf1
commit 42504d3
Showing
13 changed files
with
503 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
modules/nextflow/src/main/groovy/nextflow/exception/IllegalArityException.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2013-2023, Seqera Labs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package nextflow.exception | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.transform.InheritConstructors | ||
|
||
/** | ||
* Exception thrown when input/output arity check fails | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
@CompileStatic | ||
@InheritConstructors | ||
class IllegalArityException extends ProcessUnrecoverableException { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
modules/nextflow/src/main/groovy/nextflow/script/params/ArityParam.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Copyright 2023, Seqera Labs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package nextflow.script.params | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.transform.EqualsAndHashCode | ||
import nextflow.exception.IllegalArityException | ||
|
||
/** | ||
* Implements an arity option for process inputs and outputs. | ||
* | ||
* @author Ben Sherman <[email protected]> | ||
*/ | ||
@CompileStatic | ||
trait ArityParam { | ||
|
||
Range arity | ||
|
||
Range getArity() { arity } | ||
|
||
def setArity(String value) { | ||
if( value.isInteger() ) { | ||
def n = value.toInteger() | ||
this.arity = new Range(n, n) | ||
return this | ||
} | ||
|
||
final tokens = value.tokenize('..') | ||
if( tokens.size() == 2 ) { | ||
final min = tokens[0] | ||
final max = tokens[1] | ||
if( min.isInteger() && (max == '*' || max.isInteger()) ) { | ||
this.arity = new Range( | ||
min.toInteger(), | ||
max == '*' ? Integer.MAX_VALUE : max.toInteger() | ||
) | ||
return this | ||
} | ||
} | ||
|
||
throw new IllegalArityException("Path arity should be a number (e.g. '1') or a range (e.g. '1..*')") | ||
} | ||
|
||
/** | ||
* Determine whether a single output file should be unwrapped. | ||
*/ | ||
boolean isSingle() { | ||
return !arity || arity.max == 1 | ||
} | ||
|
||
boolean isValidArity(int size) { | ||
return !arity || arity.contains(size) | ||
} | ||
|
||
@EqualsAndHashCode | ||
static class Range { | ||
int min | ||
int max | ||
|
||
Range(int min, int max) { | ||
if( min<0 ) | ||
throw new IllegalArityException("Path arity min value must be greater or equals to 0") | ||
if( max<1 ) | ||
throw new IllegalArityException("Path arity max value must be greater or equals to 1") | ||
if( min==0 && max==1 ) | ||
throw new IllegalArityException("Path arity 0..1 is not allowed") | ||
this.min = min | ||
this.max = max | ||
} | ||
|
||
boolean contains(int value) { | ||
min <= value && value <= max | ||
} | ||
|
||
@Override | ||
String toString() { | ||
min == max | ||
? min.toString() | ||
: "${min}..${max == Integer.MAX_VALUE ? '*' : max}".toString() | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.