HDFS-16468. Define ssize_t for Windows (#4228)
* Some C/C++ files use ssize_t data type. This isn't available for Windows and we need to define an alias for this and set it to an appropriate type to make it cross platform compatible.
This commit is contained in:
parent
7bd7725532
commit
88155cebe9
@ -25,6 +25,7 @@ include_directories(
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/../libhdfs
|
${CMAKE_CURRENT_SOURCE_DIR}/../libhdfs
|
||||||
${JNI_INCLUDE_DIRS}
|
${JNI_INCLUDE_DIRS}
|
||||||
${OS_DIR}
|
${OS_DIR}
|
||||||
|
../libhdfspp/lib
|
||||||
)
|
)
|
||||||
|
|
||||||
add_library(native_mini_dfs
|
add_library(native_mini_dfs
|
||||||
|
@ -29,6 +29,7 @@ include_directories(
|
|||||||
main/native
|
main/native
|
||||||
main/native/libhdfs
|
main/native/libhdfs
|
||||||
${OS_DIR}
|
${OS_DIR}
|
||||||
|
../libhdfspp/lib
|
||||||
)
|
)
|
||||||
|
|
||||||
hadoop_add_dual_library(hdfs
|
hadoop_add_dual_library(hdfs
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "platform.h"
|
#include "platform.h"
|
||||||
#include "os/mutexes.h"
|
#include "os/mutexes.h"
|
||||||
#include "os/thread_local_storage.h"
|
#include "os/thread_local_storage.h"
|
||||||
|
#include "x-platform/types.h"
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
# it by add -DLIBHDFSPP_DIR=... to your cmake invocation
|
# it by add -DLIBHDFSPP_DIR=... to your cmake invocation
|
||||||
set(LIBHDFSPP_DIR CACHE STRING ${CMAKE_INSTALL_PREFIX})
|
set(LIBHDFSPP_DIR CACHE STRING ${CMAKE_INSTALL_PREFIX})
|
||||||
|
|
||||||
include_directories( ${LIBHDFSPP_DIR}/include )
|
include_directories( ${LIBHDFSPP_DIR}/include ../../lib )
|
||||||
link_directories( ${LIBHDFSPP_DIR}/lib )
|
link_directories( ${LIBHDFSPP_DIR}/lib )
|
||||||
|
|
||||||
add_executable(cat_c cat.c)
|
add_executable(cat_c cat.c)
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#include "hdfspp/hdfs_ext.h"
|
#include "hdfspp/hdfs_ext.h"
|
||||||
#include "uriparser2/uriparser2.h"
|
#include "uriparser2/uriparser2.h"
|
||||||
#include "common/util_c.h"
|
#include "common/util_c.h"
|
||||||
|
#include "x-platform/types.h"
|
||||||
|
|
||||||
#define SCHEME "hdfs"
|
#define SCHEME "hdfs"
|
||||||
#define BUF_SIZE 1048576 //1 MB
|
#define BUF_SIZE 1048576 //1 MB
|
||||||
|
@ -62,7 +62,6 @@ int main(int argc, char *argv[]) {
|
|||||||
//wrapping file_raw into a unique pointer to guarantee deletion
|
//wrapping file_raw into a unique pointer to guarantee deletion
|
||||||
std::unique_ptr<hdfs::FileHandle> file(file_raw);
|
std::unique_ptr<hdfs::FileHandle> file(file_raw);
|
||||||
|
|
||||||
ssize_t total_bytes_read = 0;
|
|
||||||
size_t last_bytes_read = 0;
|
size_t last_bytes_read = 0;
|
||||||
|
|
||||||
do{
|
do{
|
||||||
@ -71,7 +70,6 @@ int main(int argc, char *argv[]) {
|
|||||||
if(status.ok()) {
|
if(status.ok()) {
|
||||||
//Writing file chunks to stdout
|
//Writing file chunks to stdout
|
||||||
fwrite(input_buffer, last_bytes_read, 1, stdout);
|
fwrite(input_buffer, last_bytes_read, 1, stdout);
|
||||||
total_bytes_read += last_bytes_read;
|
|
||||||
} else {
|
} else {
|
||||||
if(status.is_invalid_offset()){
|
if(status.is_invalid_offset()){
|
||||||
//Reached the end of the file
|
//Reached the end of the file
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include "connection/datanodeconnection.h"
|
#include "connection/datanodeconnection.h"
|
||||||
#include "reader/block_reader.h"
|
#include "reader/block_reader.h"
|
||||||
#include "hdfspp/events.h"
|
#include "hdfspp/events.h"
|
||||||
|
#include "x-platform/types.h"
|
||||||
|
|
||||||
#include <future>
|
#include <future>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
#include "bad_datanode_tracker.h"
|
#include "bad_datanode_tracker.h"
|
||||||
#include "ClientNamenodeProtocol.pb.h"
|
#include "ClientNamenodeProtocol.pb.h"
|
||||||
|
#include "x-platform/types.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
#include "types.h"
|
||||||
|
|
||||||
bool XPlatform::Syscall::WriteToStdout(const std::string& message) {
|
bool XPlatform::Syscall::WriteToStdout(const std::string& message) {
|
||||||
return WriteToStdoutImpl(message.c_str());
|
return WriteToStdoutImpl(message.c_str());
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef NATIVE_LIBHDFSPP_LIB_CROSS_PLATFORM_TYPES
|
||||||
|
#define NATIVE_LIBHDFSPP_LIB_CROSS_PLATFORM_TYPES
|
||||||
|
|
||||||
|
#if _WIN64
|
||||||
|
// Windows 64-bit.
|
||||||
|
typedef long int ssize_t;
|
||||||
|
#elif _WIN32
|
||||||
|
// Windows 32-bit.
|
||||||
|
typedef int ssize_t;
|
||||||
|
#else
|
||||||
|
// ssize_t is correctly defined by taking bit-ness into account on non-Windows
|
||||||
|
// systems. So we just include the header file where ssize_t is defined.
|
||||||
|
#include <sys/types.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
@ -31,3 +31,8 @@ add_test(x_platform_utils_test x_platform_utils_test)
|
|||||||
target_include_directories(x_platform_syscall_test PRIVATE ${LIBHDFSPP_LIB_DIR})
|
target_include_directories(x_platform_syscall_test PRIVATE ${LIBHDFSPP_LIB_DIR})
|
||||||
target_link_libraries(x_platform_syscall_test gmock_main)
|
target_link_libraries(x_platform_syscall_test gmock_main)
|
||||||
add_test(x_platform_syscall_test x_platform_syscall_test)
|
add_test(x_platform_syscall_test x_platform_syscall_test)
|
||||||
|
|
||||||
|
add_executable(x_platform_types_test types_test.cc)
|
||||||
|
target_include_directories(x_platform_types_test PRIVATE ${LIBHDFSPP_LIB_DIR})
|
||||||
|
target_link_libraries(x_platform_types_test gtest_main)
|
||||||
|
add_test(x_platform_types_test x_platform_types_test)
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "types_test.h"
|
||||||
|
#include "x-platform/types.h"
|
||||||
|
|
||||||
|
INSTANTIATE_TYPED_TEST_SUITE_P(SSizeTTest, XPlatformTypesTest, ssize_t);
|
@ -0,0 +1,78 @@
|
|||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBHDFSPP_CROSS_PLATFORM_TYPES_TEST
|
||||||
|
#define LIBHDFSPP_CROSS_PLATFORM_TYPES_TEST
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@class XPlatformTypesTest} tests the types defined in the XPlatform library.
|
||||||
|
*/
|
||||||
|
template <class T> class XPlatformTypesTest : public testing::Test {
|
||||||
|
public:
|
||||||
|
XPlatformTypesTest() = default;
|
||||||
|
XPlatformTypesTest(const XPlatformTypesTest &) = delete;
|
||||||
|
XPlatformTypesTest(XPlatformTypesTest &&) = delete;
|
||||||
|
XPlatformTypesTest &operator=(const XPlatformTypesTest &) = delete;
|
||||||
|
XPlatformTypesTest &operator=(XPlatformTypesTest &&) = delete;
|
||||||
|
~XPlatformTypesTest() override;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <class T> XPlatformTypesTest<T>::~XPlatformTypesTest() = default;
|
||||||
|
|
||||||
|
TYPED_TEST_SUITE_P(XPlatformTypesTest);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests whether ssize_t can hold -1.
|
||||||
|
*/
|
||||||
|
TYPED_TEST_P(XPlatformTypesTest, SSizeTMinusOne) {
|
||||||
|
constexpr TypeParam value = -1;
|
||||||
|
ASSERT_EQ(value, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests whether ssize_t can hold at least an int.
|
||||||
|
*/
|
||||||
|
TYPED_TEST_P(XPlatformTypesTest, SSizeTCanHoldInts) {
|
||||||
|
constexpr auto actual = std::numeric_limits<TypeParam>::max();
|
||||||
|
constexpr auto expected = std::numeric_limits<int>::max();
|
||||||
|
ASSERT_GE(actual, expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
// For 64-bit systems.
|
||||||
|
#if _WIN64 || __x86_64__ || __ppc64__
|
||||||
|
/**
|
||||||
|
* Tests whether ssize_t can hold at least a long int.
|
||||||
|
*/
|
||||||
|
TYPED_TEST_P(XPlatformTypesTest, SSizeTCanHoldLongInts) {
|
||||||
|
constexpr auto actual = std::numeric_limits<TypeParam>::max();
|
||||||
|
constexpr auto expected = std::numeric_limits<long int>::max();
|
||||||
|
ASSERT_GE(actual, expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
REGISTER_TYPED_TEST_SUITE_P(XPlatformTypesTest, SSizeTMinusOne,
|
||||||
|
SSizeTCanHoldInts, SSizeTCanHoldLongInts);
|
||||||
|
#else
|
||||||
|
REGISTER_TYPED_TEST_SUITE_P(XPlatformTypesTest, SSizeTMinusOne,
|
||||||
|
SSizeTCanHoldInts);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
@ -85,7 +85,6 @@ namespace hdfs {
|
|||||||
static char input_buffer[BUF_SIZE];
|
static char input_buffer[BUF_SIZE];
|
||||||
|
|
||||||
void readFile(std::shared_ptr<hdfs::FileSystem> fs, std::string path, off_t offset, std::FILE* dst_file, bool to_delete) {
|
void readFile(std::shared_ptr<hdfs::FileSystem> fs, std::string path, off_t offset, std::FILE* dst_file, bool to_delete) {
|
||||||
ssize_t total_bytes_read = 0;
|
|
||||||
size_t last_bytes_read = 0;
|
size_t last_bytes_read = 0;
|
||||||
|
|
||||||
hdfs::FileHandle *file_raw = nullptr;
|
hdfs::FileHandle *file_raw = nullptr;
|
||||||
@ -103,7 +102,6 @@ namespace hdfs {
|
|||||||
if(status.ok()) {
|
if(status.ok()) {
|
||||||
//Writing file chunks to stdout
|
//Writing file chunks to stdout
|
||||||
fwrite(input_buffer, last_bytes_read, 1, dst_file);
|
fwrite(input_buffer, last_bytes_read, 1, dst_file);
|
||||||
total_bytes_read += last_bytes_read;
|
|
||||||
offset += last_bytes_read;
|
offset += last_bytes_read;
|
||||||
} else {
|
} else {
|
||||||
if(status.is_invalid_offset()){
|
if(status.is_invalid_offset()){
|
||||||
|
Loading…
Reference in New Issue
Block a user