aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-11-18 17:06:35 +0100
committerThomas White <taw@physics.org>2015-11-18 17:06:35 +0100
commitf348fc6a74a3fd00891ff00c1174c6e434bcd5a0 (patch)
tree81722ea0a25da96451173b77953165bff822085a /src
parenta2b11362e440d3487520a39284ae72fcb4cb37f5 (diff)
Factorise get_locked_reflection()
Diffstat (limited to 'src')
-rw-r--r--src/merge.c85
1 files changed, 50 insertions, 35 deletions
diff --git a/src/merge.c b/src/merge.c
index 4f2fa9a9..ae7aa79f 100644
--- a/src/merge.c
+++ b/src/merge.c
@@ -87,6 +87,49 @@ static void *create_merge_job(void *vqargs)
}
+/* Find reflection hkl in 'list', creating it if it's not there, under
+ * protection of 'lock' and returning a locked reflection */
+static Reflection *get_locked_reflection(RefList *list, pthread_rwlock_t *lock,
+ signed int h, signed int k, signed int l)
+{
+ Reflection *f;
+
+ pthread_rwlock_rdlock(lock);
+ f = find_refl(list, h, k, l);
+ if ( f == NULL ) {
+
+ /* Swap read lock for write lock */
+ pthread_rwlock_unlock(lock);
+ pthread_rwlock_wrlock(lock);
+
+ /* In the gap between the unlock and the wrlock, the
+ * reflection might have been created by another thread.
+ * So, we must check again */
+ f = find_refl(list, h, k, l);
+ if ( f == NULL ) {
+ f = add_refl(list, h, k, l);
+ lock_reflection(f);
+ pthread_rwlock_unlock(lock);
+ set_intensity(f, 0.0);
+ set_temp1(f, 0.0);
+ set_temp2(f, 0.0);
+ } else {
+ /* Someone else created it */
+ lock_reflection(f);
+ pthread_rwlock_unlock(lock);
+ }
+
+ } else {
+
+ lock_reflection(f);
+ pthread_rwlock_unlock(lock);
+
+ }
+
+ return f;
+}
+
+
static void run_merge_job(void *vwargs, int cookie)
{
struct merge_worker_args *wargs = vwargs;
@@ -115,47 +158,19 @@ static void run_merge_job(void *vwargs, int cookie)
if ( get_partiality(refl) < MIN_PART_MERGE ) continue;
- if ( !wargs->qargs->use_weak
- && (get_intensity(refl) < 3.0*get_esd_intensity(refl)) ) {
- continue;
- }
-
- get_indices(refl, &h, &k, &l);
- pthread_rwlock_rdlock(&wargs->qargs->full_lock);
- f = find_refl(full, h, k, l);
- if ( f == NULL ) {
-
- /* Swap read lock for write lock */
- pthread_rwlock_unlock(&wargs->qargs->full_lock);
- pthread_rwlock_wrlock(&wargs->qargs->full_lock);
-
- /* In the gap between the unlock and the wrlock, the
- * reflection might have been created by another thread.
- * So, we must check again */
- f = find_refl(full, h, k, l);
- if ( f == NULL ) {
- f = add_refl(full, h, k, l);
- lock_reflection(f);
- pthread_rwlock_unlock(&wargs->qargs->full_lock);
- set_intensity(f, 0.0);
- set_temp1(f, 0.0);
- set_temp2(f, 0.0);
-
- } else {
-
- /* Someone else created it */
- lock_reflection(f);
- pthread_rwlock_unlock(&wargs->qargs->full_lock);
+ if ( !wargs->qargs->use_weak ) {
+ if (get_intensity(refl) < 3.0*get_esd_intensity(refl)) {
+ continue;
}
- } else {
-
- lock_reflection(f);
- pthread_rwlock_unlock(&wargs->qargs->full_lock);
}
+ get_indices(refl, &h, &k, &l);
+ f = get_locked_reflection(full, &wargs->qargs->full_lock,
+ h, k, l);
+
mean = get_intensity(f);
sumweight = get_temp1(f);
M2 = get_temp2(f);