当前位置: 首页>>代码示例>>Java>>正文


Java FieldType.marshalSortValue方法代码示例

本文整理汇总了Java中org.apache.solr.schema.FieldType.marshalSortValue方法的典型用法代码示例。如果您正苦于以下问题:Java FieldType.marshalSortValue方法的具体用法?Java FieldType.marshalSortValue怎么用?Java FieldType.marshalSortValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.solr.schema.FieldType的用法示例。


在下文中一共展示了FieldType.marshalSortValue方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: serializeSearchGroup

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
private NamedList serializeSearchGroup(Collection<SearchGroup<BytesRef>> data, Sort groupSort) {
  NamedList<Object[]> result = new NamedList<>();

  for (SearchGroup<BytesRef> searchGroup : data) {
    Object[] convertedSortValues = new Object[searchGroup.sortValues.length];
    for (int i = 0; i < searchGroup.sortValues.length; i++) {
      Object sortValue = searchGroup.sortValues[i];
      SchemaField field = groupSort.getSort()[i].getField() != null ? searcher.getSchema().getFieldOrNull(groupSort.getSort()[i].getField()) : null;
      if (field != null) {
        FieldType fieldType = field.getType();
        if (sortValue != null) {
          sortValue = fieldType.marshalSortValue(sortValue);
        }
      }
      convertedSortValues[i] = sortValue;
    }
    String groupValue = searchGroup.groupValue != null ? searchGroup.groupValue.utf8ToString() : null;
    result.add(groupValue, convertedSortValues);
  }

  return result;
}
 
开发者ID:europeana,项目名称:search,代码行数:23,代码来源:SearchGroupsResultTransformer.java

示例2: serializeSearchGroup

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
private NamedList serializeSearchGroup(Collection<SearchGroup<BytesRef>> data, Sort groupSort) {
  NamedList<Object[]> result = new NamedList<Object[]>();

  for (SearchGroup<BytesRef> searchGroup : data) {
    Object[] convertedSortValues = new Object[searchGroup.sortValues.length];
    for (int i = 0; i < searchGroup.sortValues.length; i++) {
      Object sortValue = searchGroup.sortValues[i];
      SchemaField field = groupSort.getSort()[i].getField() != null ? searcher.getSchema().getFieldOrNull(groupSort.getSort()[i].getField()) : null;
      if (field != null) {
        FieldType fieldType = field.getType();
        if (sortValue != null) {
          sortValue = fieldType.marshalSortValue(sortValue);
        }
      }
      convertedSortValues[i] = sortValue;
    }
    String groupValue = searchGroup.groupValue != null ? searchGroup.groupValue.utf8ToString() : null;
    result.add(groupValue, convertedSortValues);
  }

  return result;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:23,代码来源:SearchGroupsResultTransformer.java

示例3: getSerializedTotem

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
/**
 * Generates a Base64 encoded serialized representation of the sort values 
 * encapsulated by this object, for use in cursor requests.
 *
 * @see #parseSerializedTotem
 */
public String getSerializedTotem() {
  if (null == this.values) {
    return CURSOR_MARK_START;
  }

  final List<SchemaField> schemaFields = sortSpec.getSchemaFields();
  final ArrayList<Object> marshalledValues = new ArrayList<>(values.size()+1);
  for (int i = 0; i < schemaFields.size(); i++) {
    SchemaField fld = schemaFields.get(i);
    Object safeValue = values.get(i);
    if (null != fld) {
      FieldType type = fld.getType();
      safeValue = type.marshalSortValue(safeValue);
    }
    marshalledValues.add(safeValue);
  }

  // TODO: we could also encode info about the SortSpec for error checking:
  // the type/name/dir from the SortFields (or a hashCode to act as a checksum) 
  // could help provide more validation beyond just the number of clauses.

  try {
    ByteArrayOutputStream out = new ByteArrayOutputStream(256);
    try {
      codec.marshal(marshalledValues, out);
      byte[] rawData = out.toByteArray();
      return Base64.byteArrayToBase64(rawData, 0, rawData.length);
    } finally {
      out.close();
    }
  } catch (Exception ex) {
    throw new SolrException(ErrorCode.SERVER_ERROR,
                            "Unable to format search after totem", ex);
    
  }
}
 
开发者ID:europeana,项目名称:search,代码行数:43,代码来源:CursorMark.java

示例4: getSerializedTotem

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
/**
 * Generates a Base64 encoded serialized representation of the sort values 
 * encapsulated by this object, for use in cursor requests.
 *
 * @see #parseSerializedTotem
 */
public String getSerializedTotem() {
  if (null == this.values) {
    return CURSOR_MARK_START;
  }

  final List<SchemaField> schemaFields = sortSpec.getSchemaFields();
  final ArrayList<Object> marshalledValues = new ArrayList<Object>(values.size()+1);
  for (int i = 0; i < schemaFields.size(); i++) {
    SchemaField fld = schemaFields.get(i);
    Object safeValue = values.get(i);
    if (null != fld) {
      FieldType type = fld.getType();
      safeValue = type.marshalSortValue(safeValue);
    }
    marshalledValues.add(safeValue);
  }

  // TODO: we could also encode info about the SortSpec for error checking:
  // the type/name/dir from the SortFields (or a hashCode to act as a checksum) 
  // could help provide more validation beyond just the number of clauses.

  try {
    ByteArrayOutputStream out = new ByteArrayOutputStream(256);
    try {
      codec.marshal(marshalledValues, out);
      byte[] rawData = out.toByteArray();
      return Base64.byteArrayToBase64(rawData, 0, rawData.length);
    } finally {
      out.close();
    }
  } catch (Exception ex) {
    throw new SolrException(ErrorCode.SERVER_ERROR,
                            "Unable to format search after totem", ex);
    
  }
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:43,代码来源:CursorMark.java

示例5: serializeTopGroups

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
protected NamedList serializeTopGroups(TopGroups<BytesRef> data, SchemaField groupField) throws IOException {
  NamedList<Object> result = new NamedList<>();
  result.add("totalGroupedHitCount", data.totalGroupedHitCount);
  result.add("totalHitCount", data.totalHitCount);
  if (data.totalGroupCount != null) {
    result.add("totalGroupCount", data.totalGroupCount);
  }
  CharsRef spare = new CharsRef();

  final IndexSchema schema = rb.req.getSearcher().getSchema();
  SchemaField uniqueField = schema.getUniqueKeyField();
  for (GroupDocs<BytesRef> searchGroup : data.groups) {
    NamedList<Object> groupResult = new NamedList<>();
    groupResult.add("totalHits", searchGroup.totalHits);
    if (!Float.isNaN(searchGroup.maxScore)) {
      groupResult.add("maxScore", searchGroup.maxScore);
    }

    List<NamedList<Object>> documents = new ArrayList<>();
    for (int i = 0; i < searchGroup.scoreDocs.length; i++) {
      NamedList<Object> document = new NamedList<>();
      documents.add(document);

      Document doc = retrieveDocument(uniqueField, searchGroup.scoreDocs[i].doc);
      document.add("id", uniqueField.getType().toExternal(doc.getField(uniqueField.getName())));
      if (!Float.isNaN(searchGroup.scoreDocs[i].score))  {
        document.add("score", searchGroup.scoreDocs[i].score);
      }
      if (!(searchGroup.scoreDocs[i] instanceof FieldDoc)) {
        continue;
      }

      FieldDoc fieldDoc = (FieldDoc) searchGroup.scoreDocs[i];
      Object[] convertedSortValues  = new Object[fieldDoc.fields.length];
      for (int j = 0; j < fieldDoc.fields.length; j++) {
        Object sortValue  = fieldDoc.fields[j];
        Sort sortWithinGroup = rb.getGroupingSpec().getSortWithinGroup();
        SchemaField field = sortWithinGroup.getSort()[j].getField() != null ? schema.getFieldOrNull(sortWithinGroup.getSort()[j].getField()) : null;
        if (field != null) {
          FieldType fieldType = field.getType();
          if (sortValue != null) {
            sortValue = fieldType.marshalSortValue(sortValue);
          }
        }
        convertedSortValues[j] = sortValue;
      }
      document.add("sortValues", convertedSortValues);
    }
    groupResult.add("documents", documents);
    String groupValue = searchGroup.groupValue != null ? groupField.getType().indexedToReadable(searchGroup.groupValue.utf8ToString()): null;
    result.add(groupValue, groupResult);
  }

  return result;
}
 
开发者ID:europeana,项目名称:search,代码行数:56,代码来源:TopGroupsResultTransformer.java

示例6: serializeTopDocs

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
protected NamedList serializeTopDocs(QueryCommandResult result) throws IOException {
  NamedList<Object> queryResult = new NamedList<>();
  queryResult.add("matches", result.getMatches());
  queryResult.add("totalHits", result.getTopDocs().totalHits);
  if (rb.getGroupingSpec().isNeedScore()) {
    queryResult.add("maxScore", result.getTopDocs().getMaxScore());
  }
  List<NamedList> documents = new ArrayList<>();
  queryResult.add("documents", documents);

  final IndexSchema schema = rb.req.getSearcher().getSchema();
  SchemaField uniqueField = schema.getUniqueKeyField();
  CharsRef spare = new CharsRef();
  for (ScoreDoc scoreDoc : result.getTopDocs().scoreDocs) {
    NamedList<Object> document = new NamedList<>();
    documents.add(document);

    Document doc = retrieveDocument(uniqueField, scoreDoc.doc);
    document.add("id", uniqueField.getType().toExternal(doc.getField(uniqueField.getName())));
    if (rb.getGroupingSpec().isNeedScore())  {
      document.add("score", scoreDoc.score);
    }
    if (!FieldDoc.class.isInstance(scoreDoc)) {
      continue;
    }

    FieldDoc fieldDoc = (FieldDoc) scoreDoc;
    Object[] convertedSortValues  = new Object[fieldDoc.fields.length];
    for (int j = 0; j < fieldDoc.fields.length; j++) {
      Object sortValue  = fieldDoc.fields[j];
      Sort groupSort = rb.getGroupingSpec().getGroupSort();
      SchemaField field = groupSort.getSort()[j].getField() != null 
                        ? schema.getFieldOrNull(groupSort.getSort()[j].getField()) : null;
      if (field != null) {
        FieldType fieldType = field.getType();
        if (sortValue != null) {
          sortValue = fieldType.marshalSortValue(sortValue);
        }
      }
      convertedSortValues[j] = sortValue;
    }
    document.add("sortValues", convertedSortValues);
  }

  return queryResult;
}
 
开发者ID:europeana,项目名称:search,代码行数:47,代码来源:TopGroupsResultTransformer.java

示例7: serializeTopGroups

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
protected NamedList serializeTopGroups(TopGroups<BytesRef> data, SchemaField groupField) throws IOException {
  NamedList<Object> result = new NamedList<Object>();
  result.add("totalGroupedHitCount", data.totalGroupedHitCount);
  result.add("totalHitCount", data.totalHitCount);
  if (data.totalGroupCount != null) {
    result.add("totalGroupCount", data.totalGroupCount);
  }
  CharsRef spare = new CharsRef();

  final IndexSchema schema = rb.req.getSearcher().getSchema();
  SchemaField uniqueField = schema.getUniqueKeyField();
  for (GroupDocs<BytesRef> searchGroup : data.groups) {
    NamedList<Object> groupResult = new NamedList<Object>();
    groupResult.add("totalHits", searchGroup.totalHits);
    if (!Float.isNaN(searchGroup.maxScore)) {
      groupResult.add("maxScore", searchGroup.maxScore);
    }

    List<NamedList<Object>> documents = new ArrayList<NamedList<Object>>();
    for (int i = 0; i < searchGroup.scoreDocs.length; i++) {
      NamedList<Object> document = new NamedList<Object>();
      documents.add(document);

      Document doc = retrieveDocument(uniqueField, searchGroup.scoreDocs[i].doc);
      document.add("id", uniqueField.getType().toExternal(doc.getField(uniqueField.getName())));
      if (!Float.isNaN(searchGroup.scoreDocs[i].score))  {
        document.add("score", searchGroup.scoreDocs[i].score);
      }
      if (!(searchGroup.scoreDocs[i] instanceof FieldDoc)) {
        continue;
      }

      FieldDoc fieldDoc = (FieldDoc) searchGroup.scoreDocs[i];
      Object[] convertedSortValues  = new Object[fieldDoc.fields.length];
      for (int j = 0; j < fieldDoc.fields.length; j++) {
        Object sortValue  = fieldDoc.fields[j];
        Sort sortWithinGroup = rb.getGroupingSpec().getSortWithinGroup();
        SchemaField field = sortWithinGroup.getSort()[j].getField() != null ? schema.getFieldOrNull(sortWithinGroup.getSort()[j].getField()) : null;
        if (field != null) {
          FieldType fieldType = field.getType();
          if (sortValue != null) {
            sortValue = fieldType.marshalSortValue(sortValue);
          }
        }
        convertedSortValues[j] = sortValue;
      }
      document.add("sortValues", convertedSortValues);
    }
    groupResult.add("documents", documents);
    String groupValue = searchGroup.groupValue != null ? groupField.getType().indexedToReadable(searchGroup.groupValue.utf8ToString()): null;
    result.add(groupValue, groupResult);
  }

  return result;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:56,代码来源:TopGroupsResultTransformer.java

示例8: serializeTopDocs

import org.apache.solr.schema.FieldType; //导入方法依赖的package包/类
protected NamedList serializeTopDocs(QueryCommandResult result) throws IOException {
  NamedList<Object> queryResult = new NamedList<Object>();
  queryResult.add("matches", result.getMatches());
  queryResult.add("totalHits", result.getTopDocs().totalHits);
  if (rb.getGroupingSpec().isNeedScore()) {
    queryResult.add("maxScore", result.getTopDocs().getMaxScore());
  }
  List<NamedList> documents = new ArrayList<NamedList>();
  queryResult.add("documents", documents);

  final IndexSchema schema = rb.req.getSearcher().getSchema();
  SchemaField uniqueField = schema.getUniqueKeyField();
  CharsRef spare = new CharsRef();
  for (ScoreDoc scoreDoc : result.getTopDocs().scoreDocs) {
    NamedList<Object> document = new NamedList<Object>();
    documents.add(document);

    Document doc = retrieveDocument(uniqueField, scoreDoc.doc);
    document.add("id", uniqueField.getType().toExternal(doc.getField(uniqueField.getName())));
    if (rb.getGroupingSpec().isNeedScore())  {
      document.add("score", scoreDoc.score);
    }
    if (!FieldDoc.class.isInstance(scoreDoc)) {
      continue;
    }

    FieldDoc fieldDoc = (FieldDoc) scoreDoc;
    Object[] convertedSortValues  = new Object[fieldDoc.fields.length];
    for (int j = 0; j < fieldDoc.fields.length; j++) {
      Object sortValue  = fieldDoc.fields[j];
      Sort groupSort = rb.getGroupingSpec().getGroupSort();
      SchemaField field = groupSort.getSort()[j].getField() != null 
                        ? schema.getFieldOrNull(groupSort.getSort()[j].getField()) : null;
      if (field != null) {
        FieldType fieldType = field.getType();
        if (sortValue != null) {
          sortValue = fieldType.marshalSortValue(sortValue);
        }
      }
      convertedSortValues[j] = sortValue;
    }
    document.add("sortValues", convertedSortValues);
  }

  return queryResult;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:47,代码来源:TopGroupsResultTransformer.java


注:本文中的org.apache.solr.schema.FieldType.marshalSortValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。