2003-06-18 09:56:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file os_win32.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Ruurd A. Reitsma
|
2005-01-21 22:08:59 +00:00
|
|
|
|
* \author Claus Hentschel
|
|
|
|
|
* \author Angus Leeming
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*
|
|
|
|
|
* Various OS specific functions
|
|
|
|
|
*/
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2004-11-07 13:22:51 +00:00
|
|
|
|
#include "support/os.h"
|
2005-01-12 08:27:14 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2004-11-07 13:22:51 +00:00
|
|
|
|
|
2001-12-20 16:27:02 +00:00
|
|
|
|
#include "debug.h"
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#include <io.h>
|
2005-01-21 22:08:59 +00:00
|
|
|
|
#include <direct.h> // _getdrive
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
using std::endl;
|
2003-10-08 08:38:05 +00:00
|
|
|
|
using std::string;
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-01 21:31:06 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace support {
|
2003-02-10 10:22:05 +00:00
|
|
|
|
namespace os {
|
|
|
|
|
|
2005-01-17 22:31:30 +00:00
|
|
|
|
void os::init(int /* argc */, char * argv[])
|
|
|
|
|
{
|
|
|
|
|
/* Note from Angus, 17 Jan 2005:
|
|
|
|
|
*
|
|
|
|
|
* The code below is taken verbatim from Ruurd's original patch
|
|
|
|
|
* porting LyX to Win32.
|
|
|
|
|
*
|
|
|
|
|
* Windows allows us to define LyX either as a console-based app
|
|
|
|
|
* or as a GUI-based app. Ruurd decided to define LyX as a
|
|
|
|
|
* console-based app with a "main" function rather than a "WinMain"
|
|
|
|
|
* function as the point of entry to the program, but to
|
|
|
|
|
* immediately close the console window that Windows helpfully
|
|
|
|
|
* opens for us. Doing so allows the user to see all of LyX's
|
|
|
|
|
* debug output simply by running LyX from a DOS or MSYS-shell
|
|
|
|
|
* prompt.
|
|
|
|
|
*
|
|
|
|
|
* The alternative approach is to define LyX as a genuine
|
|
|
|
|
* GUI-based app, with a "WinMain" function as the entry point to the
|
|
|
|
|
* executable rather than a "main" function, so:
|
|
|
|
|
*
|
|
|
|
|
* #if defined (_WIN32)
|
|
|
|
|
* # define WIN32_LEAN_AND_MEAN
|
2005-01-18 09:48:08 +00:00
|
|
|
|
* # include <stdlib.h> // for __argc,__argv
|
2005-01-17 22:31:30 +00:00
|
|
|
|
* # include <windows.h> // for WinMain
|
|
|
|
|
* #endif
|
|
|
|
|
*
|
|
|
|
|
* // This will require the "-mwindows" flag when linking with
|
|
|
|
|
* // gcc under MinGW.
|
|
|
|
|
* // For MSVC, use "/subsystem:windows".
|
|
|
|
|
* #if defined (_WIN32)
|
|
|
|
|
* int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
|
|
|
|
* {
|
2005-01-18 09:48:08 +00:00
|
|
|
|
* return mymain(__argc, __argv);
|
2005-01-17 22:31:30 +00:00
|
|
|
|
* }
|
|
|
|
|
* #endif
|
|
|
|
|
*
|
|
|
|
|
* where "mymain" is just a renamed "main".
|
|
|
|
|
*
|
|
|
|
|
* However, doing so means that the lyxerr messages would mysteriously
|
|
|
|
|
* disappear. They could be resurrected with something like:
|
|
|
|
|
*
|
|
|
|
|
* #ifdef WIN32
|
|
|
|
|
* AllocConsole();
|
2005-01-18 09:48:08 +00:00
|
|
|
|
* freopen("conin$","r",stdin);
|
|
|
|
|
* freopen("conout$","w",stdout);
|
|
|
|
|
* freopen("conout$","w",stderr);
|
2005-01-17 22:31:30 +00:00
|
|
|
|
* #endif
|
|
|
|
|
*
|
|
|
|
|
* This code could be invoked (say) the first time that lyxerr
|
|
|
|
|
* is called. However, Ruurd has tried this route and found that some
|
|
|
|
|
* shell scripts failed, for mysterious reasons...
|
|
|
|
|
*
|
|
|
|
|
* I've chosen for now, therefore, to simply add Ruurd's original
|
|
|
|
|
* code as-is.
|
|
|
|
|
*/
|
|
|
|
|
// Close the console when run (probably)
|
|
|
|
|
// not run from command prompt
|
|
|
|
|
char WindowTitle[1024];
|
|
|
|
|
HWND hwndFound;
|
|
|
|
|
GetConsoleTitle(WindowTitle,1024);
|
|
|
|
|
if ((strcmp(WindowTitle, argv[0]) == 0) ||
|
|
|
|
|
(strcmp(WindowTitle,"LyX") == 0)) {
|
|
|
|
|
// format a "unique" newWindowTitle
|
|
|
|
|
wsprintf(WindowTitle,"%d/%d",
|
|
|
|
|
GetTickCount(),
|
|
|
|
|
GetCurrentProcessId());
|
|
|
|
|
// change current window title
|
|
|
|
|
SetConsoleTitle(WindowTitle);
|
|
|
|
|
// ensure window title has been updated
|
|
|
|
|
Sleep(40);
|
|
|
|
|
// look for newWindowTitle
|
|
|
|
|
hwndFound=FindWindow(NULL, WindowTitle);
|
|
|
|
|
// If found, hide it
|
|
|
|
|
if ( hwndFound != NULL)
|
|
|
|
|
ShowWindow( hwndFound, SW_HIDE);
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
string current_root()
|
|
|
|
|
{
|
2005-01-04 17:50:25 +00:00
|
|
|
|
// _getdrive returns the current drive (1=A, 2=B, and so on).
|
|
|
|
|
char const drive = ::_getdrive() + 'A' - 1;
|
|
|
|
|
return string(1, drive) + ":/";
|
2001-05-17 15:11:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
string::size_type common_path(string const & p1, string const & p2)
|
|
|
|
|
{
|
|
|
|
|
string::size_type i = 0;
|
|
|
|
|
string::size_type p1_len = p1.length();
|
|
|
|
|
string::size_type p2_len = p2.length();
|
|
|
|
|
while (i < p1_len && i < p2_len && uppercase(p1[i]) == uppercase(p2[i]))
|
|
|
|
|
++i;
|
2001-05-17 15:11:01 +00:00
|
|
|
|
if ((i < p1_len && i < p2_len)
|
|
|
|
|
|| (i < p1_len && p1[i] != '/' && i == p2_len)
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|| (i < p2_len && p2[i] != '/' && i == p1_len))
|
|
|
|
|
{
|
|
|
|
|
if (i)
|
|
|
|
|
--i; // here was the last match
|
|
|
|
|
while (i && p1[i] != '/')
|
|
|
|
|
--i;
|
2001-05-17 15:11:01 +00:00
|
|
|
|
}
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
string external_path(string const & p)
|
|
|
|
|
{
|
2005-04-18 17:43:11 +00:00
|
|
|
|
string const dos_path = subst(p, "/", "\\");
|
2004-12-20 16:59:33 +00:00
|
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
|
lyxerr[Debug::LATEX]
|
|
|
|
|
<< "<Win32 path correction> ["
|
|
|
|
|
<< p << "]->>["
|
2002-11-27 10:30:28 +00:00
|
|
|
|
<< dos_path << ']' << endl;
|
2001-05-17 15:11:01 +00:00
|
|
|
|
return dos_path;
|
2001-10-04 09:57:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-08 14:09:06 +00:00
|
|
|
|
|
2001-10-04 09:57:02 +00:00
|
|
|
|
// (Claus H.) Parsing the latex log file in an Win32 environment all
|
|
|
|
|
// files are mentioned in Win32/DOS syntax. Because LyX uses the dep file
|
|
|
|
|
// entries to check if any file has been changed we must retranslate
|
|
|
|
|
// the Win32/DOS pathnames into Cygwin pathnames.
|
2003-02-10 10:22:05 +00:00
|
|
|
|
string internal_path(string const & p)
|
|
|
|
|
{
|
2005-04-18 17:43:11 +00:00
|
|
|
|
return subst(p, "\\", "/");
|
2001-10-04 09:57:02 +00:00
|
|
|
|
}
|
2001-10-08 14:09:06 +00:00
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
2001-10-08 14:09:06 +00:00
|
|
|
|
// (Claus H.) On Win32 both Unix and Win32/DOS pathnames are used.
|
|
|
|
|
// Therefore an absolute path could be either a pathname starting
|
|
|
|
|
// with a slash (Unix) or a pathname starting with a drive letter
|
|
|
|
|
// followed by a colon. Because a colon is not valid in pathes in Unix
|
|
|
|
|
// and at another location in Win32 testing just for the existance
|
|
|
|
|
// of the colon in the 2nd position seems to be enough!
|
2003-02-10 10:22:05 +00:00
|
|
|
|
bool is_absolute_path(string const & p)
|
2001-10-08 14:09:06 +00:00
|
|
|
|
{
|
|
|
|
|
if (p.empty())
|
|
|
|
|
return false;
|
|
|
|
|
|
2001-12-20 16:27:02 +00:00
|
|
|
|
bool isDosPath = (p.length() > 1 && p[1] == ':');
|
|
|
|
|
bool isUnixPath = (p[0] == '/');
|
2001-10-08 14:09:06 +00:00
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
return isDosPath || isUnixPath;
|
2001-10-08 14:09:06 +00:00
|
|
|
|
}
|
2002-02-08 14:32:17 +00:00
|
|
|
|
|
2002-09-23 16:03:11 +00:00
|
|
|
|
|
|
|
|
|
// returns a string suitable to be passed to popen when
|
|
|
|
|
// reading a pipe
|
2003-02-10 10:22:05 +00:00
|
|
|
|
char const * popen_read_mode()
|
2002-09-23 16:03:11 +00:00
|
|
|
|
{
|
|
|
|
|
return "r";
|
|
|
|
|
}
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
2004-12-15 19:35:43 +00:00
|
|
|
|
string const & nulldev()
|
|
|
|
|
{
|
2005-01-10 19:17:43 +00:00
|
|
|
|
static string const nulldev_ = "nul";
|
2004-12-15 19:35:43 +00:00
|
|
|
|
return nulldev_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
shell_type shell()
|
|
|
|
|
{
|
2004-12-15 19:35:43 +00:00
|
|
|
|
return CMD_EXE;
|
2003-02-10 10:22:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-01-14 15:53:30 +00:00
|
|
|
|
|
2005-01-13 10:10:16 +00:00
|
|
|
|
char path_separator()
|
|
|
|
|
{
|
|
|
|
|
return ';';
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-14 15:53:30 +00:00
|
|
|
|
|
2005-01-21 22:08:59 +00:00
|
|
|
|
void cygwin_path_fix(bool)
|
|
|
|
|
{}
|
2005-01-14 15:53:30 +00:00
|
|
|
|
|
2003-07-01 21:31:06 +00:00
|
|
|
|
} // namespace os
|
|
|
|
|
} // namespace support
|
|
|
|
|
} // namespace lyx
|