//bookmarksDB.java //------------------------------------- //part of YACY //(C) by Michael Peter Christen; mc@yacy.net //first published on http://www.anomic.de //Frankfurt, Germany, 2004 // //This file has been originally contributed by Alexander Schier // //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 net.yacy.data; import java.io.File; import java.io.IOException; import java.io.Serializable; import java.net.MalformedURLException; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.Map; import java.util.Set; import java.util.TreeSet; import java.util.concurrent.ConcurrentHashMap; import net.yacy.cora.document.ASCII; import net.yacy.cora.document.UTF8; import net.yacy.cora.order.NaturalOrder; import net.yacy.cora.util.SpaceExceededException; import net.yacy.kelondro.blob.MapHeap; import net.yacy.kelondro.data.meta.DigestURI; import net.yacy.kelondro.logging.Log; public class BookmarksDB { // ------------------------------------ // Declaration of Class-Attributes // ------------------------------------ //final static int SORT_ALPHA = 1; private final static int SORT_SIZE = 2; private final static int SHOW_ALL = -1; // bookmarks private final MapHeap bookmarks; // tags private final ConcurrentHashMap tags; private final BookmarkDate dates; // ------------------------------------ // bookmarksDB's class constructor // ------------------------------------ public BookmarksDB(final File bookmarksFile, final File datesFile) throws IOException { // bookmarks bookmarksFile.getParentFile().mkdirs(); //this.bookmarksTable = new kelondroMap(kelondroDyn.open(bookmarksFile, bufferkb * 1024, preloadTime, 12, 256, '_', true, false)); //this.bookmarksTable = new MapView(BLOBTree.toHeap(bookmarksFile, true, true, 12, 256, '_', NaturalOrder.naturalOrder, bookmarksFileNew), 1000, '_'); this.bookmarks = new MapHeap(bookmarksFile, 12, NaturalOrder.naturalOrder, 1024 * 64, 1000, ' '); // tags this.tags = new ConcurrentHashMap(); Log.logInfo("BOOKMARKS", "started init of tags from bookmarks.db..."); final Iterator it = new bookmarkIterator(true); Bookmark bookmark; Tag tag; String[] tagArray; while (it.hasNext()) { try { bookmark = it.next(); } catch (Throwable e) { //Log.logException(e); continue; } if (bookmark == null) continue; tagArray = BookmarkHelper.cleanTagsString(bookmark.getTagsString() + bookmark.getFoldersString()).split(","); tag = null; for (final String element : tagArray) { tag = getTag(BookmarkHelper.tagHash(element)); if (tag == null) { tag = new Tag(element); } tag.addUrl(bookmark.getUrlHash()); putTag(tag); } } Log.logInfo("BOOKMARKS", "finished init " + this.tags.size() + " tags using your "+this.bookmarks.size()+" bookmarks."); // dates final boolean datesExisted = datesFile.exists(); //this.datesTable = new MapView(BLOBTree.toHeap(datesFile, true, true, 20, 256, '_', NaturalOrder.naturalOrder, datesFileNew), 500, '_'); this.dates = new BookmarkDate(datesFile); if (!datesExisted) this.dates.init(new bookmarkIterator(true)); } // ----------------------------------------------------- // bookmarksDB's functions for 'destructing' the class // ----------------------------------------------------- public synchronized void close(){ this.bookmarks.close(); this.tags.clear(); this.dates.close(); } // ----------------------------------------------------------- // bookmarksDB's functions for bookmarksTable / bookmarkCache // ----------------------------------------------------------- public Bookmark createBookmark(final String url, final String user){ if (url == null || url.isEmpty()) return null; Bookmark bk; try { bk = new Bookmark(url); bk.setOwner(user); return (bk.getUrlHash() == null || bk.toMap() == null) ? null : bk; } catch (final MalformedURLException e) { return null; } } // returning the number of bookmarks public int bookmarksSize(){ return this.bookmarks.size(); } // adding a bookmark to the bookmarksDB public void saveBookmark(final Bookmark bookmark){ try { this.bookmarks.insert(ASCII.getBytes(bookmark.getUrlHash()), bookmark.entry); } catch (final Exception e) { Log.logException(e); } } public String addBookmark(final Bookmark bookmark){ saveBookmark(bookmark); return bookmark.getUrlHash(); } public Bookmark getBookmark(final String urlHash){ try { final Map map = this.bookmarks.get(ASCII.getBytes(urlHash)); return (map == null) ? null : new Bookmark(map); } catch (MalformedURLException e) { Log.logException(e); return null; } catch (final IOException e) { Log.logException(e); return null; } catch (final SpaceExceededException e) { Log.logException(e); return null; } } public boolean removeBookmark(final String urlHash){ final Bookmark bookmark = getBookmark(urlHash); if (bookmark == null) return false; //does not exist final Set tagSet = bookmark.getTags(); BookmarksDB.Tag tag=null; final Iterator it=tagSet.iterator(); while(it.hasNext()){ tag=getTag(BookmarkHelper.tagHash(it.next())); if(tag!=null){ tag.delete(urlHash); putTag(tag); } } Bookmark b; try { b = getBookmark(urlHash); this.bookmarks.delete(ASCII.getBytes(urlHash)); } catch (final IOException e) { b = null; } return b != null; } public Iterator getBookmarksIterator(final boolean priv) { final TreeSet set=new TreeSet(new bookmarkComparator(true)); Iterator it; try { it = new bookmarkIterator(true); } catch (final IOException e) { Log.logException(e); return set.iterator(); } Bookmark bm; while(it.hasNext()){ bm=it.next(); // if (bm == null) continue; if(priv || bm.getPublic()){ set.add(bm.getUrlHash()); } } return set.iterator(); } public Iterator getBookmarksIterator(final String tagName, final boolean priv){ final TreeSet set=new TreeSet(new bookmarkComparator(true)); final String tagHash=BookmarkHelper.tagHash(tagName); final Tag tag=getTag(tagHash); Set hashes=new HashSet(); if(tag != null){ hashes=getTag(tagHash).getUrlHashes(); } if(priv){ set.addAll(hashes); }else{ final Iterator it=hashes.iterator(); Bookmark bm; while(it.hasNext()){ bm = getBookmark(it.next()); if (bm != null && bm.getPublic()) { set.add(bm.getUrlHash()); } } } return set.iterator(); } // ------------------------------------------------- // bookmarksDB's functions for tagsTable / tagCache // ------------------------------------------------- // returning the number of tags public int tagsSize(){ return this.tags.size(); } /** * retrieve an object of type Tag from the the tagCache, if object is not cached return loadTag(hash) * @param hash an object of type String, containing a tagHash */ public Tag getTag(final String hash){ return this.tags.get(hash); //null if it does not exists } /** * store a Tag in tagsTable or remove an empty tag * @param tag an object of type Tag to be stored/removed */ public void putTag(final Tag tag){ if (tag == null) return; if (tag.isEmpty()) { this.tags.remove(tag.getTagHash()); } else { this.tags.put(tag.getTagHash(), tag); } } public void removeTag(final String hash) { this.tags.remove(hash); } public Iterator getTagIterator(final boolean priv) { return getTagIterator(priv, 1); } private Iterator getTagIterator(final boolean priv, final int c) { final Set set = new TreeSet((c == SORT_SIZE) ? tagSizeComparator : tagComparator); final Iterator it = this.tags.values().iterator(); Tag tag; while (it.hasNext()) { tag=it.next(); if (tag == null) continue; if (priv ||tag.hasPublicItems()) { set.add(tag); } } return set.iterator(); } public Iterator getTagIterator(final boolean priv, final int comp, final int max){ if (max==SHOW_ALL) return getTagIterator(priv, comp); final Iterator it = getTagIterator(priv, SORT_SIZE); final TreeSet set=new TreeSet((comp == SORT_SIZE) ? tagSizeComparator : tagComparator); int count = 0; while (it.hasNext() && count<=max) { set.add(it.next()); count++; } return set.iterator(); } public Iterator getTagIterator(final String tagName, final boolean priv, final int comp) { final TreeSet set=new TreeSet((comp == SORT_SIZE) ? tagSizeComparator : tagComparator); Iterator it=null; final Iterator bit=getBookmarksIterator(tagName, priv); Bookmark bm; Tag tag; Set tagSet; while(bit.hasNext()){ bm=getBookmark(bit.next()); if (bm == null) continue; tagSet = bm.getTags(); it = tagSet.iterator(); while (it.hasNext()) { tag=getTag(BookmarkHelper.tagHash(it.next()) ); if((priv ||tag.hasPublicItems()) && tag != null){ set.add(tag); } } } return set.iterator(); } public Iterator getTagIterator(final String tagName, final boolean priv, final int comp, final int max) { if (max==SHOW_ALL) return getTagIterator(priv, comp); final Iterator it = getTagIterator(tagName, priv, SORT_SIZE); final TreeSet set=new TreeSet((comp == SORT_SIZE) ? tagSizeComparator : tagComparator); int count = 0; while (it.hasNext() && count<=max) { set.add(it.next()); count++; } return set.iterator(); } // ------------------------------------- // bookmarksDB's experimental functions // ------------------------------------- public boolean renameTag(final String oldName, final String newName){ final Tag oldTag=getTag(BookmarkHelper.tagHash(oldName)); if (oldTag != null) { final Set urlHashes = oldTag.getUrlHashes(); // preserve urlHashes of oldTag removeTag(BookmarkHelper.tagHash(oldName)); // remove oldHash from TagsDB Bookmark bookmark; Set tagSet = new TreeSet(String.CASE_INSENSITIVE_ORDER); for (final String urlHash : urlHashes) { // looping through all bookmarks which were tagged with oldName bookmark = getBookmark(urlHash); tagSet = bookmark.getTags(); tagSet.remove(oldName); bookmark.setTags(tagSet, true); // might not be needed, but doesn't hurt if(!"".equals(newName)) bookmark.addTag(newName); saveBookmark(bookmark); } return true; } return false; } public void addTag(final String selectTag, final String newTag) { Bookmark bookmark; for (final String urlHash : getTag(BookmarkHelper.tagHash(selectTag)).getUrlHashes()) { // looping through all bookmarks which were tagged with selectTag bookmark = getBookmark(urlHash); bookmark.addTag(newTag); saveBookmark(bookmark); } } // -------------------------------------- // bookmarksDB's Subclasses // -------------------------------------- /** * Subclass of bookmarksDB, which provides the Tag object-type */ public class Tag { public static final String URL_HASHES = "urlHashes"; public static final String TAG_NAME = "tagName"; private final String tagHash; private final Map mem; private Set urlHashes; public Tag(final String hash, final Map map){ this.tagHash = hash; this.mem = map; if (this.mem.containsKey(URL_HASHES)) { this.urlHashes = ListManager.string2set(this.mem.get(URL_HASHES)); } else { this.urlHashes = new HashSet(); } } public Tag(final String name, final HashSet entries){ this.tagHash = BookmarkHelper.tagHash(name); this.mem = new HashMap(); //mem.put(URL_HASHES, listManager.arraylist2string(entries)); this.urlHashes = entries; this.mem.put(TAG_NAME, name); } public Tag(final String name){ this(name, new HashSet()); } public Map getMap(){ this.mem.put(URL_HASHES, ListManager.collection2string(this.urlHashes)); return this.mem; } /** * get the lowercase Tagname */ public String getTagName(){ /*if(this.mem.containsKey(TAG_NAME)){ return (String) this.mem.get(TAG_NAME); } return "";*/ return getFriendlyName().toLowerCase(); } public String getTagHash(){ return this.tagHash; } /** * @return the tag name, with all uppercase chars */ public String getFriendlyName(){ /*if(this.mem.containsKey(TAG_FRIENDLY_NAME)){ return (String) this.mem.get(TAG_FRIENDLY_NAME); } return getTagName();*/ if(this.mem.containsKey(TAG_NAME)){ return this.mem.get(TAG_NAME); } return "notagname"; } public Set getUrlHashes(){ return this.urlHashes; } public boolean hasPublicItems(){ return getBookmarksIterator(getTagName(), false).hasNext(); } public void addUrl(final String urlHash){ this.urlHashes.add(urlHash); } public void delete(final String urlHash){ this.urlHashes.remove(urlHash); } public int size(){ return this.urlHashes.size(); } public boolean isEmpty() { return this.urlHashes.isEmpty(); } } /** * Subclass of bookmarksDB, which provides the Bookmark object-type */ public class Bookmark { public static final String BOOKMARK_URL = "bookmarkUrl"; public static final String BOOKMARK_TITLE = "bookmarkTitle"; public static final String BOOKMARK_DESCRIPTION = "bookmarkDesc"; public static final String BOOKMARK_TAGS = "bookmarkTags"; public static final String BOOKMARK_PUBLIC = "bookmarkPublic"; public static final String BOOKMARK_TIMESTAMP = "bookmarkTimestamp"; public static final String BOOKMARK_OWNER = "bookmarkOwner"; public static final String BOOKMARK_IS_FEED = "bookmarkIsFeed"; private final String urlHash; private Set tagNames; private long timestamp; private final Map entry; public Bookmark(final String urlHash, final Map map) { this.entry = map; this.urlHash = urlHash; this.tagNames = new TreeSet(String.CASE_INSENSITIVE_ORDER); if (map.containsKey(BOOKMARK_TAGS)) this.tagNames.addAll(ListManager.string2set(map.get(BOOKMARK_TAGS))); loadTimestamp(); } public Bookmark(final DigestURI url) { this.entry = new HashMap(); this.urlHash = ASCII.String(url.hash()); this.entry.put(BOOKMARK_URL, url.toNormalform(false, true)); this.tagNames = new HashSet(); this.timestamp = System.currentTimeMillis(); final Bookmark oldBm=getBookmark(this.urlHash); if(oldBm!=null && oldBm.entry.containsKey(BOOKMARK_TIMESTAMP)){ this.entry.put(BOOKMARK_TIMESTAMP, oldBm.entry.get(BOOKMARK_TIMESTAMP)); //preserve timestamp on edit }else{ this.entry.put(BOOKMARK_TIMESTAMP, String.valueOf(System.currentTimeMillis())); } final BookmarkDate.Entry bmDate=BookmarksDB.this.dates.getDate(this.entry.get(BOOKMARK_TIMESTAMP)); bmDate.add(this.urlHash); bmDate.setDatesTable(); removeBookmark(this.urlHash); //prevent empty tags } public Bookmark(final String url) throws MalformedURLException { this(new DigestURI((!url.toLowerCase().startsWith("http://") && !url.toLowerCase().startsWith("https://")) ? "http://" + url : url)); } public Bookmark(final Map map) throws MalformedURLException { this(ASCII.String((new DigestURI(map.get(BOOKMARK_URL))).hash()), map); } Map toMap() { this.entry.put(BOOKMARK_TAGS, ListManager.collection2string(this.tagNames)); this.entry.put(BOOKMARK_TIMESTAMP, String.valueOf(this.timestamp)); return this.entry; } private void loadTimestamp() { if(this.entry.containsKey(BOOKMARK_TIMESTAMP)) this.timestamp=Long.parseLong(this.entry.get(BOOKMARK_TIMESTAMP)); } public String getUrlHash() { return this.urlHash; } public String getUrl() { return this.entry.get(BOOKMARK_URL); } public Set getTags() { return this.tagNames; } public String getTagsString() { final String s[] = ListManager.collection2string(getTags()).split(","); final StringBuilder stringBuilder = new StringBuilder(); for (final String element : s){ if(!element.startsWith("/")){ stringBuilder.append(element); stringBuilder.append(","); } } return stringBuilder.toString(); } public String getFoldersString(){ final String s[] = ListManager.collection2string(getTags()).split(","); final StringBuilder stringBuilder = new StringBuilder(); for (final String element : s){ if(element.startsWith("/")){ stringBuilder.append(element); stringBuilder.append(","); } } return stringBuilder.toString(); } public String getDescription(){ if(this.entry.containsKey(BOOKMARK_DESCRIPTION)){ return this.entry.get(BOOKMARK_DESCRIPTION); } return ""; } public String getTitle(){ if(this.entry.containsKey(BOOKMARK_TITLE)){ return this.entry.get(BOOKMARK_TITLE); } return this.entry.get(BOOKMARK_URL); } public String getOwner(){ if(this.entry.containsKey(BOOKMARK_OWNER)){ return this.entry.get(BOOKMARK_OWNER); } return null; //null means admin } public void setOwner(final String owner){ this.entry.put(BOOKMARK_OWNER, owner); } public boolean getPublic(){ if(this.entry.containsKey(BOOKMARK_PUBLIC)){ return "public".equals(this.entry.get(BOOKMARK_PUBLIC)); } return false; } public boolean getFeed(){ if(this.entry.containsKey(BOOKMARK_IS_FEED)){ return "true".equals(this.entry.get(BOOKMARK_IS_FEED)); } return false; } public void setPublic(final boolean isPublic){ if(isPublic){ this.entry.put(BOOKMARK_PUBLIC, "public"); } else { this.entry.put(BOOKMARK_PUBLIC, "private"); } } public void setFeed(final boolean isFeed){ if(isFeed){ this.entry.put(BOOKMARK_IS_FEED, "true"); }else{ this.entry.put(BOOKMARK_IS_FEED, "false"); } } public void setProperty(final String name, final String value){ this.entry.put(name, value); //setBookmarksTable(); } public void addTag(final String tagName){ this.tagNames.add(tagName); setTags(this.tagNames); saveBookmark(this); } /** * set the Tags of the bookmark, and write them into the tags table. * @param tags2 a ArrayList with the tags */ public void setTags(final Set tags2){ setTags(tags2, true); } /** * set the Tags of the bookmark * @param tagNames ArrayList with the tagnames * @param local sets, whether the updated tags should be stored to tagsDB */ public void setTags(final Set tags2, final boolean local){ this.tagNames = tags2; // TODO: check if this is safe // tags.addAll(tags2); // in order for renameTag() to work I had to change this form 'add' to 'set' for (final String tagName : this.tagNames) { Tag tag = getTag(BookmarkHelper.tagHash(tagName)); if (tag == null) { tag = new Tag(tagName); } tag.addUrl(getUrlHash()); if (local) { putTag(tag); } } toMap(); } public long getTimeStamp(){ return this.timestamp; } public void setTimeStamp(final long ts){ this.timestamp = ts; } } /** * Subclass of bookmarksDB, which provides the bookmarkIterator object-type */ public class bookmarkIterator implements Iterator { Iterator bookmarkIter; public bookmarkIterator(final boolean up) throws IOException { //flushBookmarkCache(); //XXX: this will cost performance this.bookmarkIter = BookmarksDB.this.bookmarks.keys(up, false); //this.nextEntry = null; } @Override public boolean hasNext() { return this.bookmarkIter.hasNext(); } @Override public Bookmark next() { return getBookmark(UTF8.String(this.bookmarkIter.next())); } @Override public void remove() { throw new UnsupportedOperationException(); } } /** * Comparator to sort objects of type Bookmark according to their timestamps */ public class bookmarkComparator implements Comparator { private final boolean newestFirst; /** * @param newestFirst newest first, or oldest first? */ public bookmarkComparator(final boolean newestFirst){ this.newestFirst = newestFirst; } @Override public int compare(final String obj1, final String obj2) { final Bookmark bm1 = getBookmark(obj1); final Bookmark bm2 = getBookmark(obj2); if (bm1 == null || bm2 == null) { return 0; //XXX: i think this should not happen? maybe this needs further tracing of the bug } if (this.newestFirst){ if (bm2.getTimeStamp() - bm1.getTimeStamp() >0) return 1; return -1; } if (bm1.getTimeStamp() - bm2.getTimeStamp() > 0) return 1; return -1; } } public static final TagComparator tagComparator = new TagComparator(); public static final TagSizeComparator tagSizeComparator = new TagSizeComparator(); /** * Comparator to sort objects of type Tag according to their names */ public static class TagComparator implements Comparator, Serializable { /** * generated serial */ private static final long serialVersionUID = 3105057490088903930L; @Override public int compare(final Tag obj1, final Tag obj2){ return obj1.getTagName().compareTo(obj2.getTagName()); } } public static class TagSizeComparator implements Comparator, Serializable { /** * generated serial */ private static final long serialVersionUID = 4149185397646373251L; @Override public int compare(final Tag obj1, final Tag obj2) { if (obj1.size() < obj2.size()) { return 1; } else if (obj1.getTagName().equals(obj2.getTagName())) { return 0; } else { return -1; } } } public BookmarkDate.Entry getDate(final String date) { return this.dates.getDate(date); } }