mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2fb21c28b5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29843 a592a061-630c-0410-9148-cb99ea01b6c8
281 lines
5.5 KiB
C++
281 lines
5.5 KiB
C++
/**
|
|
* \file os_unix.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Ruurd A. Reitsma
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
* Various OS specific functions
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "support/os.h"
|
|
#include "support/docstring.h"
|
|
#include "support/FileName.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __APPLE__
|
|
#include <Carbon/Carbon.h>
|
|
#endif
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
namespace os {
|
|
|
|
void init(int, char *[])
|
|
{}
|
|
|
|
|
|
string current_root()
|
|
{
|
|
return "/";
|
|
}
|
|
|
|
|
|
bool isFilesystemCaseSensitive()
|
|
{
|
|
#ifdef __APPLE__
|
|
return false;
|
|
#else
|
|
return true;
|
|
#endif
|
|
}
|
|
|
|
|
|
docstring::size_type common_path(docstring const & p1, docstring const & p2)
|
|
{
|
|
docstring::size_type i = 0;
|
|
docstring::size_type const p1_len = p1.length();
|
|
docstring::size_type const p2_len = p2.length();
|
|
#ifdef __APPLE__
|
|
while (i < p1_len && i < p2_len && uppercase(p1[i]) == uppercase(p2[i]))
|
|
++i;
|
|
#else
|
|
while (i < p1_len && i < p2_len && p1[i] == p2[i])
|
|
++i;
|
|
#endif
|
|
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;
|
|
}
|
|
|
|
|
|
bool path_prefix_is(string const & path, string const & pre)
|
|
{
|
|
#ifdef __APPLE__
|
|
return path_prefix_is(const_cast<string &>(path), pre, CASE_UNCHANGED);
|
|
#else
|
|
return prefixIs(path, pre);
|
|
#endif
|
|
}
|
|
|
|
|
|
bool path_prefix_is(string & path, string const & pre, path_case how)
|
|
{
|
|
#ifdef __APPLE__
|
|
docstring const p1 = from_utf8(path);
|
|
docstring const p2 = from_utf8(pre);
|
|
docstring::size_type const p1_len = p1.length();
|
|
docstring::size_type const p2_len = p2.length();
|
|
docstring::size_type common_len = common_path(p1, p2);
|
|
|
|
if (p2[p2_len - 1] == '/')
|
|
++common_len;
|
|
|
|
if (common_len != p2_len)
|
|
return false;
|
|
|
|
if (how == CASE_ADJUSTED && !prefixIs(path, pre))
|
|
path = to_utf8(p2 + p1.substr(common_len, p1_len - common_len));
|
|
|
|
return true;
|
|
#else
|
|
// silence compiler warnings
|
|
(void)how;
|
|
|
|
return prefixIs(path, pre);
|
|
#endif
|
|
}
|
|
|
|
|
|
string external_path(string const & p)
|
|
{
|
|
return p;
|
|
}
|
|
|
|
|
|
string internal_path(string const & p)
|
|
{
|
|
return p;
|
|
}
|
|
|
|
|
|
string external_path_list(string const & p)
|
|
{
|
|
return p;
|
|
}
|
|
|
|
|
|
string internal_path_list(string const & p)
|
|
{
|
|
return p;
|
|
}
|
|
|
|
|
|
string latex_path(string const & p)
|
|
{
|
|
return p;
|
|
}
|
|
|
|
|
|
bool is_valid_strftime(string const & p)
|
|
{
|
|
string::size_type pos = p.find_first_of('%');
|
|
while (pos != string::npos) {
|
|
if (pos + 1 == string::npos)
|
|
break;
|
|
if (!containsOnly(p.substr(pos + 1, 1),
|
|
"aAbBcCdDeEFgGhHIjklmMnOpPrRsStTuUVwWxXyYzZ%+"))
|
|
return false;
|
|
if (pos + 2 == string::npos)
|
|
break;
|
|
pos = p.find_first_of('%', pos + 2);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
char const * popen_read_mode()
|
|
{
|
|
return "r";
|
|
}
|
|
|
|
|
|
string const & nulldev()
|
|
{
|
|
static string const nulldev_ = "/dev/null";
|
|
return nulldev_;
|
|
}
|
|
|
|
|
|
bool is_terminal(io_channel channel)
|
|
{
|
|
return isatty(channel);
|
|
}
|
|
|
|
|
|
shell_type shell()
|
|
{
|
|
return UNIX;
|
|
}
|
|
|
|
|
|
char path_separator()
|
|
{
|
|
return ':';
|
|
}
|
|
|
|
|
|
void windows_style_tex_paths(bool)
|
|
{}
|
|
|
|
bool canAutoOpenFile(string const & ext, auto_open_mode const mode)
|
|
{
|
|
#ifdef __APPLE__
|
|
// Reference: http://developer.apple.com/documentation/Carbon/Reference/LaunchServicesReference/
|
|
CFStringRef cfs_ext = CFStringCreateWithBytes(kCFAllocatorDefault,
|
|
(UInt8 *) ext.c_str(), ext.length(),
|
|
kCFStringEncodingISOLatin1, false);
|
|
// this is what we would like to do but it seems that the
|
|
// viewer for PDF is often quicktime...
|
|
//LSRolesMask role = (mode == VIEW) ? kLSRolesViewer : kLSRolesEditor;
|
|
(void)mode;
|
|
LSRolesMask role = kLSRolesAll;
|
|
FSRef outAppRef;
|
|
OSStatus status =
|
|
LSGetApplicationForInfo(kLSUnknownType, kLSUnknownCreator,
|
|
cfs_ext, role, &outAppRef, NULL);
|
|
CFRelease(cfs_ext);
|
|
|
|
return status != kLSApplicationNotFoundErr;
|
|
#else
|
|
// silence compiler warnings
|
|
(void)ext;
|
|
(void)mode;
|
|
|
|
// currently, no default viewer is tried for non-windows system
|
|
// support for KDE/Gnome/Macintosh may be added later
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
|
|
bool autoOpenFile(string const & filename, auto_open_mode const mode)
|
|
{
|
|
#ifdef __APPLE__
|
|
// Reference: http://developer.apple.com/documentation/Carbon/Reference/LaunchServicesReference/
|
|
FSRef fileref;
|
|
OSStatus status =
|
|
FSPathMakeRef((UInt8 *) filename.c_str(), &fileref, NULL);
|
|
if (status != 0)
|
|
return false;
|
|
|
|
// this is what we would like to do but it seems that the
|
|
// viewer for PDF is often quicktime...
|
|
//LSRolesMask role = (mode == VIEW) ? kLSRolesViewer : kLSRolesEditor;
|
|
(void)mode;
|
|
LSRolesMask role = kLSRolesAll;
|
|
FSRef outAppRef;
|
|
|
|
status = LSGetApplicationForItem(&fileref, role, &outAppRef, NULL);
|
|
if (status == kLSApplicationNotFoundErr)
|
|
return false;
|
|
|
|
LSLaunchFSRefSpec inLaunchSpec;
|
|
inLaunchSpec.appRef = &outAppRef;
|
|
inLaunchSpec.numDocs = 1;
|
|
inLaunchSpec.itemRefs = &fileref;
|
|
inLaunchSpec.passThruParams = NULL;
|
|
inLaunchSpec.launchFlags = kLSLaunchDefaults;
|
|
inLaunchSpec.asyncRefCon = NULL;
|
|
status = LSOpenFromRefSpec(&inLaunchSpec, NULL);
|
|
|
|
return status != kLSApplicationNotFoundErr;
|
|
#else
|
|
// silence compiler warnings
|
|
(void)filename;
|
|
(void)mode;
|
|
|
|
// currently, no default viewer is tried for non-windows system
|
|
// support for KDE/Gnome/Macintosh may be added later
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
|
|
string real_path(string const & path)
|
|
{
|
|
char rpath[PATH_MAX + 1];
|
|
char * result = realpath(path.c_str(), rpath);
|
|
return FileName::fromFilesystemEncoding(result ? rpath : path).absFilename();
|
|
}
|
|
|
|
} // namespace os
|
|
} // namespace support
|
|
} // namespace lyx
|