]>
Dogcows Code - chaz/tar/blob - src/rmt.h
1 /* Remote tape drive defines for tar.
2 Copyright (C) 1988 Free Software Foundation
4 This file is part of GNU Tar.
6 GNU Tar is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Tar is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Tar; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 #if defined(HAVE_UNISTD_H)
22 #endif /* HAVE_UNISTD_H */
24 #if !defined(_POSIX_VERSION)
27 #else /* !__MSDOS__ */
29 #endif /* __MSDOS__ */
30 #endif /* _POSIX_VERSION */
35 #define rmtaccess access
37 #define rmtcreat creat
38 #define rmtlstat lstat
40 #define rmtwrite write
41 #define rmtlseek lseek
42 #define rmtclose close
43 #define rmtioctl ioctl
45 #define rmtfstat fstat
46 #define rmtfcntl fcntl
47 #define rmtisatty isatty
49 #else /* !NO_REMOTE */
51 #define __REM_BIAS 128
58 extern char *__rmt_path
;
60 extern long __rmt_lseek();
62 #if !defined(USG) && !defined(STDC_HEADERS)
65 extern char *strchr();
67 #define _remdev(path) ((__rmt_path=strchr(path, ':')) && strncmp(__rmt_path, ":/dev/", 6)==0)
68 #define _isrmt(fd) ((fd) >= __REM_BIAS)
70 #define rmtopen(path,oflag,mode) (_remdev(path) ? __rmt_open(path, oflag, mode, __REM_BIAS) : open(path, oflag, mode))
71 #define rmtaccess(path, amode) (_remdev(path) ? 0 : access(path, amode))
72 #define rmtstat(path, buf) (_remdev(path) ? (errno = EOPNOTSUPP), -1 : stat(path, buf))
73 #define rmtcreat(path, mode) (_remdev(path) ? __rmt_open (path, 1 | O_CREAT, mode, __REM_BIAS) : creat(path, mode))
74 #define rmtlstat(path,buf) (_remdev(path) ? (errno = EOPNOTSUPP), -1 : lstat(path,buf))
76 #define rmtread(fd, buf, n) (_isrmt(fd) ? __rmt_read(fd - __REM_BIAS, buf, n) : read(fd, buf, n))
77 #define rmtwrite(fd, buf, n) (_isrmt(fd) ? __rmt_write(fd - __REM_BIAS, buf, n) : write(fd, buf, n))
78 #define rmtlseek(fd, off, wh) (_isrmt(fd) ? __rmt_lseek(fd - __REM_BIAS, off, wh) : lseek(fd, off, wh))
79 #define rmtclose(fd) (_isrmt(fd) ? __rmt_close(fd - __REM_BIAS) : close(fd))
81 #define rmtioctl(fd,req,arg) (_isrmt(fd) ? __rmt_ioctl(fd - __REM_BIAS, req, arg) : ioctl(fd, req, arg))
83 #define rmtioctl(fd,req,arg) (_isrmt(fd) ? (errno = EOPNOTSUPP), -1 : ioctl(fd, req, arg))
85 #define rmtdup(fd) (_isrmt(fd) ? (errno = EOPNOTSUPP), -1 : dup(fd))
86 #define rmtfstat(fd, buf) (_isrmt(fd) ? (errno = EOPNOTSUPP), -1 : fstat(fd, buf))
87 #define rmtfcntl(fd,cmd,arg) (_isrmt(fd) ? (errno = EOPNOTSUPP), -1 : fcntl (fd, cmd, arg))
88 #define rmtisatty(fd) (_isrmt(fd) ? 0 : isatty(fd))
91 #endif /* !NO_REMOTE */
This page took 0.038533 seconds and 5 git commands to generate.