Changeset 6133
- Timestamp:
- Jan 21, 2006, 3:12:34 PM (20 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 10 edited
-
chiptoolConfig.c (modified) (1 diff)
-
p2insertDoneFrames.c (modified) (1 diff)
-
p2insertPendingFrames.c (modified) (1 diff)
-
p2pendingToDone.c (modified) (1 diff)
-
p2rawToPending.c (modified) (1 diff)
-
p2searchPendingFrames.c (modified) (1 diff)
-
p2searchRawFrames.c (modified) (1 diff)
-
p2updatePending.c (modified) (1 diff)
-
p2writePendingFrames.c (modified) (2 diffs)
-
pxadminConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/chiptoolConfig.c
r6122 r6133 4 4 5 5 bool p2searchConfig (p2Config *config, int argc, char **argv) { 6 PS_ASSERT_PTR_NON_NULL(config, false); 6 7 7 8 // Parse the configurations (re-org a la ppImage) -
trunk/ippTools/src/p2insertDoneFrames.c
r6131 r6133 4 4 // select pending frames (exposure+images) which are done/not done 5 5 bool p2insertDoneFrames(p2Config *config, psArray *doneFrames) { 6 PS_ASSERT_PTR_NON_NULL(config, false); 7 PS_ASSERT_PTR_NON_NULL(doneFrames, false); 6 8 7 9 for (int i = 0; i < doneFrames->n; i++) { -
trunk/ippTools/src/p2insertPendingFrames.c
r6131 r6133 7 7 // this is useful since the table must be locked the whole time, to get the versions 8 8 bool p2insertPendingFrames(p2Config *config, psArray *rawFrames) { 9 PS_ASSERT_PTR_NON_NULL(config, false); 10 PS_ASSERT_PTR_NON_NULL(rawFrames, false); 9 11 10 12 psMetadata *where = psMetadataAlloc(); -
trunk/ippTools/src/p2pendingToDone.c
r6086 r6133 3 3 // select pending frames (exposure+images) which are done/not done 4 4 psArray *p2pendingToDone(p2Config *config, psArray *pendingFrames) { 5 PS_ASSERT_PTR_NON_NULL(config, NULL); 6 PS_ASSERT_PTR_NON_NULL(pendingFrames, NULL); 5 7 6 8 psArray *doneFrames = psArrayAlloc(pendingFrames->n); -
trunk/ippTools/src/p2rawToPending.c
r6086 r6133 3 3 // select pending frames (exposure+images) which are done/not done 4 4 psArray *p2rawToPending(p2Config *config, psArray *rawFrames) { 5 PS_ASSERT_PTR_NON_NULL(config, NULL); 6 PS_ASSERT_PTR_NON_NULL(rawFrames, NULL); 5 7 6 8 psArray *pendingFrames = psArrayAlloc(rawFrames->n); -
trunk/ippTools/src/p2searchPendingFrames.c
r6123 r6133 3 3 // select pending frames (exposure+images) which are done/not done 4 4 psArray *p2searchPendingFrames(p2Config *config) { 5 PS_ASSERT_PTR_NON_NULL(config, NULL); 5 6 6 7 // build 'where' structure -
trunk/ippTools/src/p2searchRawFrames.c
r6122 r6133 3 3 // select raw frames (exposure+images) which match the given config options 4 4 psArray *p2searchRawFrames(p2Config *config) { 5 PS_ASSERT_PTR_NON_NULL(config, NULL); 5 6 6 7 // build 'where' structure -
trunk/ippTools/src/p2updatePending.c
r6063 r6133 2 2 3 3 // select pending frames (exposure+images) which are not done, select their done images, count, update 4 bool p2updatePendingFrames (p2Config *config, psArray *pendingFrames) { 4 bool p2updatePendingFrames(p2Config *config, psArray *pendingFrames) { 5 PS_ASSERT_PTR_NON_NULL(config, false); 6 PS_ASSERT_PTR_NON_NULL(pendingFrames, false); 5 7 6 8 psMetadata *where = psMetadataAlloc (); -
trunk/ippTools/src/p2writePendingFrames.c
r6106 r6133 3 3 // select pending frames (exposure+images) which are done/not done 4 4 bool p2writePendingFrames (p2Config *config, psArray *frames) { 5 PS_ASSERT_PTR_NON_NULL(config, false); 6 PS_ASSERT_PTR_NON_NULL(frames, false); 5 7 6 8 fprintf (stdout, "# exp_id class class_id url\n"); … … 8 10 for (int i = 0; i < frames->n; i++) { 9 11 p2PendingFrame *frame = frames->data[i]; 12 PS_ASSERT_PTR_NON_NULL(frame, false); 13 PS_ASSERT_PTR_NON_NULL(frame->images, false); 14 10 15 for (int j = 0; j < frame->images->n; j++) { 11 16 p2PendingImfileRow *image = frame->images->data[j]; -
trunk/ippTools/src/pxadminConfig.c
r6092 r6133 2 2 # include "p2tools.h" 3 3 4 bool p2adminConfig (p2Config *config, int argc, char **argv) { 4 bool p2adminConfig(p2Config *config, int argc, char **argv) { 5 PS_ASSERT_PTR_NON_NULL(config, false); 5 6 6 7 // Parse the configurations (re-org a la ppImage)
Note:
See TracChangeset
for help on using the changeset viewer.
