2005-01-21 22:08:59 +00:00
|
|
|
/**
|
|
|
|
* \file os_cygwin.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Ruurd A. Reitsma
|
|
|
|
* \author Claus Hentschel
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*
|
|
|
|
* Various OS specific functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "support/os.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <io.h>
|
2006-05-17 22:13:33 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <shlwapi.h>
|
2005-01-21 22:08:59 +00:00
|
|
|
|
|
|
|
#include <sys/cygwin.h>
|
|
|
|
|
|
|
|
using std::endl;
|
|
|
|
using std::string;
|
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
using lyx::support::contains;
|
|
|
|
|
2007-01-11 21:22:18 +00:00
|
|
|
#ifdef X_DISPLAY_MISSING
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/package.h"
|
|
|
|
#include "support/path.h"
|
|
|
|
using lyx::support::addName;
|
|
|
|
using lyx::support::addPath;
|
|
|
|
using lyx::support::package;
|
|
|
|
|
|
|
|
string const win_fonts_truetype[] = {"cmex10", "cmmi10", "cmr10", "cmsy10",
|
|
|
|
"eufm10", "msam10", "msbm10", "wasy10", "esint10"};
|
|
|
|
const int num_fonts_truetype = sizeof(win_fonts_truetype) / sizeof(*win_fonts_truetype);
|
|
|
|
#endif
|
|
|
|
|
2005-01-21 22:08:59 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace support {
|
|
|
|
namespace os {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
bool windows_style_tex_paths_ = false;
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
// In both is_posix_path() and is_windows_path() it is assumed that
|
|
|
|
// a valid posix or pseudo-windows path is passed. They simply tell
|
|
|
|
// whether the path looks posix/pseudo-windows or not.
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
bool is_posix_path(string const & p)
|
|
|
|
{
|
|
|
|
return p.empty() ||
|
|
|
|
(!contains(p, '\\') && (p.length() <= 1 || p[1] != ':'));
|
|
|
|
}
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
// This is a test for a win32 style path with forward slashes (pseudo-windows).
|
|
|
|
|
|
|
|
bool is_windows_path(string const & p)
|
2005-01-21 22:08:59 +00:00
|
|
|
{
|
2006-09-01 13:37:52 +00:00
|
|
|
return p.empty() || (!contains(p, '\\') && p[0] != '/');
|
2006-04-05 19:26:08 +00:00
|
|
|
}
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
|
|
|
|
enum PathStyle {
|
2006-05-17 22:13:33 +00:00
|
|
|
posix,
|
|
|
|
windows
|
2006-04-05 19:26:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-01-18 20:47:27 +00:00
|
|
|
/// Convert a path to or from posix style.
|
|
|
|
/// \p p is encoded in local 8bit encoding or utf8.
|
|
|
|
/// The result is returned in the same encoding as \p p.
|
2006-04-05 19:26:08 +00:00
|
|
|
string convert_path(string const & p, PathStyle const & target)
|
|
|
|
{
|
|
|
|
char path_buf[PATH_MAX];
|
|
|
|
|
|
|
|
if ((target == posix && is_posix_path(p)) ||
|
|
|
|
(target == windows && is_windows_path(p)))
|
|
|
|
return p;
|
|
|
|
|
|
|
|
path_buf[0] = '\0';
|
|
|
|
|
2007-01-18 20:47:27 +00:00
|
|
|
// cygwin_conv_to_posix_path and cygwin_conv_to_win32_path do not
|
|
|
|
// care about the encoding.
|
2006-04-05 19:26:08 +00:00
|
|
|
if (target == posix)
|
|
|
|
cygwin_conv_to_posix_path(p.c_str(), path_buf);
|
|
|
|
else
|
|
|
|
cygwin_conv_to_win32_path(p.c_str(), path_buf);
|
|
|
|
|
|
|
|
return subst(path_buf[0] ? path_buf : p, '\\', '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-18 20:47:27 +00:00
|
|
|
/// Convert a path list to or from posix style.
|
|
|
|
/// \p p is encoded in local 8bit encoding or utf8.
|
|
|
|
/// The result is returned in the same encoding as \p p.
|
2006-04-05 19:26:08 +00:00
|
|
|
string convert_path_list(string const & p, PathStyle const & target)
|
|
|
|
{
|
2006-09-01 13:37:52 +00:00
|
|
|
if (p.empty())
|
|
|
|
return p;
|
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
char const * const pc = p.c_str();
|
|
|
|
PathStyle const actual = cygwin_posix_path_list_p(pc) ? posix : windows;
|
|
|
|
|
|
|
|
if (target != actual) {
|
|
|
|
int const target_size = (target == posix) ?
|
|
|
|
cygwin_win32_to_posix_path_list_buf_size(pc) :
|
|
|
|
cygwin_posix_to_win32_path_list_buf_size(pc);
|
|
|
|
|
|
|
|
char * ptr = new char[target_size];
|
|
|
|
|
|
|
|
if (ptr) {
|
2007-01-18 20:47:27 +00:00
|
|
|
// FIXME: See comment in convert_path() above
|
2006-04-05 19:26:08 +00:00
|
|
|
if (target == posix)
|
|
|
|
cygwin_win32_to_posix_path_list(pc, ptr);
|
|
|
|
else
|
|
|
|
cygwin_posix_to_win32_path_list(pc, ptr);
|
|
|
|
|
|
|
|
string path_list = subst(ptr, '\\', '/');
|
|
|
|
delete ptr;
|
|
|
|
return path_list;
|
|
|
|
}
|
2005-01-21 22:08:59 +00:00
|
|
|
}
|
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
return subst(p, '\\', '/');
|
|
|
|
}
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
} // namespace anon
|
2005-01-21 22:08:59 +00:00
|
|
|
|
2006-05-17 22:13:33 +00:00
|
|
|
void os::init(int, char *[])
|
|
|
|
{
|
|
|
|
// Copy cygwin environment variables to the Windows environment
|
|
|
|
// if they're not already there.
|
|
|
|
|
|
|
|
char **envp = environ;
|
|
|
|
char curval[2];
|
|
|
|
string var;
|
|
|
|
string val;
|
|
|
|
bool temp_seen = false;
|
|
|
|
|
|
|
|
while (envp && *envp) {
|
|
|
|
val = split(*envp++, var, '=');
|
|
|
|
|
|
|
|
if (var == "TEMP")
|
|
|
|
temp_seen = true;
|
|
|
|
|
|
|
|
if (GetEnvironmentVariable(var.c_str(), curval, 2) == 0
|
|
|
|
&& GetLastError() == ERROR_ENVVAR_NOT_FOUND) {
|
|
|
|
/* Convert to Windows style where necessary */
|
|
|
|
if (var == "PATH" || var == "LD_LIBRARY_PATH") {
|
|
|
|
string const winpathlist =
|
|
|
|
convert_path_list(val, PathStyle(windows));
|
|
|
|
if (!winpathlist.empty()) {
|
|
|
|
SetEnvironmentVariable(var.c_str(),
|
|
|
|
winpathlist.c_str());
|
|
|
|
}
|
|
|
|
} else if (var == "HOME" || var == "TMPDIR" ||
|
|
|
|
var == "TMP" || var == "TEMP") {
|
|
|
|
string const winpath =
|
|
|
|
convert_path(val, PathStyle(windows));
|
|
|
|
SetEnvironmentVariable(var.c_str(), winpath.c_str());
|
|
|
|
} else {
|
|
|
|
SetEnvironmentVariable(var.c_str(), val.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!temp_seen) {
|
|
|
|
string const winpath = convert_path("/tmp", PathStyle(windows));
|
|
|
|
SetEnvironmentVariable("TEMP", winpath.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string current_root()
|
|
|
|
{
|
|
|
|
return string("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-13 10:22:10 +00:00
|
|
|
docstring::size_type common_path(docstring const & p1, docstring const & p2)
|
2006-05-17 22:13:33 +00:00
|
|
|
{
|
2007-03-13 10:22:10 +00:00
|
|
|
docstring::size_type i = 0;
|
|
|
|
docstring::size_type const p1_len = p1.length();
|
|
|
|
docstring::size_type const p2_len = p2.length();
|
2006-05-17 22:13:33 +00:00
|
|
|
while (i < p1_len && i < p2_len && uppercase(p1[i]) == uppercase(p2[i]))
|
|
|
|
++i;
|
|
|
|
if ((i < p1_len && i < p2_len)
|
|
|
|
|| (i < p1_len && p1[i] != '/' && i == p2_len)
|
|
|
|
|| (i < p2_len && p2[i] != '/' && i == p1_len))
|
|
|
|
{
|
|
|
|
if (i)
|
|
|
|
--i; // here was the last match
|
|
|
|
while (i && p1[i] != '/')
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
|
|
|
|
string external_path(string const & p)
|
|
|
|
{
|
2006-09-01 13:37:52 +00:00
|
|
|
return convert_path(p, PathStyle(posix));
|
2005-01-21 22:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string internal_path(string const & p)
|
|
|
|
{
|
2006-04-05 19:26:08 +00:00
|
|
|
return convert_path(p, PathStyle(posix));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string external_path_list(string const & p)
|
|
|
|
{
|
2006-09-08 15:07:22 +00:00
|
|
|
return convert_path_list(p, PathStyle(posix));
|
2006-04-05 19:26:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string internal_path_list(string const & p)
|
|
|
|
{
|
|
|
|
return convert_path_list(p, PathStyle(posix));
|
2005-01-21 22:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-24 12:48:37 +00:00
|
|
|
string latex_path(string const & p)
|
|
|
|
{
|
|
|
|
// We may need a posix style path or a windows style path (depending
|
2006-06-27 10:51:24 +00:00
|
|
|
// on windows_style_tex_paths_), but we use always forward slashes,
|
|
|
|
// since it gets written into a .tex file.
|
2006-04-05 19:26:08 +00:00
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
if (windows_style_tex_paths_ && is_absolute_path(p)) {
|
2006-04-05 19:26:08 +00:00
|
|
|
string dos_path = convert_path(p, PathStyle(windows));
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::LATEX)
|
2006-06-27 10:51:24 +00:00
|
|
|
<< "<Path correction for LaTeX> ["
|
2006-04-05 19:26:08 +00:00
|
|
|
<< p << "]->>["
|
|
|
|
<< dos_path << ']' << endl;
|
|
|
|
return dos_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
return convert_path(p, PathStyle(posix));
|
2006-03-24 12:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-21 22:08:59 +00:00
|
|
|
bool is_absolute_path(string const & p)
|
|
|
|
{
|
|
|
|
if (p.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool isDosPath = (p.length() > 1 && p[1] == ':');
|
|
|
|
bool isUnixPath = (p[0] == '/');
|
|
|
|
|
|
|
|
return isDosPath || isUnixPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// returns a string suitable to be passed to popen when
|
|
|
|
// reading a pipe
|
|
|
|
char const * popen_read_mode()
|
|
|
|
{
|
|
|
|
return "r";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const & nulldev()
|
|
|
|
{
|
|
|
|
static string const nulldev_ = "/dev/null";
|
|
|
|
return nulldev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
shell_type shell()
|
|
|
|
{
|
|
|
|
return UNIX;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char path_separator()
|
|
|
|
{
|
|
|
|
return ':';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
void windows_style_tex_paths(bool use_windows_paths)
|
2005-01-21 22:08:59 +00:00
|
|
|
{
|
2006-06-27 10:51:24 +00:00
|
|
|
windows_style_tex_paths_ = use_windows_paths;
|
2005-01-21 22:08:59 +00:00
|
|
|
}
|
|
|
|
|
2006-05-17 22:13:33 +00:00
|
|
|
|
|
|
|
bool canAutoOpenFile(string const & ext, auto_open_mode const mode)
|
|
|
|
{
|
|
|
|
if (ext.empty())
|
|
|
|
return false;
|
2006-05-18 19:09:53 +00:00
|
|
|
|
|
|
|
string const full_ext = "." + ext;
|
2006-05-17 22:13:33 +00:00
|
|
|
|
|
|
|
DWORD bufSize = MAX_PATH + 100;
|
|
|
|
TCHAR buf[MAX_PATH + 100];
|
|
|
|
// reference: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc
|
|
|
|
// /platform/shell/reference/shlwapi/registry/assocquerystring.asp
|
|
|
|
char const * action = (mode == VIEW) ? "open" : "edit";
|
|
|
|
return S_OK == AssocQueryString(0, ASSOCSTR_EXECUTABLE,
|
|
|
|
full_ext.c_str(), action, buf, &bufSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool autoOpenFile(string const & filename, auto_open_mode const mode)
|
|
|
|
{
|
|
|
|
// reference: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc
|
|
|
|
// /platform/shell/reference/functions/shellexecute.asp
|
2007-01-18 20:47:27 +00:00
|
|
|
string const win_path = to_local8bit(from_utf8(convert_path(filename, PathStyle(windows))));
|
2006-05-17 22:13:33 +00:00
|
|
|
char const * action = (mode == VIEW) ? "open" : "edit";
|
2006-05-18 19:09:53 +00:00
|
|
|
return reinterpret_cast<int>(ShellExecute(NULL, action,
|
2006-05-17 22:13:33 +00:00
|
|
|
win_path.c_str(), NULL, NULL, 1)) > 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-11 21:22:18 +00:00
|
|
|
void addFontResources()
|
|
|
|
{
|
|
|
|
#ifdef X_DISPLAY_MISSING
|
|
|
|
// Windows only: Add BaKoMa TrueType font resources
|
|
|
|
string const fonts_dir = addPath(package().system_support(), "fonts");
|
|
|
|
|
|
|
|
for (int i = 0 ; i < num_fonts_truetype ; ++i) {
|
2007-01-18 20:47:27 +00:00
|
|
|
string const font_current = to_local8bit(from_utf8(convert_path(
|
2007-01-11 21:22:18 +00:00
|
|
|
addName(fonts_dir, win_fonts_truetype[i] + ".ttf"),
|
2007-01-18 20:47:27 +00:00
|
|
|
PathStyle(windows))));
|
2007-01-11 21:22:18 +00:00
|
|
|
AddFontResource(font_current.c_str());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void restoreFontResources()
|
|
|
|
{
|
|
|
|
#ifdef X_DISPLAY_MISSING
|
|
|
|
// Windows only: Remove BaKoMa TrueType font resources
|
|
|
|
string const fonts_dir = addPath(package().system_support(), "fonts");
|
|
|
|
|
|
|
|
for(int i = 0 ; i < num_fonts_truetype ; ++i) {
|
2007-01-18 20:47:27 +00:00
|
|
|
string const font_current = to_local8bit(from_utf8(convert_path(
|
2007-01-11 21:22:18 +00:00
|
|
|
addName(fonts_dir, win_fonts_truetype[i] + ".ttf"),
|
2007-01-18 20:47:27 +00:00
|
|
|
PathStyle(windows))));
|
2007-01-11 21:22:18 +00:00
|
|
|
RemoveFontResource(font_current.c_str());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-01-21 22:08:59 +00:00
|
|
|
} // namespace os
|
|
|
|
} // namespace support
|
|
|
|
} // namespace lyx
|