* Invalidate the {@link Story} cache (when the content should be re-read
* because it was changed).
*/
- protected void invalidateInfo() {
- invalidateInfo(null);
+ protected void deleteInfo() {
+ deleteInfo(null);
}
/**
- * Invalidate the {@link Story} cache (when the content should be re-read
- * because it was changed).
+ * Invalidate the {@link Story} cache (when the content is removed).
+ * <p>
+ * All the cache can be deleted if NULL is passed as meta.
*
* @param luid
- * the luid of the {@link Story} to clear from the cache, or NULL
+ * the LUID of the {@link Story} to clear from the cache, or NULL
* for all stories
*/
- protected abstract void invalidateInfo(String luid);
+ protected abstract void deleteInfo(String luid);
+
+ /**
+ * Invalidate the {@link Story} cache (when the content has changed, but we
+ * already have it) with the new given meta.
+ *
+ * @param meta
+ * the {@link Story} to clear from the cache
+ */
+ protected abstract void updateInfo(MetaData meta);
/**
* Return the next LUID that can be used.
delete(luid);
}
- doSave(story, pg);
+ story = doSave(story, pg);
- invalidateInfo(luid);
+ updateInfo(story.getMeta());
return story;
}
*/
public synchronized void delete(String luid) throws IOException {
doDelete(luid);
- invalidateInfo(luid);
+ deleteInfo(luid);
}
/**
if (!isCached(luid)) {
try {
cacheLib.imprt(lib, luid, pgImport);
+ updateInfo(cacheLib.getInfo(luid));
pgImport.done();
- invalidateInfo(luid);
} catch (IOException e) {
Instance.getTraceHandler().error(e);
}
}
@Override
- protected void invalidateInfo(String luid) {
+ protected void updateInfo(MetaData meta) {
+ if (meta != null) {
+ for (int i = 0; i < metas.size(); i++) {
+ if (metas.get(i).getLuid().equals(meta.getLuid())) {
+ metas.set(i, meta);
+ }
+ }
+ }
+
+ cacheLib.updateInfo(meta);
+ lib.updateInfo(meta);
+ }
+
+ @Override
+ protected void deleteInfo(String luid) {
if (luid == null) {
metas = null;
} else if (metas != null) {
- MetaData meta = lib.getInfo(luid);
for (int i = 0; i < metas.size(); i++) {
if (metas.get(i).getLuid().equals(luid)) {
metas.remove(i--);
}
}
-
- if (meta != null) {
- metas.add(meta);
- }
}
- cacheLib.invalidateInfo(luid);
- lib.invalidateInfo(luid);
+ cacheLib.deleteInfo(luid);
+ lib.deleteInfo(luid);
}
@Override
story = lib.save(story, luid, pgLib);
story = cacheLib.save(story, story.getMeta().getLuid(), pgCacheLib);
- invalidateInfo(story.getMeta().getLuid());
+ updateInfo(story.getMeta());
return story;
}
public void clearFromCache(String luid) throws IOException {
if (isCached(luid)) {
cacheLib.delete(luid);
- invalidateInfo(luid);
+ deleteInfo(luid);
}
}
Story story = lib.imprt(url, pgImprt);
cacheLib.save(story, story.getMeta().getLuid(), pgCache);
- invalidateInfo(story.getMeta().getLuid());
+ updateInfo(story.getMeta());
pg.done();
return story;
}
@Override
- protected synchronized void invalidateInfo(String luid) {
+ protected synchronized void updateInfo(MetaData meta) {
+ deleteInfo();
+ }
+
+ @Override
+ protected void deleteInfo(String luid) {
stories = null;
sourceCovers = new HashMap<String, Image>();
}
}
}
- invalidateInfo();
+ deleteInfo();
}
@Override
pg.add(1);
}
- invalidateInfo();
+ deleteInfo();
pg.done();
return;
}
super.imprt(other, luid, pg);
- invalidateInfo();
+ deleteInfo();
}
/**
* {@link LocalLibrary#baseDir}.
* <p>
* Will use a cached list when possible (see
- * {@link BasicLibrary#invalidateInfo()}).
+ * {@link BasicLibrary#deleteInfo()}).
*
* @param pg
* the optional {@link Progress}
}.connect();
// because the meta changed:
- invalidateInfo(luidSaved[0]);
-
MetaData meta = getInfo(luidSaved[0]);
- meta.setCover(story.getMeta().getCover());
+ if (story.getMeta().getClass() != null) {
+ // If already available locally:
+ meta.setCover(story.getMeta().getCover());
+ } else {
+ // If required:
+ meta.setCover(getCover(meta.getLuid()));
+ }
story.setMeta(meta);
pg.done();
}
@Override
- protected void invalidateInfo(String luid) {
+ protected void updateInfo(MetaData meta) {
+ // Will be taken care of directly server side
+ }
+
+ @Override
+ protected void deleteInfo(String luid) {
+ // Will be taken care of directly server side
}
// The following methods are only used by Save and Delete in BasicLibrary: