Mercurial > emacs
annotate lisp/url/url-nfs.el @ 94865:f413ee341af0
(smerge-start-session): Revert unintended change in revision 1.69.
author | Reiner Steib <Reiner.Steib@gmx.de> |
---|---|
date | Sun, 11 May 2008 20:26:00 +0000 |
parents | 8259d0d8e107 |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
54695 | 1 ;;; url-nfs.el --- NFS URL interface |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, |
79720 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Keywords: comm, data, processes |
7 | |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
13 ;; (at your option) any later version. |
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
14 |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; GNU General Public License for more details. |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
19 |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79720
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
22 |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
23 ;;; Commentary: |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 ;;; Code: |
54695 | 26 |
27 (eval-when-compile (require 'cl)) | |
28 (require 'url-parse) | |
29 (require 'url-file) | |
30 | |
31 (defvar url-nfs-automounter-directory-spec | |
32 "file:/net/%h%f" | |
33 "*How to invoke the NFS automounter. Certain % sequences are recognized. | |
34 | |
35 %h -- the hostname of the NFS server | |
36 %n -- the port # of the NFS server | |
37 %u -- the username to use to authenticate | |
38 %p -- the password to use to authenticate | |
39 %f -- the filename on the remote server | |
40 %% -- a literal % | |
41 | |
42 Each can be used any number of times.") | |
43 | |
44 (defun url-nfs-unescape (format host port user pass file) | |
45 (save-excursion | |
46 (set-buffer (get-buffer-create " *nfs-parse*")) | |
47 (erase-buffer) | |
48 (insert format) | |
49 (goto-char (point-min)) | |
50 (while (re-search-forward "%\\(.\\)" nil t) | |
51 (let ((escape (aref (match-string 1) 0))) | |
52 (replace-match "" t t) | |
53 (case escape | |
54 (?% (insert "%")) | |
55 (?h (insert host)) | |
56 (?n (insert (or port ""))) | |
57 (?u (insert (or user ""))) | |
58 (?p (insert (or pass ""))) | |
59 (?f (insert (or file "/")))))) | |
60 (buffer-string))) | |
61 | |
62 (defun url-nfs-build-filename (url) | |
63 (let* ((host (url-host url)) | |
57886
60d07d8a52e1
* url-imap.el (url-imap-open-host): Don't use
Masatake YAMATO <jet@gyve.org>
parents:
57427
diff
changeset
|
64 (port (url-port url)) |
54695 | 65 (pass (url-password url)) |
66 (user (url-user url)) | |
67 (file (url-filename url))) | |
68 (url-generic-parse-url | |
69 (url-nfs-unescape url-nfs-automounter-directory-spec | |
70 host port user pass file)))) | |
71 | |
72 (defun url-nfs (url callback cbargs) | |
73 (url-file (url-nfs-build-filename url) callback cbargs)) | |
74 | |
75 (defmacro url-nfs-create-wrapper (method args) | |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
76 `(defun ,(intern (format "url-nfs-%s" method)) ,args |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
77 ,(format "NFS URL wrapper around `%s' call." method) |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
78 (setq url (url-nfs-build-filename url)) |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
79 (and url (,(intern (format "url-file-%s" method)) |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
80 ,@(remove '&rest (remove '&optional args)))))) |
54695 | 81 |
82 (url-nfs-create-wrapper file-exists-p (url)) | |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
83 (url-nfs-create-wrapper file-attributes (url &optional id-format)) |
54695 | 84 (url-nfs-create-wrapper file-symlink-p (url)) |
85 (url-nfs-create-wrapper file-readable-p (url)) | |
86 (url-nfs-create-wrapper file-writable-p (url)) | |
87 (url-nfs-create-wrapper file-executable-p (url)) | |
66225 | 88 (url-nfs-create-wrapper directory-files (url &optional full match nosort)) |
89 (url-nfs-create-wrapper file-truename (url &optional counter prev-dirs)) | |
54695 | 90 |
91 (provide 'url-nfs) | |
54699 | 92 |
54934
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
93 ;; arch-tag: cdf9c9ba-b7d2-4c29-8b48-7ae9bbc0d437 |
2fc584798d79
(url-nfs-file-attributes): Add id-format parameter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
94 ;;; url-nfs.el ends here |