1 ;;; url-nfs.el --- NFS URL interface
3 ;; Copyright (c) 1996,1997,1998,1999,2004 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
28 (eval-when-compile (require 'cl
))
32 (defvar url-nfs-automounter-directory-spec
34 "*How to invoke the NFS automounter. Certain % sequences are recognized.
36 %h -- the hostname of the NFS server
37 %n -- the port # of the NFS server
38 %u -- the username to use to authenticate
39 %p -- the password to use to authenticate
40 %f -- the filename on the remote server
43 Each can be used any number of times.")
45 (defun url-nfs-unescape (format host port user pass file
)
47 (set-buffer (get-buffer-create " *nfs-parse*"))
50 (goto-char (point-min))
51 (while (re-search-forward "%\\(.\\)" nil t
)
52 (let ((escape (aref (match-string 1) 0)))
53 (replace-match "" t t
)
57 (?n
(insert (or port
"")))
58 (?u
(insert (or user
"")))
59 (?p
(insert (or pass
"")))
60 (?f
(insert (or file
"/"))))))
63 (defun url-nfs-build-filename (url)
64 (let* ((host (url-host url
))
66 (pass (url-password url
))
68 (file (url-filename url
)))
69 (url-generic-parse-url
70 (url-nfs-unescape url-nfs-automounter-directory-spec
71 host port user pass file
))))
73 (defun url-nfs (url callback cbargs
)
74 (url-file (url-nfs-build-filename url
) callback cbargs
))
76 (defmacro url-nfs-create-wrapper
(method args
)
77 `(defun ,(intern (format "url-nfs-%s" method
)) ,args
78 ,(format "NFS URL wrapper around `%s' call." method
)
79 (setq url
(url-nfs-build-filename url
))
80 (and url
(,(intern (format "url-file-%s" method
))
81 ,@(remove '&rest
(remove '&optional args
))))))
83 (url-nfs-create-wrapper file-exists-p
(url))
84 (url-nfs-create-wrapper file-attributes
(url &optional id-format
))
85 (url-nfs-create-wrapper file-symlink-p
(url))
86 (url-nfs-create-wrapper file-readable-p
(url))
87 (url-nfs-create-wrapper file-writable-p
(url))
88 (url-nfs-create-wrapper file-executable-p
(url))
89 (if (featurep 'xemacs
)
91 (url-nfs-create-wrapper directory-files
(url &optional full match nosort files-only
))
92 (url-nfs-create-wrapper file-truename
(url &optional default
)))
93 (url-nfs-create-wrapper directory-files
(url &optional full match nosort
))
94 (url-nfs-create-wrapper file-truename
(url &optional counter prev-dirs
)))
98 ;; arch-tag: cdf9c9ba-b7d2-4c29-8b48-7ae9bbc0d437
99 ;;; url-nfs.el ends here