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

de.mediathekview.mlib.tool.MSStringBuilder Maven / Gradle / Ivy

Go to download

A central library with tools and utils for the MediathekView Client and the MediathekView Server

There is a newer version: 3.0.2
Show newest version
/*
 * MediathekView
 * Copyright (C) 2008 W. Xaver
 * W.Xaver[at]googlemail.com
 * http://zdfmediathk.sourceforge.net/
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see .
 */
package de.mediathekview.mlib.tool;

import java.util.ArrayList;

public class MSStringBuilder {

    private final StringBuilder cont;

    public MSStringBuilder() {
        cont = new StringBuilder();
    }

    public MSStringBuilder(int capacity) {
        cont = new StringBuilder(capacity);
    }

    //=====================================================
    //StringBuilder Kram
    public String substring(int start) {
        return cont.substring(start);
    }

    public int lastIndexOf(String of) {
        return cont.lastIndexOf(of);
    }

    public int length() {
        return cont.length();
    }

    public String substring(int start, int end) {
        return cont.substring(start, end);
    }

    public synchronized void append(char[] str) {
        cont.append(str);
    }

    public synchronized void append(char[] str, int offset, int len) {
        cont.append(str, offset, len);
    }

    public synchronized void setLength(int newLength) {
        cont.setLength(newLength);
    }

    public synchronized int indexOf(String str, int fromIndex) {
        return cont.indexOf(str, fromIndex);
    }

    public synchronized int indexOf(String str) {
        return cont.indexOf(str);
    }

    //=====================================================
    //=====================================================
    //=====================================================
    public String extract(String musterStart, String musterEnde) {
        return extract(musterStart, "", musterEnde, 0, 0, "");
    }

    public String extract(String musterStart, String musterEnde, int abPos) {
        return extract(musterStart, "", musterEnde, abPos, 0, "");
    }

    public String extract(String musterStart, String musterEnde, int abPos, int bisPos) {
        return extract(musterStart, "", musterEnde, abPos, bisPos, "");
    }

    public String extract(String musterStart1, String musterStart2, String musterEnde) {
        return extract(musterStart1, musterStart2, musterEnde, 0, 0, "");
    }

    public String extract(String musterStart1, String musterStart2, String musterEnde, String addUrl) {
        return extract(musterStart1, musterStart2, musterEnde, 0, 0, addUrl);
    }

    public String extract(String musterStart1, String musterStart2, String musterEnde, int abPos, int bisPos, String addUrl) {
        int pos1, pos2;
        if ((pos1 = cont.indexOf(musterStart1, abPos)) == -1) {
            return "";
        }
        pos1 += musterStart1.length();
        if (!musterStart2.isEmpty() && (pos1 = cont.indexOf(musterStart2, pos1)) == -1) {
            return "";
        }
        pos1 += musterStart2.length();
        if ((pos2 = cont.indexOf(musterEnde, pos1)) == -1) {
            return "";
        }
        if (bisPos > 0 && pos2 > bisPos) {
            return "";
        }
        String ret = cont.substring(pos1, pos2);
        if (!ret.isEmpty()) {
            // damit nicht nur! addUrl zurückkommt
            return addUrl + ret;
        }
        return "";
    }

    public void extractList(String musterStart, String musterEnde, ArrayList result) {
        extractList("", "", musterStart, "", musterEnde, "", result);
    }

    public void extractList(String musterStart1, String musterStart2, String musterEnde, ArrayList result) {
        extractList("", "", musterStart1, musterStart2, musterEnde, "", result);
    }

    public void extractList(String abMuster, String bisMuster, String musterStart, String musterEnde, String addUrl, ArrayList result) {
        extractList(abMuster, bisMuster, musterStart, "", musterEnde, addUrl, result);
    }

    public void extractList(String abMuster, String bisMuster, String musterStart1, String musterStart2, String musterEnde, String addUrl, ArrayList result) {
        int pos1, pos2, stopPos, count = 0;
        String str;
        pos1 = abMuster.isEmpty() ? 0 : cont.indexOf(abMuster);
        if (pos1 == -1) {
            return;
        }

        stopPos = bisMuster.isEmpty() ? -1 : cont.indexOf(bisMuster, pos1);

        while ((pos1 = cont.indexOf(musterStart1, pos1)) != -1) {
            ++count;
            if (count > 10_000) {
                DbgMsg.print("Achtung");
                break;
            }
            pos1 += musterStart1.length();

            if (!musterStart2.isEmpty()) {
                if ((pos2 = cont.indexOf(musterStart2, pos1)) == -1) {
                    continue;
                }
                pos1 = pos2 + musterStart2.length();
            }

            if ((pos2 = cont.indexOf(musterEnde, pos1)) == -1) {
                continue;
            }
            if (stopPos > 0 && pos2 > stopPos) {
                continue;
            }

            if ((str = cont.substring(pos1, pos2)).isEmpty()) {
                continue;
            }

            str = addUrl + str;
            addStr(str, result);
        }
    }

    private void addStr(String str, ArrayList result) {
        if (!result.contains(str)) {
            result.add(str);
            if (result.size() > 1000) {
                DbgMsg.print("Achtung");
            }
        }
    }

    public void extractList(int ab, int bis, String musterStart1, String musterStart2, String musterEnde, String addUrl, ArrayList result) {
        int pos1, pos2, stopPos, count = 0;
        String str;
        pos1 = ab;
        stopPos = bis;
        if (pos1 == -1) {
            return;
        }

        while ((pos1 = cont.indexOf(musterStart1, pos1)) != -1) {
            ++count;
            if (count > 10_000) {
                DbgMsg.print("Achtung");
                break;
            }
            pos1 += musterStart1.length();

            if (!musterStart2.isEmpty()) {
                if ((pos2 = cont.indexOf(musterStart2, pos1)) == -1) {
                    continue;
                }
                pos1 = pos2 + musterStart2.length();
            }

            if ((pos2 = cont.indexOf(musterEnde, pos1)) == -1) {
                continue;
            }
            if (stopPos > 0 && pos2 > stopPos) {
                continue;
            }

            if ((str = cont.substring(pos1, pos2)).isEmpty()) {
                continue;
            }

            str = addUrl + str;
            if (!result.contains(str)) {
                result.add(str);
                if (result.size() > 1000) {
                    DbgMsg.print("Achtung");
                }
            }

        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy