gobblin.ingestion.google.webmaster.UrlTrie.java Source code

Java tutorial

Introduction

Here is the source code for gobblin.ingestion.google.webmaster.UrlTrie.java

Source

/*
 * 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 gobblin.ingestion.google.webmaster;

import java.util.Collection;

import org.apache.commons.lang3.tuple.Pair;

public class UrlTrie {
    private final UrlTrieNode _root;
    private final String _prefix;

    /**
     * @param rootPage use the longest common prefix as your _root page.
     *                 e.g. if your pages are "www.linkedin.com/in/", "www.linkedin.com/jobs/", "www.linkedin.com/groups/"
     *                 The longest common prefix is "www.linkedin.com/", and it will be your _root page.
     *                 And the last "/" will be used as a TrieRoot.
     * @param pages
     */
    public UrlTrie(String rootPage, Collection<String> pages) {
        Pair<String, UrlTrieNode> defaults = getPrefixAndDefaultRoot(rootPage);
        _prefix = defaults.getLeft();
        _root = defaults.getRight();
        for (String page : pages) {
            add(page);
        }
    }

    /**
     * prefix is different from RootPage that the RootPage has an extra char in the end. And this last char will be used to construct the root node of the trie.
     */
    public UrlTrie(String rootPage, UrlTrieNode root) {
        Pair<String, UrlTrieNode> defaults = getPrefixAndDefaultRoot(rootPage);
        _prefix = defaults.getLeft();
        _root = root;
    }

    private Pair<String, UrlTrieNode> getPrefixAndDefaultRoot(String rootPage) {
        if (rootPage == null || rootPage.isEmpty()) {
            return Pair.of(null, new UrlTrieNode(null));
        } else {
            String prefix = rootPage.substring(0, rootPage.length() - 1);
            Character lastChar = rootPage.charAt(rootPage.length() - 1);
            return Pair.of(prefix, new UrlTrieNode(lastChar));
        }
    }

    public void add(String page) {
        if (_prefix == null || _prefix.isEmpty()) {
            _root.add(page);
        } else {
            if (!page.startsWith(_prefix)) {
                throw new IllegalArgumentException(
                        String.format("Found a page '%s' not starting with the root page '%s'", page, _prefix));
            }
            _root.add(page.substring(_prefix.length() + 1)); //1 comes from the last char in root.
        }
    }

    public UrlTrieNode getChild(String path) {
        return _root.getChild(path);
    }

    public UrlTrieNode getRoot() {
        return _root;
    }

    public String getPrefix() {
        return _prefix;
    }
}