Changeset 35588
- Timestamp:
- May 21, 2013, 5:56:03 AM (13 years ago)
- Location:
- branches/eam_branches/ipp-20130419/Ohana/src/dvomerge/src
- Files:
-
- 3 edited
-
dvomerge.c (modified) (2 diffs)
-
dvomergeFromList.c (modified) (1 diff)
-
dvomergeUpdate_threaded.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130419/Ohana/src/dvomerge/src/dvomerge.c
r29938 r35588 10 10 if (argc == 6) { 11 11 if (!strcasecmp (argv[2], "and")) { 12 if (VERIFY) { 13 fprintf (stderr, "WARNING / ERROR : dvomerge (input1) and (input2) into (output) : VERIFY mode not implemented\n"); 14 exit (3); 15 } 12 16 dvomergeCreate (argc, argv); 13 17 } else { 18 if (VERIFY) { 19 fprintf (stderr, "WARNING / ERROR : dvomerge (input) into (output) from (list) : VERIFY mode not implemented\n"); 20 exit (3); 21 } 14 22 dvomergeFromList (argc, argv); 15 23 } … … 26 34 } 27 35 28 /* we have two possiblemodes of operation:36 /* we have two major modes of operation: 29 37 30 Create : dvomerge (in1) and (in2) to (out) -- create a new db from two input dbs 31 Update : dvomerge (in) into (out) -- merge a new db into an existing db 32 Continue : dvomerge (in) into (out) continue -- merge a new db into an existing db 38 Create : dvomerge (in1) and (in2) to (out) -- create a new db from two input dbs 39 Update : dvomerge (in) into (out) -- merge a new db into an existing db 33 40 41 we also have varients on Update: 42 Continue : dvomerge (in) into (out) continue -- merge only unmerged tables into the existing db 43 From List : dvomerge (in) into (out) from (list) -- merge only specified tables into the existing db 44 45 neither of the 2 above modes update the image table 34 46 */ -
branches/eam_branches/ipp-20130419/Ohana/src/dvomerge/src/dvomergeFromList.c
r35547 r35588 108 108 dmhObjectStats *inStats = dmhObjectStatsRead (inputfile); 109 109 110 // XXX : we are not checking for already-merged entries 111 110 112 LoadCatalog (&incatalog, NULL, inputfile, "r", NsecfiltInput); 111 113 -
branches/eam_branches/ipp-20130419/Ohana/src/dvomerge/src/dvomergeUpdate_threaded.c
r33657 r35588 129 129 output = argv[3]; 130 130 131 fprintf (stderr, "WARNING / ERROR : multi-threaded dvomerge does not handle merge tracking yet\n"); 132 exit (2); 133 131 134 if (ALTERNATE_PHOTCODE_FILE) { 132 135 fprintf (stderr, "cannot specify photcodes when merging into an existing catdir\n");
Note:
See TracChangeset
for help on using the changeset viewer.
