/************************************************************************************************* * Mutual converter between a database of Villa and a TSV text * Copyright (C) 2000-2003 Mikio Hirabayashi * This file is part of QDBM, Quick Database Manager. * QDBM is free software; you can redistribute it and/or modify it under the terms of the GNU * Lesser General Public License as published by the Free Software Foundation; either version * 2.1 of the License or any later version. QDBM is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * You should have received a copy of the GNU Lesser General Public License along with QDBM; if * not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA. *************************************************************************************************/ #include #include #include #include #include #include #undef TRUE #define TRUE 1 /* boolean true */ #undef FALSE #define FALSE 0 /* boolean false */ /* for RISC OS */ #if defined(__riscos__) || defined(__riscos) #include int __riscosify_control = __RISCOSIFY_NO_PROCESS; #endif /* global variables */ const char *progname; /* program name */ /* function prototypes */ int main(int argc, char **argv); void usage(void); int runimport(int argc, char **argv); int runexport(int argc, char **argv); void pdperror(const char *name); char *getl(void); int doimport(const char *name); int doexport(const char *name); /* main routine */ int main(int argc, char **argv){ int rv; progname = argv[0]; if(argc < 2) usage(); rv = 0; if(!strcmp(argv[1], "import")){ rv = runimport(argc, argv); } else if(!strcmp(argv[1], "export")){ rv = runexport(argc, argv); } else { usage(); } return rv; } /* print the usage and exit */ void usage(void){ fprintf(stderr, "%s: mutual converter between TSV and Villa database\n", progname); fprintf(stderr, "\n"); fprintf(stderr, "usage:\n"); fprintf(stderr, " %s import name\n", progname); fprintf(stderr, " %s export name\n", progname); exit(1); } /* parse arguments of import command */ int runimport(int argc, char **argv){ char *name; int i, rv; name = NULL; for(i = 2; i < argc; i++){ if(!name && argv[i][0] == '-'){ usage(); } else if(!name){ name = argv[i]; } else { usage(); } } if(!name) usage(); rv = doimport(name); return rv; } /* parse arguments of export command */ int runexport(int argc, char **argv){ char *name; int i, rv; name = NULL; for(i = 2; i < argc; i++){ if(!name && argv[i][0] == '-'){ usage(); } else if(!name){ name = argv[i]; } else { usage(); } } if(!name) usage(); rv = doexport(name); return rv; } /* print an error message */ void pdperror(const char *name){ fprintf(stderr, "%s: %s: %s\n", progname, name, dperrmsg(dpecode)); } /* read a line */ char *getl(void){ char *buf; int c, len, blen; buf = NULL; len = 0; blen = 256; while((c = getchar()) != EOF){ if(blen <= len) blen *= 2; if(!(buf = realloc(buf, blen + 1))){ fprintf(stderr, "out of memory\n"); exit(1); } if(c == '\n') c = '\0'; buf[len++] = c; if(c == '\0') break; } if(!buf) return NULL; buf[len] = '\0'; return buf; } /* perform import command */ int doimport(const char *name){ VILLA *villa; char *buf, *key, *val; int i, err; /* open a database */ if(!(villa = vlopen(name, VL_OWRITER | VL_OCREAT, VL_CMPLEX))){ pdperror(name); return 1; } /* loop for each line */ err = FALSE; for(i = 1; (buf = getl()) != NULL; i++){ key = buf; if((val = strchr(buf, '\t')) != NULL){ *val = '\0'; val++; /* store a record */ if(!vlput(villa, key, -1, val, -1, VL_DDUP)){ pdperror(name); err = TRUE; break; } } else { fprintf(stderr, "%s: %s: invalid format in line %d\n", progname, name, i); } free(buf); if(err) break; } /* close the database */ if(!vlclose(villa)){ pdperror(name); return 1; } return err ? 1 : 0; } /* perform export command */ int doexport(const char *name){ VILLA *villa; char *key, *val; /* open a database */ if(!(villa = vlopen(name, VL_OREADER, VL_CMPLEX))){ pdperror(name); return 1; } /* initialize the cursor */ vlcurfirst(villa); /* loop for each key */ while((key = vlcurkey(villa, NULL)) != NULL){ /* retrieve a value with a key */ val = vlcurval(villa, NULL); if(val) printf("%s\t%s\n", key, val); free(val); free(key); vlcurnext(villa); } /* close the database */ if(!vlclose(villa)){ pdperror(name); return 1; } return 0; } /* END OF FILE */