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

org.graylog2.indexer.results.HighlightParser Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog2.indexer.results;

import com.google.common.collect.ImmutableListMultimap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Multimap;
import com.google.common.collect.Range;

import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

final class HighlightParser {
    private static final String startToken = "";
    private static final String endToken = "";
    private static final Pattern highlightPattern = Pattern.compile(startToken + "(.*?)" + endToken);
    private static final Integer startTokenLength = startToken.length();
    private static final Integer endTokenLength = endToken.length();

    private HighlightParser() {}

    static Multimap> extractHighlightRanges(Map> highlight) {
        if (highlight == null || highlight.isEmpty()) {
            return ImmutableListMultimap.of();
        }
        final ImmutableListMultimap.Builder> builder = ImmutableListMultimap.builder();
        highlight.forEach((key, value) -> extractRange(value).forEach(range -> builder.put(key, range)));
        return builder.build();
    }

    private static Set> extractRange(List highlights) {
        final ImmutableSet.Builder> builder = ImmutableSet.builder();
        highlights.forEach(highlight -> {
            final Matcher matcher = highlightPattern.matcher(highlight);
            Integer count = -1;
            while (matcher.find()) {
                count++;
                final Integer start = matcher.start() - count * (startTokenLength + endTokenLength);
                final Integer end = start + (matcher.end(1) - matcher.start(1));
                builder.add(Range.closed(start, end));
            }
        });
        return builder.build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy