FunctionLibrary.java

  1. /*
  2.  * Portions of this software was developed by employees of the National Institute
  3.  * of Standards and Technology (NIST), an agency of the Federal Government and is
  4.  * being made available as a public service. Pursuant to title 17 United States
  5.  * Code Section 105, works of NIST employees are not subject to copyright
  6.  * protection in the United States. This software may be subject to foreign
  7.  * copyright. Permission in the United States and in foreign countries, to the
  8.  * extent that NIST may hold copyright, to use, copy, modify, create derivative
  9.  * works, and distribute this software and its documentation without fee is hereby
  10.  * granted on a non-exclusive basis, provided that this notice and disclaimer
  11.  * of warranty appears in all copies.
  12.  *
  13.  * THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER
  14.  * EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY
  15.  * THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF
  16.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM
  17.  * INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE
  18.  * SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE.  IN NO EVENT
  19.  * SHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT,
  20.  * INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM,
  21.  * OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY,
  22.  * CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR
  23.  * PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT
  24.  * OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER.
  25.  */

  26. package gov.nist.secauto.metaschema.core.metapath.function;

  27. import gov.nist.secauto.metaschema.core.metapath.IExpression;
  28. import gov.nist.secauto.metaschema.core.util.ObjectUtils;

  29. import java.util.HashMap;
  30. import java.util.List;
  31. import java.util.Map;
  32. import java.util.stream.Stream;

  33. import javax.xml.namespace.QName;

  34. import edu.umd.cs.findbugs.annotations.NonNull;
  35. import edu.umd.cs.findbugs.annotations.Nullable;

  36. public class FunctionLibrary implements IFunctionLibrary {

  37.   @NonNull
  38.   private final Map<QName, NamedFunctionSet> libraryByQName = new HashMap<>(); // NOPMD - intentional
  39.   @NonNull
  40.   private final Map<String, NamedFunctionSet> libraryByName = new HashMap<>(); // NOPMD - intentional

  41.   /**
  42.    * Register the provided function signature.
  43.    *
  44.    * @param function
  45.    *          the function signature to register
  46.    * @throws IllegalArgumentException
  47.    *           if the provided function has the same arity as a previously
  48.    *           registered function with the same name
  49.    */
  50.   public void registerFunction(@NonNull IFunction function) {
  51.     registerFunctionByQName(function);
  52.     registerFunctionByName(function);
  53.   }

  54.   protected void registerFunctionByQName(@NonNull IFunction function) {
  55.     QName qname = function.getQName();
  56.     IFunction duplicate;
  57.     synchronized (this) {
  58.       NamedFunctionSet functions = libraryByQName.get(qname);
  59.       if (functions == null) {
  60.         functions = new NamedFunctionSet();
  61.         libraryByQName.put(qname, functions);
  62.       }
  63.       duplicate = functions.addFunction(function);
  64.     }
  65.     if (duplicate != null) {
  66.       throw new IllegalArgumentException(String.format("Duplicate functions with same arity: %s shadows %s",
  67.           duplicate.toSignature(), function.toSignature()));
  68.     }
  69.   }

  70.   protected void registerFunctionByName(@NonNull IFunction function) {
  71.     String name = function.getName();
  72.     synchronized (this) {
  73.       NamedFunctionSet functions = libraryByName.get(name);
  74.       if (functions == null) {
  75.         functions = new NamedFunctionSet();
  76.         libraryByName.put(name, functions);
  77.       }
  78.       // replace duplicates
  79.       functions.addFunction(function);
  80.     }
  81.   }

  82.   @Override
  83.   public Stream<IFunction> getFunctionsAsStream() {
  84.     synchronized (this) {
  85.       return ObjectUtils.notNull(
  86.           libraryByQName.values().stream().flatMap(set -> {
  87.             return set.getFunctionsAsStream();
  88.           }));
  89.     }
  90.   }

  91.   @Override
  92.   public IFunction getFunction(@NonNull String name, @NonNull List<IExpression> args) {
  93.     IFunction retval;
  94.     synchronized (this) {
  95.       NamedFunctionSet functions = libraryByName.get(name);
  96.       retval = functions == null ? null : functions.getFunctionWithArity(args.size());
  97.     }
  98.     return retval;
  99.   }

  100.   @Override
  101.   public IFunction getFunction(@NonNull QName name, @NonNull List<IExpression> args) {
  102.     IFunction retval;
  103.     synchronized (this) {
  104.       NamedFunctionSet functions = libraryByQName.get(name);
  105.       retval = functions == null ? null : functions.getFunctionWithArity(args.size());
  106.     }
  107.     return retval;
  108.   }

  109.   private static class NamedFunctionSet {
  110.     private final Map<Integer, IFunction> arityToFunctionMap;

  111.     public NamedFunctionSet() {
  112.       this.arityToFunctionMap = new HashMap<>();
  113.     }

  114.     @SuppressWarnings("null")
  115.     @NonNull
  116.     public Stream<IFunction> getFunctionsAsStream() {
  117.       return arityToFunctionMap.values().stream();
  118.     }

  119.     @Nullable
  120.     public IFunction getFunctionWithArity(int arity) {
  121.       return arityToFunctionMap.get(arity);
  122.     }

  123.     @Nullable
  124.     public IFunction addFunction(@NonNull IFunction function) {
  125.       return arityToFunctionMap.put(function.arity(), function);
  126.     }
  127.   }
  128. }