1 ;;; url-nfs.el --- NFS URL interface
3 ;; Copyright (C) 1996-1999, 2004-2012 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 3 of the License, or
12 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
26 (eval-when-compile (require 'cl
))
30 (defcustom url-nfs-automounter-directory-spec
"file:/net/%h%f"
31 "How to invoke the NFS automounter. Certain % sequences are recognized.
33 %h -- the hostname of the NFS server
34 %n -- the port # of the NFS server
35 %u -- the username to use to authenticate
36 %p -- the password to use to authenticate
37 %f -- the filename on the remote server
40 Each can be used any number of times."
44 (defun url-nfs-unescape (format host port user pass file
)
45 (with-current-buffer (get-buffer-create " *nfs-parse*")
48 (goto-char (point-min))
49 (while (re-search-forward "%\\(.\\)" nil t
)
50 (let ((escape (aref (match-string 1) 0)))
51 (replace-match "" t t
)
55 (?n
(insert (or port
"")))
56 (?u
(insert (or user
"")))
57 (?p
(insert (or pass
"")))
58 (?f
(insert (or file
"/"))))))
61 (defun url-nfs-build-filename (url)
62 (let* ((host (url-host url
))
64 (pass (url-password url
))
66 (file (url-filename url
)))
67 (url-generic-parse-url
68 (url-nfs-unescape url-nfs-automounter-directory-spec
69 host port user pass file
))))
71 (defun url-nfs (url callback cbargs
)
72 (url-file (url-nfs-build-filename url
) callback cbargs
))
74 (defmacro url-nfs-create-wrapper
(method args
)
75 `(defun ,(intern (format "url-nfs-%s" method
)) ,args
76 ,(format "NFS URL wrapper around `%s' call." method
)
77 (setq url
(url-nfs-build-filename url
))
78 (and url
(,(intern (format "url-file-%s" method
))
79 ,@(remove '&rest
(remove '&optional args
))))))
81 (url-nfs-create-wrapper file-exists-p
(url))
82 (url-nfs-create-wrapper file-attributes
(url &optional id-format
))
83 (url-nfs-create-wrapper file-symlink-p
(url))
84 (url-nfs-create-wrapper file-readable-p
(url))
85 (url-nfs-create-wrapper file-writable-p
(url))
86 (url-nfs-create-wrapper file-executable-p
(url))
87 (url-nfs-create-wrapper directory-files
(url &optional full match nosort
))
88 (url-nfs-create-wrapper file-truename
(url &optional counter prev-dirs
))
92 ;;; url-nfs.el ends here