]> git.lyx.org Git - lyx.git/blobdiff - src/support/tempname.C
MSVC compilation fix.
[lyx.git] / src / support / tempname.C
index 8c6480bdbcf2b9830a59c5b0f32090ff8604a0ed..6d44e42f67aae5d8a02e5bdf0548af946a9b31a5 100644 (file)
 #include <config.h>
 
 #include "support/lyxlib.h"
+
+#include "support/convert.h"
 #include "support/filetools.h"
-#include "support/tostr.h"
-#include "support/os.h"
+#include "support/package.h"
 
 #include "debug.h"
 
 #include <boost/scoped_array.hpp>
 
 #include <cstdlib>
-#include <unistd.h>
+
+
+namespace lyx {
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+#if !defined(HAVE_MKSTEMP) && defined(HAVE_MKTEMP)
+# include <fcntl.h>
+# ifdef HAVE_SYS_STAT_H
+#  include <sys/stat.h>
+# endif
+# ifdef HAVE_IO_H
+#  include <io.h>
+# endif
+# ifdef HAVE_PROCESS_H
+#  include <process.h>
+# endif
+#endif
 
 using boost::scoped_array;
 
@@ -36,8 +55,20 @@ int make_tempfile(char * templ)
        return ::mkstemp(templ);
 #elif defined(HAVE_MKTEMP)
        // This probably just barely works...
-       ::mktemp(templ);
+       mktemp(templ);
+# if defined (HAVE_OPEN)
+# if (!defined S_IRUSR)
+#   define S_IRUSR S_IREAD
+#   define S_IWUSR S_IWRITE
+# endif
        return ::open(templ, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
+# elif defined (HAVE__OPEN)
+       return _open(templ,
+                      _O_RDWR | _O_CREAT | _O_EXCL,
+                      _S_IREAD | _S_IWRITE);
+# else
+#  error No open() function.
+# endif
 #else
 #error FIX FIX FIX
 #endif
@@ -48,9 +79,15 @@ int make_tempfile(char * templ)
 
 string const lyx::support::tempName(string const & dir, string const & mask)
 {
-       string const tmpdir(dir.empty() ? os::getTmpDir() : dir);
-       string tmpfl(AddName(tmpdir, mask));
-       tmpfl += tostr(getpid());
+       string const tmpdir(dir.empty() ? package().temp_dir() : dir);
+       string tmpfl(addName(tmpdir, mask));
+#if defined (HAVE_GETPID)
+       tmpfl += convert<string>(getpid());
+#elif defined (HAVE__GETPID)
+       tmpfl += convert<string>(_getpid());
+#else
+# error No getpid() function
+#endif
        tmpfl += "XXXXXX";
 
        // The supposedly safe mkstemp version
@@ -61,7 +98,13 @@ string const lyx::support::tempName(string const & dir, string const & mask)
        int const tmpf = make_tempfile(tmpl.get());
        if (tmpf != -1) {
                string const t(tmpl.get());
-               ::close(tmpf);
+#if defined (HAVE_CLOSE)
+               close(tmpf);
+#elif defined (HAVE__CLOSE)
+               ::_close(tmpf);
+#else
+# error No close() function.
+#endif
                lyxerr[Debug::FILES] << "Temporary file `" << t
                                     << "' created." << endl;
                return t;
@@ -72,3 +115,6 @@ string const lyx::support::tempName(string const & dir, string const & mask)
                return string();
        }
 }
+
+
+} // namespace lyx