mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
f6e25b695e
re: https://github.com/Unidata/netcdf-c/issues/2117 re: https://github.com/Unidata/netcdf-c/issues/2119 * Modify libsrc to allow byte-range reading of netcdf-3 files in private S3 buckets; this required using the aws sdk. Also add a test case. * The aws sdk can sometimes cause problems if the Awd::ShutdownAPI function is not called. So at optional atexit() support to ensure it is called. This is disabled for Windows. * Add documentation to nczarr.md on how to build and use the aws sdk under windows. Currently it builds, but testing fails. * Switch testing from stratus to the Unidata bucket on S3. * Improve support for the s3: url protocol. * Add a s3 specific utility code file: ds3util.c * Modify NC_infermodel to attempt to read the magic number of byte-ranged files in S3. ## Misc. * Move and rename the core S3 SDK wrapper code (libnczarr/zs3sdk.cpp) to libdispatch since it now used in libsrc as well as libnczarr. * Add calls to nc_finalize in the utilities in case atexit is disabled. * Add header only json parser to the distribution rather than as a built source.
78 lines
1.9 KiB
CMake
78 lines
1.9 KiB
CMake
## This is a CMake file, part of Unidata's netCDF package.
|
|
# Copyright 2012-2018, see the COPYRIGHT file for more information.
|
|
|
|
SET(libsrc_SOURCES v1hpg.c putget.c attr.c nc3dispatch.c
|
|
nc3internal.c var.c dim.c ncx.c lookup3.c ncio.c)
|
|
|
|
# Process these files with m4.
|
|
SET(m4_SOURCES attr ncx putget)
|
|
foreach (f ${m4_SOURCES})
|
|
GEN_m4(${f} dest)
|
|
LIST(APPEND libsrc_SOURCES ${dest})
|
|
endforeach(f)
|
|
|
|
LIST(APPEND libsrc_SOURCES pstdint.h ncio.h ncx.h)
|
|
|
|
LIST(APPEND libsrc_SOURCES memio.c)
|
|
|
|
IF (BUILD_MMAP)
|
|
LIST(APPEND libsrc_SOURCES mmapio.c)
|
|
ENDIF( BUILD_MMAP)
|
|
|
|
IF (USE_FFIO)
|
|
LIST(APPEND libsrc_SOURCES ffio.c)
|
|
ELSEIF (USE_STDIO)
|
|
IST(APPEND libsrc_SOURCES ncstdio.c)
|
|
ELSE (USE_FFIO)
|
|
LIST(APPEND libsrc_SOURCES posixio.c)
|
|
ENDIF (USE_FFIO)
|
|
|
|
IF (ENABLE_BYTERANGE)
|
|
LIST(APPEND libsrc_SOURCES httpio.c)
|
|
IF (ENABLE_S3_SDK)
|
|
LIST(APPEND libsrc_SOURCES s3io.c)
|
|
ENDIF(ENABLE_S3_SDK)
|
|
ENDIF(ENABLE_BYTERANGE)
|
|
|
|
add_library(netcdf3 OBJECT ${libsrc_SOURCES})
|
|
|
|
IF(MPI_C_INCLUDE_PATH)
|
|
target_include_directories(netcdf3 PUBLIC ${MPI_C_INCLUDE_PATH})
|
|
ENDIF(MPI_C_INCLUDE_PATH)
|
|
|
|
# The C API man page.
|
|
|
|
SET(MAN_FILES netcdf.3)
|
|
|
|
set(ARGS_MANPAGE -DAPI=C)
|
|
|
|
IF (USE_HDF5)
|
|
SET(ARGS_MANPAGE ${ARGS_MANPAGE} -DNETCDF4=TRUE)
|
|
ENDIF(USE_HDF5)
|
|
|
|
IF (BUILD_DAP)
|
|
SET(ARGS_MANPAGE ${ARGS_MANPAGE} -DDAP=TRUE)
|
|
ENDIF(BUILD_DAP)
|
|
|
|
IF (BUILD_PARALLEL)
|
|
SET(ARGS_MANPAGE ${ARGS_MANPAGE} -DPARALLEL_IO=TRUE)
|
|
ENDIF(BUILD_PARALLEL)
|
|
|
|
# Generate the man page.
|
|
IF(HAVE_M4)
|
|
|
|
FILE(GLOB libsrc_MANPAGE ${CMAKE_CURRENT_SOURCE_DIR}/../docs/netcdf.m4)
|
|
FILE(COPY ${libsrc_MANPAGE} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
IF(NOT MSVC)
|
|
ADD_CUSTOM_TARGET(manpage ALL
|
|
|
|
COMMAND ${NC_M4} ${ARGS_MANPAGE} '${CMAKE_CURRENT_BINARY_DIR}/netcdf.m4' > '${CMAKE_CURRENT_BINARY_DIR}/netcdf.3'
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/netcdf.3 DESTINATION "share/man/man3" COMPONENT documentation)
|
|
ENDIF(NOT MSVC)
|
|
|
|
ENDIF()
|