lyx_mirror/src/support/userinfo.cpp
Bo Peng f212b48335 Rename .C ==> .cpp for files in src/support, part two
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18025 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-26 05:13:44 +00:00

68 lines
1.2 KiB
C++

/**
* \file userinfo.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "support/userinfo.h"
#include "support/environment.h"
#include <boost/assert.hpp>
#if defined (_WIN32)
# include "gettext.h"
# include <windows.h>
# include <lmcons.h>
#else
# include <pwd.h>
# ifdef HAVE_UNISTD_H
# include <unistd.h>
# endif
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
using std::string;
namespace lyx {
namespace support {
docstring const user_name()
{
#if defined (_WIN32)
char name[UNLEN + 1];
DWORD size = UNLEN + 1;
if (!GetUserName(name, &size))
return _("Unknown user");
return from_local8bit(name);
#else
struct passwd * pw(getpwuid(geteuid()));
BOOST_ASSERT(pw);
string name = pw->pw_gecos;
if (name.empty())
name = pw->pw_name;
return from_local8bit(name);
#endif
}
docstring const user_email()
{
string email = getEnv("EMAIL_ADDRESS");
if (email.empty())
email = getEnv("EMAIL");
return from_local8bit(email);
}
} // namespace support
} // namespace lyx