@finos/legend-graph
Version:
Legend graph and graph manager
61 lines • 3.5 kB
JavaScript
/**
* Copyright (c) 2020-present, Goldman Sachs
*
* 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.
*/
import { assertNonNullable, guaranteeNonEmptyString, UnsupportedOperationError, } from '@finos/legend-shared';
import { RuntimePointer, } from '../../../../../../../graph/metamodel/pure/packageableElements/runtime/Runtime.js';
import { MultiExecutionParameters, RuntimeComponents, SingleExecutionParameters, } from '../../../../../../../graph/metamodel/pure/packageableElements/service/ExecutionEnvironmentInstance.js';
import { V1_EngineRuntime, V1_RuntimePointer, } from '../../../model/packageableElements/runtime/V1_Runtime.js';
import { V1_MultiExecutionParameters, V1_SingleExecutionParameters, } from '../../../model/packageableElements/service/V1_ExecutionEnvironmentInstance.js';
import { V1_buildEngineRuntime } from './helpers/V1_RuntimeBuilderHelper.js';
import { V1_resolveBinding } from './V1_DSL_ExternalFormat_GraphBuilderHelper.js';
const buildExecutionRuntime = (runtime, context) => {
if (runtime instanceof V1_RuntimePointer) {
assertNonNullable(runtime.runtime, `Runtime pointer 'runtime' field is missing`);
return new RuntimePointer(context.resolveRuntime(runtime.runtime));
}
else if (runtime instanceof V1_EngineRuntime) {
return V1_buildEngineRuntime(runtime, context);
}
throw new UnsupportedOperationError();
};
export const V1_buildSingleExecutionParameters = (protocol, context) => {
const element = new SingleExecutionParameters();
element.key = protocol.key;
element.mapping = context.resolveMapping(protocol.mapping);
if (protocol.runtime) {
element.runtime = buildExecutionRuntime(protocol.runtime, context);
}
if (protocol.runtimeComponents) {
const runtimeComponents = new RuntimeComponents();
runtimeComponents.binding = V1_resolveBinding(guaranteeNonEmptyString(protocol.runtimeComponents.binding.path, `Service runtime components 'binding' field is missing or empty`), context);
runtimeComponents.clazz = context.resolveClass(protocol.runtimeComponents.clazz.path);
runtimeComponents.runtime = buildExecutionRuntime(protocol.runtimeComponents.runtime, context);
element.runtimeComponents = runtimeComponents;
}
return element;
};
export const V1_buildExecutionParameters = (protocol, context) => {
if (protocol instanceof V1_SingleExecutionParameters) {
return V1_buildSingleExecutionParameters(protocol, context);
}
else if (protocol instanceof V1_MultiExecutionParameters) {
const element = new MultiExecutionParameters();
element.masterKey = protocol.masterKey;
element.singleExecutionParameters = protocol.singleExecutionParameters.map((e) => V1_buildSingleExecutionParameters(e, context));
return element;
}
throw new UnsupportedOperationError('Unsupported execution environment parameter type');
};
//# sourceMappingURL=V1_ExecutionEnvironmentBuilderHelper.js.map