]> git.eshelyaron.com Git - emacs.git/commitdiff
Some minor Tramp cleanups
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 22 Nov 2018 15:29:25 +0000 (16:29 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 22 Nov 2018 15:29:25 +0000 (16:29 +0100)
* lisp/net/tramp-adb.el (tramp-adb-file-name-p):
* lisp/net/tramp-ftp.el (tramp-ftp-file-name-p):
* lisp/net/tramp-smb.el (tramp-smb-file-name-p): Make it more robust.

* lisp/net/tramp.el (tramp-handle-file-truename): Cache only the
localname.

lisp/net/tramp-adb.el
lisp/net/tramp-ftp.el
lisp/net/tramp-gvfs.el
lisp/net/tramp-smb.el
lisp/net/tramp.el

index 36374f88e0d94cf90a41343cb43f3c07c32ede0b..00c6ad43ea1e16e9417a885378bd18bb2b9b692a 100644 (file)
@@ -173,8 +173,9 @@ It is used for TCP/IP devices."
 ;;;###tramp-autoload
 (defsubst tramp-adb-file-name-p (filename)
   "Check if it's a filename for ADB."
-  (let ((v (tramp-dissect-file-name filename)))
-    (string= (tramp-file-name-method v) tramp-adb-method)))
+  (and (tramp-tramp-file-p filename)
+       (string= (tramp-file-name-method (tramp-dissect-file-name filename))
+               tramp-adb-method)))
 
 ;;;###tramp-autoload
 (defun tramp-adb-file-name-handler (operation &rest args)
index 983f168ddb45f1a5e5719d92799529b624380fac..5d8b56e218f57eb017ed23ea8f8c34312b87d0dc 100644 (file)
@@ -183,8 +183,9 @@ pass to the OPERATION."
 ;;;###tramp-autoload
 (defsubst tramp-ftp-file-name-p (filename)
   "Check if it's a filename that should be forwarded to Ange-FTP."
-  (string= (tramp-file-name-method (tramp-dissect-file-name filename))
-          tramp-ftp-method))
+  (and (tramp-tramp-file-p filename)
+       (string= (tramp-file-name-method (tramp-dissect-file-name filename))
+               tramp-ftp-method)))
 
 ;;;###tramp-autoload
 (add-to-list 'tramp-foreign-file-name-handler-alist
index c150edf3f13635bd57480695dc5ac0287e7f8c69..fb687f0d7bd7a871fa1356f9a037bd339fcd450a 100644 (file)
@@ -2088,7 +2088,7 @@ This uses \"avahi-browse\" in case D-Bus is not enabled in Avahi."
 ;;; TODO:
 
 ;; * (Customizable) unmount when exiting Emacs.  See tramp-archive.el.
-
+;;
 ;; * Host name completion for existing mount points (afp-server,
 ;;   smb-server, google-drive, nextcloud) or via smb-network or network.
 ;;
index a97b801730048826794c4f013bdb8f30568035c5..eadb4029b5470055f732b6ed3c6b7a98c08d206c 100644 (file)
@@ -321,8 +321,9 @@ This can be used to disable echo etc."
 ;;;###tramp-autoload
 (defsubst tramp-smb-file-name-p (filename)
   "Check if it's a filename for SMB servers."
-  (string= (tramp-file-name-method (tramp-dissect-file-name filename))
-          tramp-smb-method))
+  (and (tramp-tramp-file-p filename)
+       (string= (tramp-file-name-method (tramp-dissect-file-name filename))
+               tramp-smb-method)))
 
 ;;;###tramp-autoload
 (defun tramp-smb-file-name-handler (operation &rest args)
index 8362d7875255aa1c9eebaeb2dfe1a205027b24d2..97f931a4a442b03af1167728627623d3b1a0f0e5 100644 (file)
@@ -3301,31 +3301,34 @@ User is always nil."
         (numchase-limit 20)
         symlink-target)
      (with-parsed-tramp-file-name result v1
-       (with-tramp-file-property v1 v1-localname "file-truename"
-        (while (and (setq symlink-target (file-symlink-p result))
-                    (< numchase numchase-limit))
-          (setq numchase (1+ numchase)
-                result
-                (with-parsed-tramp-file-name (expand-file-name result) v2
-                  (tramp-make-tramp-file-name
-                   v2
-                   (funcall
-                    (if (tramp-compat-file-name-quoted-p v2-localname)
-                        'tramp-compat-file-name-quote 'identity)
-
-                    (if (stringp symlink-target)
-                        (if (file-remote-p symlink-target)
-                            (let (file-name-handler-alist)
-                              (tramp-compat-file-name-quote symlink-target))
-                          (expand-file-name
-                           symlink-target (file-name-directory v2-localname)))
-                      v2-localname))
-                   'nohop)))
-          (when (>= numchase numchase-limit)
-            (tramp-error
-             v1 'file-error
-             "Maximum number (%d) of symlinks exceeded" numchase-limit)))
-        (directory-file-name result))))))
+       ;; We cache only the localname.
+       (tramp-make-tramp-file-name
+       v1
+       (with-tramp-file-property v1 v1-localname "file-truename"
+         (while (and (setq symlink-target (file-symlink-p result))
+                     (< numchase numchase-limit))
+           (setq numchase (1+ numchase)
+                 result
+                 (with-parsed-tramp-file-name (expand-file-name result) v2
+                   (tramp-make-tramp-file-name
+                    v2
+                    (funcall
+                     (if (tramp-compat-file-name-quoted-p v2-localname)
+                         'tramp-compat-file-name-quote 'identity)
+
+                     (if (stringp symlink-target)
+                         (if (file-remote-p symlink-target)
+                             (let (file-name-handler-alist)
+                               (tramp-compat-file-name-quote symlink-target))
+                           (expand-file-name
+                            symlink-target (file-name-directory v2-localname)))
+                       v2-localname))
+                    'nohop)))
+           (when (>= numchase numchase-limit)
+             (tramp-error
+              v1 'file-error
+              "Maximum number (%d) of symlinks exceeded" numchase-limit)))
+         (file-local-name (directory-file-name result))))))))
 
 (defun tramp-handle-find-backup-file-name (filename)
   "Like `find-backup-file-name' for Tramp files."