Annotation of freem/src/fmadm.h, revision 1.1
1.1 ! snw 1: /*
! 2: * *
! 3: * * *
! 4: * * *
! 5: * ***************
! 6: * * * * *
! 7: * * MUMPS *
! 8: * * * * *
! 9: * ***************
! 10: * * *
! 11: * * *
! 12: * *
! 13: *
! 14: * fmadm.h
! 15: * FreeM Administrative Tool
! 16: *
! 17: *
! 18: * Author: Serena Willis <jpw@coherent-logic.com>
! 19: * Copyright (C) 1998 MUG Deutschland
! 20: * Copyright (C) 2020 Coherent Logic Development LLC
! 21: *
! 22: *
! 23: * This file is part of FreeM.
! 24: *
! 25: * FreeM is free software: you can redistribute it and/or modify
! 26: * it under the terms of the GNU Affero Public License as published by
! 27: * the Free Software Foundation, either version 3 of the License, or
! 28: * (at your option) any later version.
! 29: *
! 30: * FreeM is distributed in the hope that it will be useful,
! 31: * but WITHOUT ANY WARRANTY; without even the implied warranty of
! 32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! 33: * GNU Affero Public License for more details.
! 34: *
! 35: * You should have received a copy of the GNU Affero Public License
! 36: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
! 37: *
! 38: **/
! 39:
! 40: #if !defined(_FMADM_H)
! 41: #define _FMADM_H
! 42:
! 43: #include "mpsdef0.h"
! 44:
! 45: #include "fma_globals.h"
! 46: #include "fma_journals.h"
! 47: #include "fma_locks.h"
! 48: #include "fma_routines.h"
! 49: #include "fma_jobs.h"
! 50: #include "fma_gedit.h"
! 51:
! 52: #define FMA_MAXARGS 30
! 53:
! 54: #define FMAC_SELECT 0
! 55: #define FMAC_LIST 1
! 56: #define FMAC_EXAMINE 2
! 57: #define FMAC_VERIFY 3
! 58: #define FMAC_COMPACT 4
! 59: #define FMAC_REPAIR 5
! 60: #define FMAC_CREATE 6
! 61: #define FMAC_REMOVE 7
! 62: #define FMAC_IMPORT 8
! 63: #define FMAC_EXPORT 9
! 64: #define FMAC_BACKUP 10
! 65: #define FMAC_RESTORE 11
! 66: #define FMAC_MIGRATE 12
! 67: #define FMAC_EDIT 13
! 68: #define FMAC_SET 14
! 69: #define FMAC_SHOW 15
! 70: #define FMAC_EXIT 100
! 71: #define FMAC_INVALID 255
! 72:
! 73: #define ACT_LIST 0
! 74: #define ACT_EXAMINE 1
! 75: #define ACT_VERIFY 2
! 76: #define ACT_COMPACT 3
! 77: #define ACT_REPAIR 4
! 78: #define ACT_CREATE 5
! 79: #define ACT_REMOVE 6
! 80: #define ACT_IMPORT 7
! 81: #define ACT_EXPORT 8
! 82: #define ACT_BACKUP 9
! 83: #define ACT_RESTORE 10
! 84: #define ACT_MIGRATE 11
! 85: #define ACT_EDIT 12
! 86:
! 87: #define OBJ_LOCK 0
! 88: #define OBJ_ZALLOC 1
! 89: #define OBJ_JOURNAL 2
! 90: #define OBJ_NAMESPACE 3
! 91: #define OBJ_GLOBAL 4
! 92: #define OBJ_ROUTINE 5
! 93: #define OBJ_HARDCOPY 6
! 94: #define OBJ_RGAPROTOCOL 7
! 95: #define OBJ_JOB 8
! 96:
! 97: #define UNSIGN(A) ((A)&0377)
! 98:
! 99: #if !defined(PATH_MAX)
! 100: # define PATH_MAX 1024
! 101: #endif
! 102:
! 103: int fmadm_usage (void);
! 104: void fmadm_exit (int retval);
! 105: int fm_list (short object, int optc, char **options);
! 106: int fm_examine (short object, int optc, char **options);
! 107: int fm_verify (short object, int optc, char **options);
! 108: int fm_compact (short object, int optc, char **options);
! 109: int fm_repair (short object, int optc, char **options);
! 110: int fm_create (short object, int optc, char **options);
! 111: int fm_remove (short object, int optc, char **options);
! 112: int fm_import (short object, int optc, char **options);
! 113: int fm_export (short object, int optc, char **options);
! 114: int fm_backup (short object, int optc, char **options);
! 115: int fm_restore (short object, int optc, char **options);
! 116: int fm_migrate (short object, int optc, char **options);
! 117: int fm_edit (short object, int optc, char **options);
! 118:
! 119: void fm_sig_attach (int sig, void *handler);
! 120: void fm_sig_init (void);
! 121: void fm_on_sigint (void);
! 122: void fm_on_sigterm (void);
! 123:
! 124: extern char fma_namespace[STRLEN];
! 125: extern char fma_locktab[STRLEN];
! 126: extern char fma_routine_path[STRLEN];
! 127: extern char fma_global_path[STRLEN];
! 128: extern char fma_journal_path[STRLEN];
! 129: extern char fma_pct_global_path[STRLEN];
! 130: extern char fma_pct_routine_path[STRLEN];
! 131: extern char fma_journal_cut_threshold[STRLEN];
! 132:
! 133: extern char gloplib[PATHLEN];
! 134: extern char glopath[PATHLEN];
! 135:
! 136: extern pid_t pid;
! 137:
! 138: extern short fma_base_opt;
! 139: extern short fma_min_args;
! 140:
! 141: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>