Merge from emacs-24; up to 2012-12-30T19:34:25Z!jan.h.d@swipnet.se
[bpt/emacs.git] / src / cygw32.c
CommitLineData
f701ab72 1/* Cygwin support routines.
ab422c4d 2 Copyright (C) 2011-2013 Free Software Foundation, Inc.
f701ab72
DC
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19
20#include "cygw32.h"
21#include "character.h"
22#include "buffer.h"
23#include <unistd.h>
24#include <fcntl.h>
f701ab72
DC
25
26static Lisp_Object
27fchdir_unwind (Lisp_Object dir_fd)
28{
29 (void) fchdir (XFASTINT (dir_fd));
30 (void) close (XFASTINT (dir_fd));
31 return Qnil;
32}
33
34static void
35chdir_to_default_directory ()
36{
37 Lisp_Object new_cwd;
38 int old_cwd_fd = open (".", O_RDONLY | O_DIRECTORY);
39
40 if (old_cwd_fd == -1)
41 error ("could not open current directory: %s", strerror (errno));
42
43 record_unwind_protect (fchdir_unwind, make_number (old_cwd_fd));
44
45 new_cwd = Funhandled_file_name_directory (
46 Fexpand_file_name (build_string ("."), Qnil));
47 if (!STRINGP (new_cwd))
48 new_cwd = build_string ("/");
49
50 if (chdir (SDATA (ENCODE_FILE (new_cwd))))
51 error ("could not chdir: %s", strerror (errno));
52}
53
54static Lisp_Object
55conv_filename_to_w32_unicode (Lisp_Object in, int absolute_p)
56{
57 ssize_t converted_len;
58 Lisp_Object converted;
59 unsigned flags;
60 int count = SPECPDL_INDEX ();
61
62 chdir_to_default_directory ();
63
64 flags = CCP_POSIX_TO_WIN_W;
65 if (!absolute_p) {
66 flags |= CCP_RELATIVE;
67 }
68
69 in = ENCODE_FILE (in);
70
71 converted_len = cygwin_conv_path (flags, SDATA (in), NULL, 0);
72 if (converted_len < 2)
73 error ("cygwin_conv_path: %s", strerror (errno));
74
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));
79
80 return unbind_to (count, converted);
81}
82
83static Lisp_Object
84conv_filename_from_w32_unicode (const wchar_t* in, int absolute_p)
85{
86 ssize_t converted_len;
87 Lisp_Object converted;
88 unsigned flags;
89 int count = SPECPDL_INDEX ();
90
91 chdir_to_default_directory ();
92
93 flags = CCP_WIN_W_TO_POSIX;
94 if (!absolute_p) {
95 flags |= CCP_RELATIVE;
96 }
97
98 converted_len = cygwin_conv_path (flags, in, NULL, 0);
99 if (converted_len < 1)
100 error ("cygwin_conv_path: %s", strerror (errno));
101
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));
105
106 return unbind_to (count, DECODE_FILE (converted));
107}
108
a16ac13f
DC
109DEFUN ("cygwin-convert-file-name-to-windows",
110 Fcygwin_convert_file_name_to_windows,
111 Scygwin_convert_file_name_to_windows,
f701ab72 112 1, 2, 0,
1ab0c851
GM
113 doc: /* Convert a Cygwin file name FILE to a Windows-style file name.
114If ABSOLUTE-P is non-nil, return an absolute file name.
115For the reverse operation, see `cygwin-convert-file-name-from-windows'. */)
116 (Lisp_Object file, Lisp_Object absolute_p)
f701ab72
DC
117{
118 return from_unicode (
1ab0c851 119 conv_filename_to_w32_unicode (file, EQ (absolute_p, Qnil) ? 0 : 1));
f701ab72
DC
120}
121
a16ac13f
DC
122DEFUN ("cygwin-convert-file-name-from-windows",
123 Fcygwin_convert_file_name_from_windows,
124 Scygwin_convert_file_name_from_windows,
f701ab72 125 1, 2, 0,
1ab0c851
GM
126 doc: /* Convert a Windows-style file name FILE to a Cygwin file name.
127If ABSOLUTE-P is non-nil, return an absolute file name.
128For the reverse operation, see `cygwin-convert-file-name-to-windows'. */)
129 (Lisp_Object file, Lisp_Object absolute_p)
f701ab72 130{
1ab0c851 131 return conv_filename_from_w32_unicode (to_unicode (file, &file),
fcf14875 132 EQ (absolute_p, Qnil) ? 0 : 1);
f701ab72
DC
133}
134
135void
136syms_of_cygw32 (void)
137{
a16ac13f
DC
138 defsubr (&Scygwin_convert_file_name_from_windows);
139 defsubr (&Scygwin_convert_file_name_to_windows);
f701ab72 140}