Skip to content

Instantly share code, notes, and snippets.

@nwellnhof
Created March 17, 2017 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nwellnhof/f262bcd53c3d69281748571410a0bdbd to your computer and use it in GitHub Desktop.
Save nwellnhof/f262bcd53c3d69281748571410a0bdbd to your computer and use it in GitHub Desktop.
diff --git a/core/Lucy/Index/FilePurger.c b/core/Lucy/Index/FilePurger.c
index 211f0ea..6daa805 100644
--- a/core/Lucy/Index/FilePurger.c
+++ b/core/Lucy/Index/FilePurger.c
@@ -234,7 +234,10 @@ S_delete_entry(Folder *folder, String *folder_entry) {
Folder *inner = Folder_Local_Find_Folder(folder, folder_entry);
if (inner == NULL) { return false; }
if (Folder_is_a(inner, COMPOUNDFILEREADER)) {
- inner = CFReader_Get_Real_Folder((CompoundFileReader*)inner);
+ CompoundFileReader *cf_reader = (CompoundFileReader*)inner;
+ inner = CFReader_Get_Real_Folder(cf_reader);
+ // Close cf.dat to allow speedy deletion on Windows.
+ CFReader_Close(cf_reader);
}
Vector *entries = Folder_List(inner, NULL);
diff --git a/core/Lucy/Index/PolyReader.c b/core/Lucy/Index/PolyReader.c
index 572cc2b..f554193 100644
--- a/core/Lucy/Index/PolyReader.c
+++ b/core/Lucy/Index/PolyReader.c
@@ -330,47 +330,51 @@ PolyReader*
PolyReader_do_open(PolyReader *self, Obj *index, Snapshot *snapshot,
IndexManager *manager) {
PolyReaderIVARS *const ivars = PolyReader_IVARS(self);
- Folder *folder = S_derive_folder(index);
- Err *last_error = NULL;
- uint64_t last_gen = 0;
+ Folder *folder = S_derive_folder(index);
+ Err *last_error = NULL;
+ String *last_snapfile = NULL;
+ String *target_snapfile = NULL;
PolyReader_init(self, NULL, folder, snapshot, manager, NULL);
DECREF(folder);
+ // If a Snapshot was supplied, use its file.
+ if (snapshot) {
+ target_snapfile = (String*)INCREF(Snapshot_Get_Path(snapshot));
+ if (!target_snapfile) {
+ THROW(ERR, "Supplied snapshot objects must not be empty");
+ }
+ }
+
while (1) {
- String *target_snap_file;
+ if (!snapshot) {
+ // If no Snapshot was supplied, pick the most recent snap file.
+ DECREF(target_snapfile);
+ target_snapfile = IxFileNames_latest_snapshot(folder);
- // If a Snapshot was supplied, use its file.
- if (snapshot) {
- target_snap_file = Snapshot_Get_Path(snapshot);
- if (!target_snap_file) {
- THROW(ERR, "Supplied snapshot objects must not be empty");
+ // No snap file? Looks like the index is empty. We can stop now.
+ if (!target_snapfile) {
+ DECREF(last_error);
+ last_error = NULL;
+ break;
}
- else {
- target_snap_file = (String*)INCREF(target_snap_file);
- }
- }
- else {
- // Otherwise, pick the most recent snap file.
- target_snap_file = IxFileNames_latest_snapshot(folder);
-
- // No snap file? Looks like the index is empty. We can stop now
- // and return NULL.
- if (!target_snap_file) { break; }
}
- // Derive "generation" of this snapshot file from its name.
- uint64_t gen = IxFileNames_extract_gen(target_snap_file);
-
- if (gen <= last_gen) {
+ if (last_snapfile
+ && Str_Equals(target_snapfile, (Obj*)last_snapfile)) {
+ // The target snapfile hasn't changed since the last iteration.
// If a snapshot was supplied, we couldn't read it. Otherwise,
// no new snapshot was found which should never happen. Throw
// error from previous attempt to read the snapshot.
- DECREF(self);
- RETHROW(last_error);
+ break;
}
- last_gen = gen;
+ // This is either the first iteration, or we found a newer snapshot.
+ // Clear error and keep track of snapfile.
+ DECREF(last_error);
+ last_error = NULL;
+ DECREF(last_snapfile);
+ last_snapfile = (String*)INCREF(target_snapfile);
// Get a read lock on the most recent snapshot file if indicated.
// There's no need to retry. In the unlikely case that we fail to
@@ -378,7 +382,7 @@ PolyReader_do_open(PolyReader *self, Obj *index, Snapshot *snapshot,
// FilePurger deleting the snapshot, which means that a newer
// snapshot just became available.
if (manager) {
- if (!S_request_snapshot_lock(self, target_snap_file)) {
+ if (!S_request_snapshot_lock(self, target_snapfile)) {
// Index updated, so try again.
last_error = (Err*)INCREF(Err_get_error());
continue;
@@ -402,12 +406,11 @@ PolyReader_do_open(PolyReader *self, Obj *index, Snapshot *snapshot,
struct try_read_snapshot_context context;
context.snapshot = ivars->snapshot;
context.folder = folder;
- context.path = target_snap_file;
+ context.path = target_snapfile;
last_error = Err_trap(S_try_read_snapshot, &context);
if (last_error) {
S_release_snapshot_lock(self);
- DECREF(target_snap_file);
// Index updated, so try again.
continue;
}
@@ -425,18 +428,24 @@ PolyReader_do_open(PolyReader *self, Obj *index, Snapshot *snapshot,
last_error = Err_trap(S_try_open_elements, &context);
if (last_error) {
S_release_snapshot_lock(self);
- DECREF(target_snap_file);
// Index updated, so try again.
continue;
}
else { // Succeeded.
S_init_sub_readers(self, (Vector*)context.seg_readers);
DECREF(context.seg_readers);
- DECREF(target_snap_file);
break;
}
}
+ DECREF(target_snapfile);
+ DECREF(last_snapfile);
+
+ if (last_error) {
+ DECREF(self);
+ RETHROW(last_error);
+ }
+
return self;
}
diff --git a/core/Lucy/Store/Lock.c b/core/Lucy/Store/Lock.c
index 7a4a060..a49925d 100644
--- a/core/Lucy/Store/Lock.c
+++ b/core/Lucy/Store/Lock.c
@@ -54,9 +54,6 @@ Lock_init(Lock *self, Folder *folder, String *name, int32_t timeout,
ivars->name = Str_Clone(name);
ivars->interval = interval;
- // Derive.
- ivars->lock_path = Str_newf("locks/%o.lock", name);
-
return self;
}
@@ -65,7 +62,6 @@ Lock_Destroy_IMP(Lock *self) {
LockIVARS *const ivars = Lock_IVARS(self);
DECREF(ivars->folder);
DECREF(ivars->name);
- DECREF(ivars->lock_path);
SUPER_DESTROY(self, LOCK);
}
diff --git a/core/Lucy/Store/Lock.cfh b/core/Lucy/Store/Lock.cfh
index 09c2c54..c33ff13 100644
--- a/core/Lucy/Store/Lock.cfh
+++ b/core/Lucy/Store/Lock.cfh
@@ -31,7 +31,6 @@ abstract class Lucy::Store::Lock inherits Clownfish::Obj {
Folder *folder;
String *name;
- String *lock_path;
int32_t timeout;
int32_t interval;
diff --git a/core/Lucy/Store/LockFileLock.c b/core/Lucy/Store/LockFileLock.c
index 19d624e..48f1557 100644
--- a/core/Lucy/Store/LockFileLock.c
+++ b/core/Lucy/Store/LockFileLock.c
@@ -59,6 +59,7 @@ LFLock_init(LockFileLock *self, Folder *folder, String *name, String *host,
Lock_init((Lock*)self, folder, name, timeout, interval);
LockFileLockIVARS *const ivars = LFLock_IVARS(self);
ivars->host = (String*)INCREF(host);
+ ivars->lock_path = Str_newf("locks/%o.lock", name);
ivars->link_path = Str_newf("%o.%o.%i64", ivars->lock_path, host,
(int64_t)pid);
ivars->exclusive_only = exclusive_only;
@@ -357,6 +358,7 @@ LFLock_Destroy_IMP(LockFileLock *self) {
LockFileLockIVARS *const ivars = LFLock_IVARS(self);
if (ivars->state != LFLOCK_STATE_UNLOCKED) { LFLock_Release(self); }
DECREF(ivars->host);
+ DECREF(ivars->lock_path);
DECREF(ivars->link_path);
SUPER_DESTROY(self, LOCKFILELOCK);
}
diff --git a/core/Lucy/Store/LockFileLock.cfh b/core/Lucy/Store/LockFileLock.cfh
index 30fc23a..1a8271b 100644
--- a/core/Lucy/Store/LockFileLock.cfh
+++ b/core/Lucy/Store/LockFileLock.cfh
@@ -20,6 +20,7 @@ class Lucy::Store::LockFileLock nickname LFLock
inherits Lucy::Store::Lock {
String *host;
+ String *lock_path;
String *shared_lock_path;
String *link_path;
int state;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment