// Copyright 2014 The Bazel Authors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // INTERNAL header file for use by C++ code in this package. #ifndef BAZEL_SRC_MAIN_NATIVE_UNIX_JNI_H__ #define BAZEL_SRC_MAIN_NATIVE_UNIX_JNI_H__ #include #include #include #define CHECK(condition) \ do { \ if (!(condition)) { \ fprintf(stderr, "%s:%d: check failed: %s\n", \ __FILE__, __LINE__, #condition); \ abort(); \ } \ } while (0) #if defined(__APPLE__) || defined(__FreeBSD__) // stat64 is deprecated on OS X/BSD. typedef struct stat portable_stat_struct; #define portable_stat ::stat #define portable_lstat ::lstat #else typedef struct stat64 portable_stat_struct; #define portable_stat ::stat64 #define portable_lstat ::lstat64 #endif #if defined(__FreeBSD__) #define ENODATA ENOATTR #endif // Posts a JNI exception to the current thread with the specified // message; the exception's class is determined by the specified UNIX // error number. See package-info.html for details. extern void PostException(JNIEnv *env, int error_number, const std::string &message); // Like PostException, but the exception message includes both the // specified filename and the standard UNIX error message for the // error number. // (Consistent with errors generated by java.io package.) extern void PostFileException(JNIEnv *env, int error_number, const char *filename); // Like PostFileException, but with a different error message. extern void PostSystemException(JNIEnv *env, int error_number, const char *name); // Returns the standard error message for a given UNIX error number. extern std::string ErrorMessage(int error_number); // Runs fstatat(2), if available, or sets errno to ENOSYS if not. int portable_fstatat(int dirfd, char *name, portable_stat_struct *statbuf, int flags); // Encoding for different timestamps in a struct stat{}. enum StatTimes { STAT_ATIME, // access STAT_MTIME, // modification STAT_CTIME, // status change }; // Returns seconds from a stat buffer. int StatSeconds(const portable_stat_struct &statbuf, StatTimes t); // Returns nanoseconds from a stat buffer. int StatNanoSeconds(const portable_stat_struct &statbuf, StatTimes t); // Runs getxattr(2). If the attribute is not found, returns -1 and sets // attr_not_found to true. For all other errors, returns -1, sets attr_not_found // to false and leaves errno set to the error code returned by the system. ssize_t portable_getxattr(const char *path, const char *name, void *value, size_t size, bool *attr_not_found); // Runs lgetxattr(2). If the attribute is not found, returns -1 and sets // attr_not_found to true. For all other errors, returns -1, sets attr_not_found // to false and leaves errno set to the error code returned by the system. ssize_t portable_lgetxattr(const char *path, const char *name, void *value, size_t size, bool *attr_not_found); // Run sysctlbyname(3), only available on darwin int portable_sysctlbyname(const char *name_chars, long *mibp, size_t *sizep); #endif // BAZEL_SRC_MAIN_NATIVE_UNIX_JNI_H__