This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/mbfile.c

236 lines
5.6 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
* $Id$
* Purpose: File Database Maintenance
2001-08-17 05:46:24 +00:00
*
*****************************************************************************
* 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"
2001-11-18 23:19:08 +00:00
#include "mbfkill.h"
#include "mbfadopt.h"
#include "mbfindex.h"
#include "mbfcheck.h"
#include "mbfpack.h"
#include "mbflist.h"
2001-11-25 12:18:18 +00:00
#include "mbfimport.h"
2001-11-25 16:38:06 +00:00
#include "mbftoberep.h"
2001-12-02 19:17:14 +00:00
#include "mbfmove.h"
2001-11-18 23:19:08 +00:00
#include "mbfutil.h"
2001-08-17 05:46:24 +00:00
#include "mbfile.h"
extern int do_quiet; /* Supress screen output */
2001-11-25 16:38:06 +00:00
int do_annon = FALSE; /* Suppress announce on new files */
2001-11-18 23:19:08 +00:00
int do_adopt = FALSE; /* Adopt a file */
2001-08-17 05:46:24 +00:00
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 */
2001-11-25 12:18:18 +00:00
int do_import= FALSE; /* Import files in area */
2001-10-19 13:04:37 +00:00
int do_list = FALSE; /* List fileareas */
2001-11-25 16:38:06 +00:00
int do_tobe = FALSE; /* List toberep database */
2001-12-02 19:17:14 +00:00
int do_move = FALSE; /* Move a file */
2001-08-17 05:46:24 +00:00
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)
{
2001-12-02 19:17:14 +00:00
int i, Area = 0, ToArea = 0;
2001-11-18 23:19:08 +00:00
char *cmd, *FileName = NULL, *Description = NULL;
2001-08-17 05:46:24 +00:00
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 *)" ");
2001-11-25 16:38:06 +00:00
cmd = xstrcat(cmd, argv[i]);
2001-08-17 05:46:24 +00:00
2001-11-25 16:38:06 +00:00
if (!strncasecmp(argv[i], "a", 1)) {
2001-11-18 23:19:08 +00:00
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]);
2001-11-25 16:38:06 +00:00
if (!strncasecmp(argv[i], "-a", 2)) {
do_annon = TRUE;
} else {
Description = xstrcpy(argv[i]);
}
2001-11-18 23:19:08 +00:00
}
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "in", 2)) {
2001-08-17 05:46:24 +00:00
do_index = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "im", 2)) {
2001-11-25 12:18:18 +00:00
if (argc > (i + 1)) {
do_import = TRUE;
i++;
Area = atoi(argv[i]);
cmd = xstrcat(cmd, (char *)" ");
cmd = xstrcat(cmd, argv[i]);
}
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "l", 1)) {
2001-10-19 13:04:37 +00:00
do_list = TRUE;
2001-11-25 14:13:55 +00:00
if (argc > (i + 1)) {
i++;
Area = atoi(argv[i]);
cmd = xstrcat(cmd, (char *)" ");
cmd = xstrcat(cmd, argv[i]);
}
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "m", 1)) {
2001-12-02 19:17:14 +00:00
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;
}
}
}
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "p", 1)) {
2001-08-17 05:46:24 +00:00
do_pack = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "c", 1)) {
2001-08-17 05:46:24 +00:00
do_check = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "k", 1)) {
2001-08-17 05:46:24 +00:00
do_kill = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "t", 1)) {
2001-11-25 16:38:06 +00:00
do_tobe = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "-q", 2)) {
2001-08-17 05:46:24 +00:00
do_quiet = TRUE;
2001-12-02 20:49:36 +00:00
} else if (!strncasecmp(argv[i], "-a", 2)) {
do_annon = TRUE;
}
2001-08-17 05:46:24 +00:00
}
2001-12-02 20:49:36 +00:00
if (!(do_pack || do_check || do_kill || do_index || do_import || do_list || do_adopt || do_move || do_tobe))
2001-08-17 05:46:24 +00:00
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)
2001-12-02 19:17:14 +00:00
printf("\n");
2001-08-17 05:46:24 +00:00
if (!diskfree(CFG.freespace))
2001-12-02 19:17:14 +00:00
die(101);
2001-08-17 05:46:24 +00:00
2001-12-02 19:17:14 +00:00
if (do_adopt) {
AdoptFile(Area, FileName, Description);
die(0);
}
2001-11-18 23:19:08 +00:00
2001-12-02 19:17:14 +00:00
if (do_import) {
ImportFiles(Area);
die(0);
}
2001-11-25 12:18:18 +00:00
2001-08-17 05:46:24 +00:00
if (do_kill)
Kill();
if (do_check)
Check();
if (do_pack)
PackFileBase();
if (do_index)
Index();
2001-12-02 19:17:14 +00:00
if (do_move) {
Move(Area, ToArea, FileName);
die(0);
}
if (do_list) {
ListFileAreas(Area);
die(0);
}
2001-10-19 13:04:37 +00:00
2001-11-25 16:38:06 +00:00
if (do_tobe)
ToBeRep();
2001-08-17 05:46:24 +00:00
die(0);
return 0;
}
2001-10-19 13:04:37 +00:00