2001-05-17 15:11:01 +00:00
|
|
|
// os.h copyright "Ruurd A. Reitsma" <R.A.Reitsma@wbmt.tudelft.nl>
|
|
|
|
|
|
|
|
#ifndef OS_H
|
|
|
|
#define OS_H
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
/// wrap OS specific stuff
|
|
|
|
namespace os {
|
2001-05-17 15:11:01 +00:00
|
|
|
//
|
|
|
|
enum shell_type {
|
|
|
|
UNIX, // Do we have to distinguish sh and csh?
|
|
|
|
CMD_EXE
|
|
|
|
};
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
// do some work just once
|
|
|
|
void init(int * argc, char ** argv[]);
|
|
|
|
// returns path of LyX binary
|
|
|
|
string binpath();
|
|
|
|
// returns name of LyX binary
|
|
|
|
string binname();
|
|
|
|
// system_tempdir actually doesn't belong here
|
2001-05-17 15:11:01 +00:00
|
|
|
// I put it here only to avoid a global variable.
|
2003-02-10 10:22:05 +00:00
|
|
|
void setTmpDir(string const & p);
|
|
|
|
//
|
|
|
|
string getTmpDir();
|
2002-03-21 17:09:55 +00:00
|
|
|
//
|
2003-02-10 10:22:05 +00:00
|
|
|
string current_root();
|
2002-03-21 17:09:55 +00:00
|
|
|
//
|
2003-02-10 10:22:05 +00:00
|
|
|
shell_type shell();
|
2001-05-17 15:11:01 +00:00
|
|
|
// DBCS aware!
|
2003-02-10 10:22:05 +00:00
|
|
|
string::size_type common_path(string const & p1, string const & p2);
|
2001-05-17 15:11:01 +00:00
|
|
|
// no-op on UNIX, '\\'->'/' on OS/2 and Win32, ':'->'/' on MacOS, etc.
|
2003-02-10 10:22:05 +00:00
|
|
|
string slashify_path(string const & p);
|
2001-10-04 09:57:02 +00:00
|
|
|
// converts a host OS path to unix style
|
2003-02-10 10:22:05 +00:00
|
|
|
string external_path(string const & p);
|
2001-10-04 09:57:02 +00:00
|
|
|
// converts a unix path to host OS style
|
2003-02-10 10:22:05 +00:00
|
|
|
string internal_path(string const & p);
|
2001-10-08 14:09:06 +00:00
|
|
|
// is path absolute?
|
2003-02-10 10:22:05 +00:00
|
|
|
bool is_absolute_path(string const & p);
|
|
|
|
// returns a string suitable to be passed to popen when
|
2002-09-23 16:03:11 +00:00
|
|
|
// same for popen().
|
2003-02-10 10:22:05 +00:00
|
|
|
char const * popen_read_mode();
|
2001-10-08 14:09:06 +00:00
|
|
|
//
|
2003-02-10 10:22:05 +00:00
|
|
|
void warn(string const & mesg);
|
2001-05-17 15:11:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|