2016-04-05 20:45:04 +00:00
|
|
|
//===- llvm/Support/Unix/Unix.h - Common Unix Include File -------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines things specific to Unix implementations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_SUPPORT_UNIX_UNIX_H
|
|
|
|
#define LLVM_LIB_SUPPORT_UNIX_UNIX_H
|
2004-12-27 06:17:50 +00:00
|
|
|
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic UNIX code that
|
|
|
|
//=== is guaranteed to work on all UNIX variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-07-03 09:57:59 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2016-10-24 10:59:17 +00:00
|
|
|
#include "llvm/Support/Chrono.h"
|
2010-11-29 18:29:55 +00:00
|
|
|
#include "llvm/Support/Errno.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <algorithm>
|
2016-04-05 20:45:04 +00:00
|
|
|
#include <assert.h>
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <cerrno>
|
2004-08-29 19:24:20 +00:00
|
|
|
#include <cstdio>
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <cstdlib>
|
2004-08-29 19:24:20 +00:00
|
|
|
#include <cstring>
|
2004-12-27 06:17:50 +00:00
|
|
|
#include <string>
|
2013-07-26 16:54:23 +00:00
|
|
|
#include <sys/types.h>
|
2015-08-04 06:29:58 +00:00
|
|
|
#include <sys/wait.h>
|
2004-12-27 06:17:50 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
2004-08-25 06:20:07 +00:00
|
|
|
#include <sys/param.h>
|
2005-04-21 22:55:34 +00:00
|
|
|
#endif
|
2004-12-27 06:17:50 +00:00
|
|
|
|
2012-04-23 19:00:27 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2004-12-27 06:17:50 +00:00
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
2016-04-05 20:45:04 +00:00
|
|
|
#include <time.h>
|
2004-12-27 06:17:50 +00:00
|
|
|
|
2013-10-08 16:12:58 +00:00
|
|
|
#ifdef HAVE_DLFCN_H
|
|
|
|
# include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
2016-08-26 08:14:54 +00:00
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2006-08-21 06:02:44 +00:00
|
|
|
/// This function builds an error message into \p ErrMsg using the \p prefix
|
|
|
|
/// string and the Unix error number given by \p errnum. If errnum is -1, the
|
|
|
|
/// default then the value of errno is used.
|
2018-05-01 16:10:38 +00:00
|
|
|
/// Make an error message
|
2009-04-20 20:50:13 +00:00
|
|
|
///
|
|
|
|
/// If the error number can be converted to a string, it will be
|
|
|
|
/// separated from prefix by ": ".
|
2008-05-13 00:00:25 +00:00
|
|
|
static inline bool MakeErrMsg(
|
2006-08-21 06:02:44 +00:00
|
|
|
std::string* ErrMsg, const std::string& prefix, int errnum = -1) {
|
|
|
|
if (!ErrMsg)
|
2006-08-23 07:30:48 +00:00
|
|
|
return true;
|
2006-08-21 06:02:44 +00:00
|
|
|
if (errnum == -1)
|
|
|
|
errnum = errno;
|
2009-07-01 18:11:20 +00:00
|
|
|
*ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
|
2006-08-23 07:30:48 +00:00
|
|
|
return true;
|
2006-08-21 06:02:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 10:59:17 +00:00
|
|
|
namespace llvm {
|
|
|
|
namespace sys {
|
|
|
|
|
|
|
|
/// Convert a struct timeval to a duration. Note that timeval can be used both
|
|
|
|
/// as a time point and a duration. Be sure to check what the input represents.
|
|
|
|
inline std::chrono::microseconds toDuration(const struct timeval &TV) {
|
|
|
|
return std::chrono::seconds(TV.tv_sec) +
|
|
|
|
std::chrono::microseconds(TV.tv_usec);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert a time point to struct timespec.
|
|
|
|
inline struct timespec toTimeSpec(TimePoint<> TP) {
|
|
|
|
using namespace std::chrono;
|
|
|
|
|
|
|
|
struct timespec RetVal;
|
|
|
|
RetVal.tv_sec = toTimeT(TP);
|
|
|
|
RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count();
|
|
|
|
return RetVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert a time point to struct timeval.
|
|
|
|
inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) {
|
|
|
|
using namespace std::chrono;
|
|
|
|
|
|
|
|
struct timeval RetVal;
|
|
|
|
RetVal.tv_sec = toTimeT(TP);
|
|
|
|
RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count();
|
|
|
|
return RetVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace sys
|
|
|
|
} // namespace llvm
|
|
|
|
|
2016-04-05 20:45:04 +00:00
|
|
|
#endif
|