All Downloads are FREE. Search and download functionalities are using the official Maven repository.

core_external_execution.execution.pure Maven / Gradle / Ivy

There is a newer version: 4.57.1
Show newest version
// Copyright 2023 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 meta::core::runtime::*;
import meta::pure::extension::*;

native function meta::legend::execute(planAsJson: String[1], vars: Pair[*]):String[1];

native function meta::legend::execute(f: FunctionDefinition[1], vars: Pair[*], context: meta::pure::runtime::ExecutionContext[1]):String[1];

function meta::legend::execute(f: FunctionDefinition[1], vars: Pair[*], context: meta::pure::runtime::ExecutionContext[1], extensions: Extension[*]):String[1]
{
    // generate plan
    let rawPlan = meta::pure::executionPlan::executionPlan($f, $context, $extensions);

    // bind to available local platform
    let planBindToJava = $rawPlan->meta::pure::executionPlan::platformBinding::localBinding::bindTestPlanToPlatformLocallyWithClasspathExtensions('LegendJava'); // TODO: Remove hardcoded platformId

    // transform to vX_X_X
    let plan = $planBindToJava->meta::protocols::pure::vX_X_X::transformation::fromPureGraph::executionPlan::transformPlan($extensions);

    // serialize to json
    let planAsJson = $plan->meta::json::toJSON(1000, meta::json::config(false, false, true, true));

    // execute plan
    $planAsJson->meta::legend::execute($vars);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy