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

org.apache.solr.schema.AbstractSpatialPrefixTreeFieldType Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.solr.schema;

import java.io.IOException;
import java.lang.invoke.MethodHandles;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.index.IndexOptions;
import org.apache.lucene.spatial.prefix.PrefixTreeStrategy;
import org.apache.lucene.spatial.prefix.tree.SpatialPrefixTree;
import org.apache.lucene.spatial.prefix.tree.SpatialPrefixTreeFactory;
import org.apache.lucene.spatial.query.SpatialArgsParser;
import org.apache.solr.common.SolrException;
import org.apache.solr.common.util.StrUtils;
import org.apache.solr.util.MapListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @see PrefixTreeStrategy
 * @lucene.experimental
 */
public abstract class AbstractSpatialPrefixTreeFieldType
    extends AbstractSpatialFieldType {

  /**
   * @see
   *     org.apache.lucene.spatial.prefix.RecursivePrefixTreeStrategy#setDefaultFieldValuesArrayLen(int)
   */
  public static final String DEFAULT_FIELD_VALUES_ARRAY_LEN = "defaultFieldValuesArrayLen";

  /*
   * A list of the properties hardcoded within PrefixTreeStrategy.FIELD_TYPE.
   *
   * Used primarily for validating that user-provided configurations don't disagree with these invariants.  Intentionally
   * left out of this map is 'tokenized' which is hardcoded to 'true' in PrefixTreeStrategy.FIELD_TYPE, but triggers
   * unwanted tokenization logic in Solr query parsing.
   *
   * @see PrefixTreeStrategy#FIELD_TYPE
   */
  public static final Map FIELD_TYPE_INVARIANTS = new HashMap<>();

  static {
    FIELD_TYPE_INVARIANTS.put("omitNorms", "true");
    FIELD_TYPE_INVARIANTS.put("termPositions", "false");
    FIELD_TYPE_INVARIANTS.put("termOffsets", "false");
    FIELD_TYPE_INVARIANTS.put("omitTermFreqAndPositions", "true");
    FIELD_TYPE_INVARIANTS.put("omitPositions", "true");
  }

  protected SpatialPrefixTree grid;
  private Double distErrPct;
  private Integer defaultFieldValuesArrayLen;

  private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

  @Override
  public void setArgs(IndexSchema schema, Map args) {
    for (Map.Entry entry : FIELD_TYPE_INVARIANTS.entrySet()) {
      final String key = entry.getKey();
      final String hardcodedValue = entry.getValue();
      final String userConfiguredValue = args.remove(key);

      if (hardcodedValue.equals(userConfiguredValue)) {
        // If this is coming from the schema API, can we pass it back to the user without causing a
        // failure?
        log.warn(
            "FieldType {} does not allow {} to be specified in schema, hardcoded behavior is {}={}",
            getClass().getSimpleName(),
            key,
            key,
            hardcodedValue);
      } else if (userConfiguredValue != null) {
        final String message =
            String.format(
                Locale.ROOT,
                "FieldType %s is incompatible with %s=%s; hardcoded behavior is %s=%s. Remove specification in schema",
                getClass().getSimpleName(),
                key,
                userConfiguredValue,
                key,
                hardcodedValue);
        throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, message);
      }
    }
    super.setArgs(schema, args);
  }

  @Override
  protected void init(IndexSchema schema, Map args) {
    super.init(schema, args);

    // set STORE_ property flags to be always false
    properties &= ~(STORE_TERMPOSITIONS | STORE_TERMOFFSETS);
    // set OMIT_ property flags to be always true
    properties |= (OMIT_TF_POSITIONS | OMIT_NORMS | OMIT_POSITIONS);

    args.putIfAbsent(
        SpatialPrefixTreeFactory.VERSION, schema.getDefaultLuceneMatchVersion().toString());

    // Convert the maxDistErr to degrees (based on distanceUnits) since Lucene spatial layer depends
    // on degrees
    if (args.containsKey(SpatialPrefixTreeFactory.MAX_DIST_ERR)) {
      double maxDistErrOriginal =
          Double.parseDouble(args.get(SpatialPrefixTreeFactory.MAX_DIST_ERR));
      args.put(
          SpatialPrefixTreeFactory.MAX_DIST_ERR,
          Double.toString(maxDistErrOriginal * distanceUnits.multiplierFromThisUnitToDegrees()));
    }

    // Solr expects us to remove the parameters we've used.
    MapListener argsWrap = new MapListener<>(args);
    grid =
        SpatialPrefixTreeFactory.makeSPT(
            argsWrap, schema.getResourceLoader().getClassLoader(), ctx);
    args.keySet().removeAll(argsWrap.getSeenKeys());

    String v = args.remove(SpatialArgsParser.DIST_ERR_PCT);
    if (v != null) distErrPct = Double.valueOf(v);

    v = args.remove(DEFAULT_FIELD_VALUES_ARRAY_LEN);
    if (v != null) defaultFieldValuesArrayLen = Integer.valueOf(v);
  }

  /**
   * @see #FIELD_TYPE_INVARIANTS
   */
  @Override
  public void checkSchemaField(final SchemaField field) {
    super.checkSchemaField(field);

    if (!field.omitNorms()) {
      final String message =
          String.format(
              Locale.ROOT,
              "%s of type %s is incompatible with omitNorms=false; hardcoded "
                  + "behavior is omitNorms=true.  Remove specification in schema",
              field.getName(),
              getClass().getSimpleName());
      throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, message);
    }
    if (field.indexOptions() != IndexOptions.DOCS) {
      final String message =
          String.format(
              Locale.ROOT,
              "%s of type %s is incompatible with termFreq or position storage.  Remove specification in schema.",
              field.getName(),
              getClass().getSimpleName());
      throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, message);
    }
  }

  /**
   * This analyzer is not actually used for indexing. It is implemented here so that the analysis UI
   * will show reasonable tokens.
   */
  @Override
  public Analyzer getIndexAnalyzer() {
    return new Analyzer() {
      @Override
      protected TokenStreamComponents createComponents(String fieldName) {
        PrefixTreeStrategy s = newSpatialStrategy(fieldName == null ? getTypeName() : fieldName);
        PrefixTreeStrategy.ShapeTokenStream ts = s.tokenStream();
        return new TokenStreamComponents(
            r -> {
              try {
                ts.setShape(parseShape(StrUtils.stringFromReader(r)));
              } catch (IOException e) {
                throw new RuntimeException(e);
              }
            },
            ts);
      }
    };
  }

  @Override
  public Analyzer getQueryAnalyzer() {
    return getIndexAnalyzer();
  }

  @Override
  protected T newSpatialStrategy(String fieldName) {
    T strat = newPrefixTreeStrategy(fieldName);

    if (distErrPct != null) strat.setDistErrPct(distErrPct);
    if (defaultFieldValuesArrayLen != null)
      strat.setDefaultFieldValuesArrayLen(defaultFieldValuesArrayLen);

    // TODO output maxDetailKm
    if (log.isInfoEnabled()) {
      log.info("{} strat: {} maxLevels: {}", this, strat, grid.getMaxLevels());
    }
    return strat;
  }

  protected abstract T newPrefixTreeStrategy(String fieldName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy