/***************************************************************************** * * $Id$ * Purpose: File Database Maintenance * ***************************************************************************** * Copyright (C) 1997-2001 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 * 1971 BV IJmuiden * the Netherlands * * This file is part of MBSE BBS. * * This BBS is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * MBSE BBS 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MBSE BBS; see the file COPYING. If not, write to the Free * Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. *****************************************************************************/ #include "../lib/libs.h" #include "../lib/structs.h" #include "../lib/records.h" #include "../lib/common.h" #include "../lib/clcomm.h" #include "../lib/dbcfg.h" #include "mbfkill.h" #include "mbfadopt.h" #include "mbfindex.h" #include "mbfcheck.h" #include "mbfpack.h" #include "mbflist.h" #include "mbfimport.h" #include "mbftoberep.h" #include "mbfmove.h" #include "mbfutil.h" #include "mbfile.h" extern int do_quiet; /* Supress screen output */ int do_annon = FALSE; /* Suppress announce on new files */ int do_adopt = FALSE; /* Adopt a file */ int do_pack = FALSE; /* Pack filebase */ int do_check = FALSE; /* Check filebase */ int do_kill = FALSE; /* Kill/move old files */ int do_index = FALSE; /* Create request index */ int do_import= FALSE; /* Import files in area */ int do_list = FALSE; /* List fileareas */ int do_tobe = FALSE; /* List toberep database */ int do_move = FALSE; /* Move a file */ extern int e_pid; /* Pid of external process */ extern int show_log; /* Show logging */ time_t t_start; /* Start time */ time_t t_end; /* End time */ int main(int argc, char **argv) { int i, Area = 0, ToArea = 0; char *cmd, *FileName = NULL, *Description = NULL; struct passwd *pw; #ifdef MEMWATCH mwInit(); #endif InitConfig(); TermInit(1); time(&t_start); umask(002); /* * Catch all signals we can, and ignore the rest. */ for (i = 0; i < NSIG; i++) { if ((i == SIGHUP) || (i == SIGBUS) || (i == SIGKILL) || (i == SIGILL) || (i == SIGSEGV) || (i == SIGTERM)) signal(i, (void (*))die); else signal(i, SIG_IGN); } if(argc < 2) Help(); cmd = xstrcpy((char *)"Command line: mbfile"); for (i = 1; i < argc; i++) { cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (!strncasecmp(argv[i], "a", 1)) { do_adopt = TRUE; i++; Area = atoi(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); i++; FileName = xstrcpy(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (argc > (i + 1)) { i++; cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (!strncasecmp(argv[i], "-a", 2)) { do_annon = TRUE; } else { Description = xstrcpy(argv[i]); if (argc > (i + 1)) { i++; cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (!strncasecmp(argv[i], "-a", 2)) { do_annon = TRUE; } } } } } if (!strncasecmp(argv[i], "in", 2)) do_index = TRUE; if (!strncasecmp(argv[i], "im", 2)) { if (argc > (i + 1)) { do_import = TRUE; i++; Area = atoi(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); } } if (!strncasecmp(argv[i], "l", 1)) { do_list = TRUE; if (argc > (i + 1)) { i++; Area = atoi(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); } } if (!strncasecmp(argv[i], "m", 1)) { if (argc > (i + 1)) { i++; Area = atoi(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (argc > (i + 1)) { i++; ToArea = atoi(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); if (argc > (i + 1)) { i++; FileName = xstrcpy(argv[i]); cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); do_move = TRUE; } } } } if (!strncasecmp(argv[i], "p", 1)) do_pack = TRUE; if (!strncasecmp(argv[i], "c", 1)) do_check = TRUE; if (!strncasecmp(argv[i], "k", 1)) do_kill = TRUE; if (!strncasecmp(argv[i], "t", 1)) do_tobe = TRUE; if (!strncasecmp(argv[i], "-q", 2)) do_quiet = TRUE; } if (!(do_pack || do_check || do_kill || do_index || do_import || do_list || do_adopt || do_tobe)) Help(); ProgName(); pw = getpwuid(getuid()); InitClient(pw->pw_name, (char *)"mbfile", CFG.location, CFG.logfile, CFG.util_loglevel, CFG.error_log); Syslog(' ', " "); Syslog(' ', "MBFILE v%s", VERSION); Syslog(' ', cmd); free(cmd); if (!do_quiet) printf("\n"); if (!diskfree(CFG.freespace)) die(101); if (do_adopt) { AdoptFile(Area, FileName, Description); die(0); } if (do_import) { ImportFiles(Area); die(0); } if (do_kill) Kill(); if (do_check) Check(); if (do_pack) PackFileBase(); if (do_index) Index(); if (do_move) { Move(Area, ToArea, FileName); die(0); } if (do_list) { ListFileAreas(Area); die(0); } if (do_tobe) ToBeRep(); die(0); return 0; }