jetbrick.tools.chm.reader.AnchorNameManager.java Source code

Java tutorial

Introduction

Here is the source code for jetbrick.tools.chm.reader.AnchorNameManager.java

Source

/**
 * javadoc.chm
 * http://subchen.github.io/javadoc.chm/
 * 
 * Copyright 2010-2014 Guoqiang Chen. All rights reserved.
 * Email: subchen@gmail.com
 * 
 * Licensed 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 jetbrick.tools.chm.reader;

import java.io.File;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import jetbrick.tools.chm.Config;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringUtils;

public class AnchorNameManager {

    public static void addAnchor(File file, String encoding) throws IOException {
        String html = FileUtils.readFileToString(file, encoding);
        html = html.replace('$', '\uFFE5');

        Pattern p = Config.style.getAnchorNameRegex();
        Matcher m = p.matcher(html);

        int findCount = 0;
        StringBuffer sb = new StringBuffer();
        while (m.find()) {
            findCount++;
            String anchor = m.group(1);
            // String oldAnchor = m.group();
            String oldAnchor = "<A HH=\"1\" NAME=\"" + anchor + "\">";
            String newAnchor = "<A HH=\"1\" NAME=\"" + getNewAnchorName(anchor) + "\"></A>";
            m.appendReplacement(sb, newAnchor + oldAnchor);
        }
        m.appendTail(sb);

        System.out.println("addAnchor(" + findCount + ") : " + file);

        if (findCount > 0) {
            html = sb.toString().replace('\uFFE5', '$');
            FileUtils.writeStringToFile(file, html, encoding);
        }
        html = null;
    }

    public static String replaceAnchor(String url) {
        String anchor = StringUtils.substringAfter(url, "#");
        if ("".equals(anchor))
            return url;
        return StringUtils.substringBefore(url, "#") + "#" + getNewAnchorName(anchor);
    }

    public static String getNewAnchorName(String anchor) {
        return "HH_" + Math.abs(anchor.hashCode());
    }
}