]> arthur.barton.de Git - netatalk.git/blob - bin/ad/ad.h
ad mv nearly done, only updating adouble file missing
[netatalk.git] / bin / ad / ad.h
1 /* 
2    Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
3    
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8  
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13 */
14
15 #ifndef AD_H
16 #define AD_H
17
18 #define _XOPEN_SOURCE 600
19
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <signal.h>
23
24 #include <atalk/ftw.h>
25 #include <atalk/volinfo.h>
26 #include <atalk/cnid.h>
27
28 #define DIR_DOT_OR_DOTDOT(a) \
29         ((strcmp(a, ".") == 0) || (strcmp(a, "..") == 0))
30
31 enum logtype {STD, DBG};
32
33 #define SLOG(...)                             \
34     _log(STD, __VA_ARGS__)
35
36 #define ERROR(...)                              \
37     do {                                        \
38         _log(STD, __VA_ARGS__);                 \
39         exit(1);                                \
40     } while (0)
41
42 typedef struct {
43     struct volinfo volinfo;
44     struct vol     volume;
45     char           db_stamp[ADEDLEN_PRIVSYN];
46 } afpvol_t;
47
48 extern int log_verbose;             /* Logging flag */
49 extern void _log(enum logtype lt, char *fmt, ...);
50
51 extern int ad_ls(int argc, char **argv);
52 extern int ad_cp(int argc, char **argv);
53 extern int ad_rm(int argc, char **argv);
54 extern int ad_mv(int argc, char **argv);
55
56 /* ad_util.c */
57 extern int openvol(const char *path, afpvol_t *vol);
58 extern void closevol(afpvol_t *vol);
59 extern cnid_t cnid_for_path(const afpvol_t *vol, const char *path, cnid_t *did);
60 extern char *utompath(const struct volinfo *volinfo, const char *upath);
61 extern int convert_dots_encoding(const afpvol_t *svol, const afpvol_t *dvol, char *path, size_t buflen);
62
63 typedef struct {
64     char *p_end;/* pointer to NULL at end of path */
65     char *target_end;/* pointer to end of target base */
66     char p_path[MAXPATHLEN + 2];/* pointer to the start of a path */
67 } PATH_T;
68
69 extern PATH_T to;
70 extern int fflag, iflag, lflag, nflag, pflag, vflag;
71
72 #endif /* AD_H */