1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
|
/*
+-+-+-+-+-+-+-+-+-
*/
/*
** DICOM 93
** Electronic Radiology Laboratory
** Mallinckrodt Institute of Radiology
** Washington University School of Medicine
**
** Module Name(s):
** Author, Date: Aniruddha S. Gokhale, August 5th, 1993.
** Intent: This module contains routines to create a database
** entry from a given image file.
** Usage
** create_db_entry [-v] [-p] dbfile imagefile prefmtImgFile
**
** dbfile Name of the database to be created
** imagefile Name of the file containing the image data
** prefmtImgFile Name of the preformatted image file i.e. one in which
** the original image file is compressed to the 8-bit
** format and then a greyscale transformation is made
** on it.
**
** Last Update: $Author: asg $, $Date: 1993-08-26 14:34:32 $
** Source File: $Source: /home/smm/ctn/ctn/apps/icon/create_db_entry.c,v $
** Revision: $Revision: 1.6 $
** Status: $State: Exp $
*/
static char rcsid[] = "$Revision: 1.6 $ $RCSfile: create_db_entry.c,v $";
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <time.h>
#include <stdarg.h>
#include <unistd.h>
#include "dicom.h"
#include "lst.h"
#include "cfg.h"
#include "condition.h"
#include "dulprotocol.h"
#include "dicom_objects.h"
#include "dicom_messages.h"
#include "dicom_services.h"
#include "dicom_uids.h"
#include "dbquery.h"
#include "iap.h"
#define MAXPATHLEN 150
#define MAXFILENAME 200
static char dbfile[MAXFILENAME];/* name of the DB database file */
static char imgfile[MAXFILENAME]; /* name of the image file */
static char prefmtImgfile[MAXFILENAME]; /* name of the preformatted image
* file */
static char cwd[MAXPATHLEN]; /* current working directory */
BOOLEAN verbose = FALSE;
typedef enum {
GETWDERROR, /* getwd command failed */
NOREADACCESSERROR, /* no read access to image file */
UNKNOWNCMDLINEARG, /* unknown command line argument */
DBCREATEERROR, /* data base create error */
DBOPENERROR, /* data base open error */
DCMOPENFILEERROR, /* DCM open file error */
IAPOBJTOQUERYERROR, /* IAP object to query conversion error */
DCMCLOSEOBJERROR, /* DCM close object error */
DBADDPATERROR, /* DB add patient error */
DBADDSTUDYERROR, /* DB add study error */
DBADDSERIESERROR, /* DB add series error */
DBDELIMGERROR, /* DB delete image error */
DBADDIMGERROR, /* DB add image error */
DBCLOSEERROR /* DB database close error */
} DBERRORCODES;
/* prototype declarations */
void usageError();
void myExit(unsigned int errCode);
void makeDBEntry(short dbid, char *imgfile, char *prefmtImgfile);
static void dump_query(Query * pq);
/* Main program.*/
main(int argc, char **argv)
{
CONDITION
cond; /* condition return code */
short
dbid; /* DB database id */
BOOLEAN
prepend = FALSE; /* for prepending current working directory */
(void) strcpy(cwd, "\0"); /* initialize current working directory */
/* get the current working directory */
if (!getwd(cwd))
myExit(GETWDERROR);
/* parse the command line arguments */
while (--argc > 0 && (*++argv)[0] == '-') {
switch (*(argv[0] + 1)) {
case 'v':
verbose = TRUE;
break;
case 'p':
prepend = TRUE;
break;
default:
myExit(UNKNOWNCMDLINEARG);
}
}
if (argc < 3)
usageError();
if (sscanf(*argv++, "%s", dbfile) != 1)
usageError();
/* prepend the current working directory before the filenames */
if (prepend) {
(void) sprintf(imgfile, "%s/%s", cwd, *argv++);
(void) sprintf(prefmtImgfile, "%s/%s", cwd, *argv++);
} else {
(void) sprintf(imgfile, "%s", *argv++);
(void) sprintf(prefmtImgfile, "%s", *argv++);
}
if (verbose)
printf("DB file : %s, imgfile : %s, prefmtfile : %s\n", dbfile,
imgfile, prefmtImgfile);
/*
* The first step is to open the DB database file, if it exists, else
* newly create it.
*/
cond = DB_Open(dbfile, &dbid);
if (cond != DB_NORMAL) { /* DB database file doesnot exist */
/* create the DB data base file */
cond = DB_CreateDB(dbfile);
if (cond != DB_NORMAL)
myExit(DBCREATEERROR);
/* now open the file */
cond = DB_Open(dbfile, &dbid);
if (cond != DB_NORMAL)
myExit(DBOPENERROR);
}
/* now add the image and make an entry into the data base */
if (!access(imgfile, R_OK))
makeDBEntry(dbid, imgfile, prefmtImgfile);
else
myExit(NOREADACCESSERROR);
exit(0); /* success */
}
/* usageError
**
** Purpose:
** Displays the correct mode in which the application is to be invoked
**
** Parameter Dictionary:
** None
**
** Return Values:
** None
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
void
usageError()
{
fprintf(stderr,
"Usage : create_db_entry -v dbfile imagefile prefmtImgFile\n");
exit(0);
}
/* myExit
**
** Purpose:
** Issue an appropriate error message and exit with a failure status
**
** Parameter Dictionary:
** errCode Error code
**
** Return Values:
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
void
myExit(unsigned int errCode)
{
switch (errCode) {
case GETWDERROR:
fprintf(stderr,
"getwd command failed\n");
break;
case NOREADACCESSERROR:
fprintf(stderr,
"no read access to image file\n");
break;
case UNKNOWNCMDLINEARG:
fprintf(stderr,
"unknown command line argument\n");
break;
case DBCREATEERROR:
fprintf(stderr,
"DB data base create error\n");
break;
case DBOPENERROR:
fprintf(stderr,
"DB data base open error\n");
break;
case DCMOPENFILEERROR:
fprintf(stderr,
"DCM open file error\n");
break;
case IAPOBJTOQUERYERROR:
fprintf(stderr,
"IAP object to query conversion error\n");
break;
case DCMCLOSEOBJERROR:
fprintf(stderr,
"DCM close object error\n");
break;
case DBADDPATERROR:
fprintf(stderr,
"DB add patient error\n");
break;
case DBADDSTUDYERROR:
fprintf(stderr,
"DB add study error\n");
break;
case DBADDSERIESERROR:
fprintf(stderr,
"DB add series error\n");
break;
case DBDELIMGERROR:
fprintf(stderr,
"DB delete image error\n");
break;
case DBADDIMGERROR:
fprintf(stderr,
"DB add image error\n");
break;
case DBCLOSEERROR:
fprintf(stderr,
"DB database close error\n");
break;
}
if (verbose)
COND_DumpConditions();
exit(1);
}
/* makeDBEntry
**
** Purpose:
** Adds an image file to the database.
** The patient, study, series are created in the database if they don't
** already exist. If the image UID matches an existing one, the
** existing one is deleted before the new one is added.
**
** Parameter Dictionary:
** dbid DB database id
** imgfile Image file name
** prefmtImgfile Preformatted image file name
**
** Return Values:
** NONE
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
void
makeDBEntry(short dbid, char *imgfile, char *prefmtImgfile)
{
CONDITION
cond; /* return condition status */
Query
query; /* The Query structure */
DCM_OBJECT
* object; /* Pointer to a DICOM object */
int
parseCount; /* keeps track of the number of elements
* parsed while converting from DCM object to
* Query */
/* Initialize the query structure to all null characters */
(void) memset((void *) &query, '\0', sizeof(query));
/* Read the image file and convert it into an object representation */
cond = DCM_OpenFile(imgfile, (long) DCM_ORDERLITTLEENDIAN, &object);
if (cond != DCM_NORMAL)
myExit(DCMOPENFILEERROR);
if (verbose)
DCM_DumpElements(&object);
/* Convert the object into the query structure */
cond = IAP_ObjectToQuery(&object, "", &query, &parseCount);
if (verbose) {
printf("Number of elements parsed = %d\n", parseCount);
COND_DumpConditions();
printf("Query Structure created :- \n");
dump_query(&query);
}
if (ERROR(cond))
myExit(IAPOBJTOQUERYERROR);
/* free the memory ocupied by the object */
cond = DCM_CloseObject(&object);
if (cond != DCM_NORMAL)
myExit(DCMCLOSEOBJERROR);
/*
* So far everything is fine. Now store the name of the preformatted
* image file in the FileName field in the ImageLevel structure
*/
(void) sprintf(query.Image.FileName,
"%.*s", sizeof(query.Image.FileName) - 2, prefmtImgfile);
/* now create the PATIENT, STUDY and SERIES, if they don't already exist */
cond = DB_AddPatient(dbid, &query.Patient);
if (cond != DB_NORMAL && cond != DB_DUPATIENT)
myExit(DBADDPATERROR);
cond = DB_AddStudy(dbid, query.Patient.PatID, &query.Study);
if (cond != DB_NORMAL && cond != DB_DUPSTUDY)
myExit(DBADDSTUDYERROR);
cond = DB_AddSeries(dbid, query.Patient.PatID, query.Study.StudyUID,
&query.Series);
if (cond != DB_NORMAL && cond != DB_DUPSERIES)
myExit(DBADDSERIESERROR);
cond = DB_AddImage(dbid, query.Patient.PatID, query.Study.StudyUID,
query.Series.SeriesUID, &query.Image);
if (cond == DB_DUPIMAGE) {
/* we just delete previous image and replace it by new one */
cond = DB_DelImage(dbid, query.Patient.PatID, query.Study.StudyUID,
query.Series.SeriesUID, query.Image.ImageUID);
if (cond != DB_NORMAL)
myExit(DBDELIMGERROR);
/* Now add this new image */
cond = DB_AddImage(dbid, query.Patient.PatID, query.Study.StudyUID,
query.Series.SeriesUID, &query.Image);
if (cond != DB_NORMAL)
myExit(DBADDIMGERROR);
}
if (verbose) {
dump_query(&query);
DB_DumpDB(dbid);
}
/* As a last step, we close the data base */
cond = DB_Close(dbid);
if (cond != DB_NORMAL)
myExit(DBCLOSEERROR);
}
/* dump_query
**
** Purpose:
** dumps the contents of the query structure if the verbose flag is
** set.
**
** Parameter Dictionary:
** pq Pointer to the query structure
**
** Return Values:
** None
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static void
dump_query(Query * pq)
{
printf("\n");
printf("-BEGIN OF QUERY Structures-----------------------------------\n");
printf("QUERY STATE: 0x%lX\n", pq->QueryState);
printf("PATIENT:\n");
printf(" Name: %s\n", pq->Patient.Name);
printf(" Birth: %s\n", pq->Patient.BirthDate);
printf(" PatID: %s\n", pq->Patient.PatID);
printf(" QueryFlag: 0x%lX\n", pq->Patient.Query_Flag);
printf("STUDY:\n");
printf(" Date: %s\n", pq->Study.StudyDate);
printf(" Time: %s\n", pq->Study.StudyTime);
printf(" StudyID: %s\n", pq->Study.StudyID);
printf(" StudyUID: %s\n", pq->Study.StudyUID);
printf(" Accession#: %s\n", pq->Study.AccessionNumber);
printf(" Rfrng Doc: %s\n", pq->Study.ReferringPhysName);
printf(" Intrp Doc: %s\n", pq->Study.InterpretingPhysName);
printf(" Proc Desc: %s\n", pq->Study.ProcedureDescription);
printf(" Adm Dignos: %s\n", pq->Study.AdmittingDiagnosedDescription);
printf(" QueryFlag: 0x%lX\n", pq->Study.Query_Flag);
printf("SERIES:\n");
printf(" Modality: %s\n", pq->Series.Modality);
printf(" Series #: %s\n", pq->Series.SeriesNumber);
printf(" Series UID: %s\n", pq->Series.SeriesUID);
printf(" QueryFlag: 0x%lX\n", pq->Series.Query_Flag);
printf("IMAGE\n");
printf(" Image #: %s\n", pq->Image.ImageNumber);
printf(" Class UID: %s\n", pq->Image.ClassUID);
printf(" Image UID: %s\n", pq->Image.ImageUID);
printf(" Image File: %s\n", pq->Image.FileName);
printf(" QueryFlag: 0x%lX\n", pq->Image.Query_Flag);
printf("-END OF QUERY Structures-----------------------------------\n");
printf("\n");
}
|