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