vc-hooks.el workaround for bug#11490
[emacs.git] / src / cygw32.c
blobd9777d5e22e252e08560f51cdaf1802ede94dfc4
1 /* Cygwin support routines.
2 Copyright (C) 2011-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs 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 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs 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 Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include "cygw32.h"
21 #include "character.h"
22 #include "buffer.h"
23 #include <unistd.h>
24 #include <fcntl.h>
26 static Lisp_Object
27 fchdir_unwind (Lisp_Object dir_fd)
29 (void) fchdir (XFASTINT (dir_fd));
30 (void) close (XFASTINT (dir_fd));
31 return Qnil;
34 static void
35 chdir_to_default_directory ()
37 Lisp_Object new_cwd;
38 int old_cwd_fd = open (".", O_RDONLY | O_DIRECTORY);
40 if (old_cwd_fd == -1)
41 error ("could not open current directory: %s", strerror (errno));
43 record_unwind_protect (fchdir_unwind, make_number (old_cwd_fd));
45 new_cwd = Funhandled_file_name_directory (
46 Fexpand_file_name (build_string ("."), Qnil));
47 if (!STRINGP (new_cwd))
48 new_cwd = build_string ("/");
50 if (chdir (SDATA (ENCODE_FILE (new_cwd))))
51 error ("could not chdir: %s", strerror (errno));
54 static Lisp_Object
55 conv_filename_to_w32_unicode (Lisp_Object in, int absolute_p)
57 ssize_t converted_len;
58 Lisp_Object converted;
59 unsigned flags;
60 int count = SPECPDL_INDEX ();
62 chdir_to_default_directory ();
64 flags = CCP_POSIX_TO_WIN_W;
65 if (!absolute_p) {
66 flags |= CCP_RELATIVE;
69 in = ENCODE_FILE (in);
71 converted_len = cygwin_conv_path (flags, SDATA (in), NULL, 0);
72 if (converted_len < 2)
73 error ("cygwin_conv_path: %s", strerror (errno));
75 converted = make_uninit_string (converted_len - 1);
76 if (cygwin_conv_path (flags, SDATA (in),
77 SDATA (converted), converted_len))
78 error ("cygwin_conv_path: %s", strerror (errno));
80 return unbind_to (count, converted);
83 static Lisp_Object
84 conv_filename_from_w32_unicode (const wchar_t* in, int absolute_p)
86 ssize_t converted_len;
87 Lisp_Object converted;
88 unsigned flags;
89 int count = SPECPDL_INDEX ();
91 chdir_to_default_directory ();
93 flags = CCP_WIN_W_TO_POSIX;
94 if (!absolute_p) {
95 flags |= CCP_RELATIVE;
98 converted_len = cygwin_conv_path (flags, in, NULL, 0);
99 if (converted_len < 1)
100 error ("cygwin_conv_path: %s", strerror (errno));
102 converted = make_uninit_string (converted_len - 1 /*subtract terminator*/);
103 if (cygwin_conv_path (flags, in, SDATA (converted), converted_len))
104 error ("cygwin_conv_path: %s", strerror (errno));
106 return unbind_to (count, DECODE_FILE (converted));
109 DEFUN ("cygwin-convert-file-name-to-windows",
110 Fcygwin_convert_file_name_to_windows,
111 Scygwin_convert_file_name_to_windows,
112 1, 2, 0,
113 doc: /* Convert PATH to a Windows path. If ABSOLUTE-P is
114 non-nil, return an absolute path.*/)
115 (Lisp_Object path, Lisp_Object absolute_p)
117 return from_unicode (
118 conv_filename_to_w32_unicode (path, EQ (absolute_p, Qnil) ? 0 : 1));
121 DEFUN ("cygwin-convert-file-name-from-windows",
122 Fcygwin_convert_file_name_from_windows,
123 Scygwin_convert_file_name_from_windows,
124 1, 2, 0,
125 doc: /* Convert a Windows path to a Cygwin path. If ABSOLUTE-P
126 is non-nil, return an absolute path.*/)
127 (Lisp_Object path, Lisp_Object absolute_p)
129 return conv_filename_from_w32_unicode (to_unicode (path, &path),
130 EQ (absolute_p, Qnil) ? 0 : 1);
133 void
134 syms_of_cygw32 (void)
136 defsubr (&Scygwin_convert_file_name_from_windows);
137 defsubr (&Scygwin_convert_file_name_to_windows);