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

com.arcadedb.function.polyglot.PolyglotFunctionLibraryDefinition Maven / Gradle / Ivy

There is a newer version: 24.11.1
Show newest version
package com.arcadedb.function.polyglot;/*
 * Copyright © 2021-present Arcade Data Ltd ([email protected])
 *
 * 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 com.arcadedb.database.Database;
import com.arcadedb.function.FunctionLibraryDefinition;
import com.arcadedb.query.polyglot.GraalPolyglotEngine;
import org.graalvm.polyglot.Engine;

import java.util.*;
import java.util.concurrent.*;

public abstract class PolyglotFunctionLibraryDefinition implements FunctionLibraryDefinition {
  protected final Database                 database;
  protected final String                   libraryName;
  protected final String                   language;
  protected final List             allowedPackages;
  protected final ConcurrentMap functions = new ConcurrentHashMap<>();
  protected       GraalPolyglotEngine      polyglotEngine;

  public interface Callback {
    Object execute(GraalPolyglotEngine polyglotEngine);
  }

  protected PolyglotFunctionLibraryDefinition(final Database database, final String libraryName, final String language, final List allowedPackages) {
    this.database = database;
    this.libraryName = libraryName;
    this.language = language;
    this.allowedPackages = allowedPackages;
    this.polyglotEngine = GraalPolyglotEngine.newBuilder(database, Engine.create()).setLanguage(language).setAllowedPackages(allowedPackages).build();
  }

  public PolyglotFunctionLibraryDefinition registerFunction(final T function) {
    if (functions.putIfAbsent(function.getName(), function) != null)
      throw new IllegalArgumentException("Function '" + function.getName() + "' already defined in library '" + libraryName + "'");

    // REGISTER ALL THE FUNCTIONS UNDER THE NEW ENGINE INSTANCE
    this.polyglotEngine.close();
    this.polyglotEngine = GraalPolyglotEngine.newBuilder(database, Engine.create()).setLanguage(language).setAllowedPackages(allowedPackages).build();
    for (final T f : functions.values())
      f.init(this);

    return this;
  }

  @Override
  public PolyglotFunctionLibraryDefinition unregisterFunction(final String functionName) {
    functions.remove(functionName);
    return this;
  }

  @Override
  public String getName() {
    return libraryName;
  }

  @Override
  public Iterable getFunctions() {
    return Collections.unmodifiableCollection(functions.values());
  }

  @Override
  public boolean hasFunction(final String functionName) {
    return functions.containsKey(functionName);
  }

  @Override
  public T getFunction(final String functionName) {
    final T f = functions.get(functionName);
    if (f == null)
      throw new IllegalArgumentException("Function '" + functionName + "' not defined");
    return f;
  }

  public Object execute(final Callback callback) {
    synchronized (polyglotEngine) {
      return callback.execute(polyglotEngine);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy