Add float array input
[arvados-workbench2.git] / src / models / workflow.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource, ResourceKind } from "./resource";
6 import { safeLoad } from 'js-yaml';
7
8 export interface WorkflowResource extends Resource {
9     kind: ResourceKind.WORKFLOW;
10     name: string;
11     description: string;
12     definition: string;
13 }
14 export interface WorkflowResoruceDefinition {
15     cwlVersion: string;
16     $graph: Array<Workflow | CommandLineTool>;
17 }
18 export interface Workflow {
19     class: 'Workflow';
20     doc?: string;
21     id?: string;
22     inputs: CommandInputParameter[];
23     outputs: any[];
24     steps: any[];
25 }
26
27 export interface CommandLineTool {
28     class: 'CommandLineTool';
29     id: string;
30     inputs: CommandInputParameter[];
31     outputs: any[];
32 }
33
34 export type CommandInputParameter =
35     BooleanCommandInputParameter |
36     IntCommandInputParameter |
37     LongCommandInputParameter |
38     FloatCommandInputParameter |
39     DoubleCommandInputParameter |
40     StringCommandInputParameter |
41     FileCommandInputParameter |
42     DirectoryCommandInputParameter |
43     StringArrayCommandInputParameter |
44     IntArrayCommandInputParameter |
45     FloatArrayCommandInputParameter |
46     FileArrayCommandInputParameter |
47     DirectoryArrayCommandInputParameter |
48     EnumCommandInputParameter;
49
50 export enum CWLType {
51     NULL = 'null',
52     BOOLEAN = 'boolean',
53     INT = 'int',
54     LONG = 'long',
55     FLOAT = 'float',
56     DOUBLE = 'double',
57     STRING = 'string',
58     FILE = 'File',
59     DIRECTORY = 'Directory',
60 }
61
62 export interface CommandInputEnumSchema {
63     symbols: string[];
64     type: 'enum';
65     label?: string;
66     name?: string;
67 }
68
69 export interface CommandInputArraySchema<ItemType> {
70     items: ItemType;
71     type: 'array';
72     label?: string;
73 }
74
75 export interface File {
76     class: CWLType.FILE;
77     location?: string;
78     path?: string;
79     basename?: string;
80 }
81
82 export interface Directory {
83     class: CWLType.DIRECTORY;
84     location?: string;
85     path?: string;
86     basename?: string;
87 }
88
89 export interface GenericCommandInputParameter<Type, Value> {
90     id: string;
91     label?: string;
92     doc?: string | string[];
93     default?: Value;
94     type?: Type | Array<Type | CWLType.NULL>;
95 }
96 export type GenericArrayCommandInputParameter<Type, Value> = GenericCommandInputParameter<CommandInputArraySchema<Type>, Value[]>;
97
98 export type BooleanCommandInputParameter = GenericCommandInputParameter<CWLType.BOOLEAN, boolean>;
99 export type IntCommandInputParameter = GenericCommandInputParameter<CWLType.INT, number>;
100 export type LongCommandInputParameter = GenericCommandInputParameter<CWLType.LONG, number>;
101 export type FloatCommandInputParameter = GenericCommandInputParameter<CWLType.FLOAT, number>;
102 export type DoubleCommandInputParameter = GenericCommandInputParameter<CWLType.DOUBLE, number>;
103 export type StringCommandInputParameter = GenericCommandInputParameter<CWLType.STRING, string>;
104 export type FileCommandInputParameter = GenericCommandInputParameter<CWLType.FILE, File>;
105 export type DirectoryCommandInputParameter = GenericCommandInputParameter<CWLType.DIRECTORY, Directory>;
106 export type EnumCommandInputParameter = GenericCommandInputParameter<CommandInputEnumSchema, string>;
107
108 export type StringArrayCommandInputParameter = GenericArrayCommandInputParameter<CWLType.STRING, string>;
109 export type IntArrayCommandInputParameter = GenericArrayCommandInputParameter<CWLType.INT, string>;
110 export type FloatArrayCommandInputParameter = GenericArrayCommandInputParameter<CWLType.FLOAT, string>;
111 export type FileArrayCommandInputParameter = GenericArrayCommandInputParameter<CWLType.FILE, File>;
112 export type DirectoryArrayCommandInputParameter = GenericArrayCommandInputParameter<CWLType.DIRECTORY, Directory>;
113
114 export type WorkflowInputsData = {
115     [key: string]: boolean | number | string | File | Directory;
116 };
117 export const parseWorkflowDefinition = (workflow: WorkflowResource): WorkflowResoruceDefinition => {
118     const definition = safeLoad(workflow.definition);
119     return definition;
120 };
121
122 export const getWorkflowInputs = (workflowDefinition: WorkflowResoruceDefinition) => {
123     const mainWorkflow = workflowDefinition.$graph.find(item => item.class === 'Workflow' && item.id === '#main');
124     return mainWorkflow
125         ? mainWorkflow.inputs
126         : undefined;
127 };
128 export const getInputLabel = (input: CommandInputParameter) => {
129     return `${input.label || input.id}`;
130 };
131
132 export const isRequiredInput = ({ type }: CommandInputParameter) => {
133     if (type instanceof Array) {
134         for (const t of type) {
135             if (t === CWLType.NULL) {
136                 return false;
137             }
138         }
139     }
140     return true;
141 };
142
143 export const isPrimitiveOfType = (input: GenericCommandInputParameter<any, any>, type: CWLType) =>
144     input.type instanceof Array
145         ? input.type.indexOf(type) > -1
146         : input.type === type;
147
148 export const isArrayOfType = (input: GenericCommandInputParameter<any, any>, type: CWLType) =>
149     typeof input.type === 'object' &&
150         input.type.type === 'array'
151         ? input.type.items === type
152         : false;
153
154 export const stringifyInputType = ({ type }: CommandInputParameter) => {
155     if (typeof type === 'string') {
156         return type;
157     } else if (type instanceof Array) {
158         return type.join(' | ');
159     } else if (typeof type === 'object') {
160         if (type.type === 'enum') {
161             return 'enum';
162         } else if (type.type === 'array') {
163             return `${type.items}[]`;
164         } else {
165             return 'unknown';
166         }
167     } else {
168         return 'unknown';
169     }
170 };