Changeset 24377
- Timestamp:
- Jun 10, 2009, 5:49:03 PM (17 years ago)
- Location:
- branches/pap_mops
- Files:
-
- 4 added
- 4 edited
-
dbconfig/changes.txt (modified) (2 diffs)
-
dbconfig/publish.md (modified) (1 diff)
-
ippTools/doc/publish_flow.txt (added)
-
ippTools/share/pxadmin_create_tables.sql (modified) (2 diffs)
-
ippTools/src/Makefile.am (modified) (3 diffs)
-
ippTools/src/pubtool.c (added)
-
ippTools/src/pubtool.h (added)
-
ippTools/src/pubtoolConfig.c (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_mops/dbconfig/changes.txt
r24376 r24377 1132 1132 client_id BIGINT AUTO_INCREMENT, -- unique identifier 1133 1133 comment VARCHAR(255), -- for human memory 1134 stage VARCHAR(64) ,-- stage of interest (chip, camera, diff, etc.)1134 stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.) 1135 1135 format VARCHAR(64), -- format of data 1136 destination VARCHAR(255) ,-- where to send data1136 destination VARCHAR(255) NOT NULL, -- where to send data 1137 1137 PRIMARY KEY(client_id) 1138 1138 ) ENGINE=innodb DEFAULT CHARSET=latin1; … … 1140 1140 CREATE TABLE publishRun ( 1141 1141 pub_id BIGINT AUTO_INCREMENT, -- unique identifier 1142 client_id BIGINT, -- link to publishClient 1143 stage_id BIGINT, -- link to various stage tables 1142 client_id BIGINT NOT NULL, -- link to publishClient 1143 stage_id BIGINT NOT NULL, -- link to various stage tables 1144 label VARCHAR(64), -- label for run 1145 state VARCHAR(64), -- state of run (new, full, etc.) 1144 1146 PRIMARY KEY(pub_id), 1145 1147 KEY(client_id), 1146 1148 KEY(stage_id), 1149 KEY(label), 1150 KEY(state), 1147 1151 FOREIGN KEY(client_id) REFERENCES publishClient(client_id) 1148 1152 ) ENGINE=innodb DEFAULT CHARSET=latin1; -
branches/pap_mops/dbconfig/publish.md
r24373 r24377 13 13 client_id S64 0 14 14 stage_id S64 0 15 label STR 64 15 16 state STR 64 16 17 END -
branches/pap_mops/ippTools/share/pxadmin_create_tables.sql
r24375 r24377 1375 1375 client_id BIGINT AUTO_INCREMENT, -- unique identifier 1376 1376 comment VARCHAR(255), -- for human memory 1377 stage VARCHAR(64) ,-- stage of interest (chip, camera, diff, etc.)1377 stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.) 1378 1378 format VARCHAR(64), -- format of data 1379 destination VARCHAR(255) ,-- where to send data1379 destination VARCHAR(255) NOT NULL, -- where to send data 1380 1380 PRIMARY KEY(client_id) 1381 1381 ) ENGINE=innodb DEFAULT CHARSET=latin1; … … 1384 1384 CREATE TABLE publishRun ( 1385 1385 pub_id BIGINT AUTO_INCREMENT, -- unique identifier 1386 client_id BIGINT, -- link to publishClient 1387 stage_id BIGINT, -- link to various stage tables 1386 client_id BIGINT NOT NULL, -- link to publishClient 1387 stage_id BIGINT NOT NULL, -- link to various stage tables 1388 label VARCHAR(64), -- label for run 1389 state VARCHAR(64), -- state of run (new, full, etc.) 1388 1390 PRIMARY KEY(pub_id), 1389 1391 KEY(client_id), 1390 1392 KEY(stage_id), 1393 KEY(label), 1394 KEY(state), 1391 1395 FOREIGN KEY(client_id) REFERENCES publishClient(client_id) 1392 1396 ) ENGINE=innodb DEFAULT CHARSET=latin1; -
branches/pap_mops/ippTools/src/Makefile.am
r24038 r24377 20 20 stacktool \ 21 21 warptool \ 22 receivetool 22 receivetool \ 23 pubtool 23 24 24 25 … … 59 60 regtool.h \ 60 61 stacktool.h \ 61 warptool.h 62 warptool.h \ 63 pubtool.h 62 64 63 65 lib_LTLIBRARIES = libpxtools.la … … 220 222 receivetoolConfig.c 221 223 224 pubtool_CFLAGS = $(PSLIB_CFLAGS) $(PSMODULES_CFLAGS) $(IPPDB_CFLAGS) 225 pubtool_LDADD = $(PSLIB_LIBS) $(PSMODULES_LIBS) $(IPPDB_LIBS) libpxtools.la 226 pubtool_SOURCES = \ 227 pubtool.c \ 228 pubtoolConfig.c 229 222 230 clean-local: 223 231 -rm -f TAGS
Note:
See TracChangeset
for help on using the changeset viewer.
