You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
4.0 KiB
115 lines
4.0 KiB
14 years ago
|
// YMarkUtil.java
|
||
|
// (C) 2011 by Stefan Förster, sof@gmx.de, Norderstedt, Germany
|
||
|
// first published 2010 on http://yacy.net
|
||
|
//
|
||
|
// This is a part of YaCy, a peer-to-peer based web search engine
|
||
|
//
|
||
|
// $LastChangedDate: 2011-03-09 13:50:39 +0100 (Mi, 09 Mrz 2011) $
|
||
|
// $LastChangedRevision: 7574 $
|
||
|
// $LastChangedBy: apfelmaennchen $
|
||
|
//
|
||
|
// LICENSE
|
||
|
//
|
||
|
// 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 2 of the License, or
|
||
|
// (at your option) 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, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
|
||
|
package de.anomic.data.ymark;
|
||
|
|
||
|
import java.net.MalformedURLException;
|
||
|
import java.util.HashSet;
|
||
|
import java.util.Iterator;
|
||
|
|
||
|
import net.yacy.kelondro.data.meta.DigestURI;
|
||
|
import net.yacy.kelondro.data.word.Word;
|
||
|
|
||
|
public class YMarkUtil {
|
||
|
public final static String TAGS_SEPARATOR = ",";
|
||
|
public final static String FOLDERS_SEPARATOR = "/";
|
||
|
|
||
|
public final static byte[] getBookmarkId(String url) throws MalformedURLException {
|
||
|
return (new DigestURI(url, null)).hash();
|
||
|
}
|
||
|
|
||
|
public final static byte[] getKeyId(final String tag) {
|
||
|
return Word.word2hash(tag.toLowerCase());
|
||
|
}
|
||
|
|
||
|
public final static byte[] keySetToBytes(final HashSet<String> urlSet) {
|
||
|
return keySetToString(urlSet).getBytes();
|
||
|
}
|
||
|
|
||
|
public final static String keySetToString(final HashSet<String> urlSet) {
|
||
|
final Iterator<String> urlIter = urlSet.iterator();
|
||
|
final
|
||
|
StringBuilder urls = new StringBuilder(urlSet.size()*20);
|
||
|
while(urlIter.hasNext()) {
|
||
|
urls.append(TAGS_SEPARATOR);
|
||
|
urls.append(urlIter.next());
|
||
|
}
|
||
|
urls.deleteCharAt(0);
|
||
|
return urls.toString();
|
||
|
}
|
||
|
|
||
|
public final static HashSet<String> keysStringToSet(final String keysString) {
|
||
|
HashSet<String> keySet = new HashSet<String>();
|
||
|
final String[] keyArray = keysString.split(TAGS_SEPARATOR);
|
||
|
for (final String key : keyArray) {
|
||
|
keySet.add(key);
|
||
|
}
|
||
|
return keySet;
|
||
|
}
|
||
|
|
||
|
public final static String cleanTagsString(final String tagsString) {
|
||
|
StringBuilder ts = new StringBuilder(tagsString);
|
||
|
if(ts.length() == 0)
|
||
|
return YMarkTables.BOOKMARK.TAGS.deflt();
|
||
|
// get rid of double commas and space characters following a comma
|
||
|
for (int i = 0; i < ts.length()-1; i++) {
|
||
|
if (ts.charAt(i) == TAGS_SEPARATOR.charAt(0)) {
|
||
|
if (ts.charAt(i+1) == TAGS_SEPARATOR.charAt(0) || ts.charAt(i+1) == ' ') {
|
||
|
ts.deleteCharAt(i+1);
|
||
|
i--;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// get rid of heading and trailing comma
|
||
|
if (ts.charAt(0) == TAGS_SEPARATOR.charAt(0))
|
||
|
ts.deleteCharAt(0);
|
||
|
if (ts.charAt(ts.length()-1) == TAGS_SEPARATOR.charAt(0))
|
||
|
ts.deleteCharAt(ts.length()-1);
|
||
|
return ts.toString();
|
||
|
}
|
||
|
|
||
|
public final static String cleanFoldersString(final String foldersString) {
|
||
|
StringBuilder fs = new StringBuilder(cleanTagsString(foldersString));
|
||
|
if(fs.length() == 0)
|
||
|
return YMarkTables.BOOKMARK.FOLDERS.deflt();
|
||
|
for (int i = 0; i < fs.length()-1; i++) {
|
||
|
if (fs.charAt(i) == FOLDERS_SEPARATOR.charAt(0)) {
|
||
|
if (fs.charAt(i+1) == TAGS_SEPARATOR.charAt(0) || fs.charAt(i+1) == FOLDERS_SEPARATOR.charAt(0)) {
|
||
|
fs.deleteCharAt(i);
|
||
|
i--;
|
||
|
} else if (fs.charAt(i+1) == ' ') {
|
||
|
fs.deleteCharAt(i+1);
|
||
|
i--;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if (fs.charAt(fs.length()-1) == FOLDERS_SEPARATOR.charAt(0)) {
|
||
|
fs.deleteCharAt(fs.length()-1);
|
||
|
}
|
||
|
return fs.toString();
|
||
|
}
|
||
|
}
|