64 Commits

Author SHA1 Message Date
Victor Derks
66a3605fd9
Add REUSE compatibility (#338)
- Follow the best practices of https://reuse.software/ to ensure BSD-3 licence is correctly applied.
- Add a badge to README.md
- Note: remove arm build as the CI pipeline is broken for this architecture
2024-12-04 12:33:36 +01:00
Dimitri Papadopoulos Orfanos
5a9b526180
Fix typos found by codespell (#335)
* Fix typos found by codespell

* Add missing >

---------

Co-authored-by: Victor Derks <vbaderks@gmail.com>
2024-09-25 22:59:02 +02:00
Victor Derks
bb529e463b
Remove duplicate code from make_scan_codec + undef_macros.h (#333)
- Remove code from make_scan_codec that was not used
- Unsure that undef_macro.h file is added to the list of public headers in CMakeLists.txt
2024-09-16 10:33:16 +02:00
Victor Derks
19afb35985
Simplify enums: only define used values (#310)
Remove values from the enum that are only needed for slightly better error reporting (handle this locally)

Also add support matrix to readme
2024-07-24 12:28:57 +02:00
Victor Derks
eaba4b02a1
Add support to encode and decode mapping tables (#302)
* Add support to write mapping tables to the JPEG byte stream.
* Add API method to set the table ID for a component
* Add method to create JPEG-LS file with mapping tables only.
* Add support to read mapping tables
* Parse table-ids from the scan segment
* Extend API of charls_decoder_get_mapping_table_index to return -1 if index is not found
* Add support to read mapping table continuation segments
* Document new API methods
* Add sample image from appendix H.4.5 "Example of a palletised image" / Figure H.10 to unit test
* Update the get_mapping_table API to include size of the buffer
2024-07-23 13:17:12 +02:00
Victor Derks
bd605773cd
Add support to fuzz with LibFuzzer (#294)
Both MSVC and clang have support for fuzzing with LibFuzzer. Add a console app that can be used to fuzz with LibFuzzer.
2023-12-27 19:40:23 +01:00
Victor Derks
2c4d3f439c
Update version to 3.0.0 and minimum C++ version to 17 (#230)
The release of C++17 has been 5 years ago. The supported period of C++14 has ended and the minimum required C++ version will be increased to C++17 for building the library and using it.
2023-03-24 22:27:26 +01:00
Victor Derks
c9c018fbdf
Add -Wconversion to GCC and clang as compiler option (#210)
-Wconversion will warn when implicit conversion may cause data loss.
2022-12-27 17:46:07 +01:00
Victor Derks
208b1bf4f0
Update max supported CMake version to 3.25 (#206) 2022-12-02 10:03:57 +01:00
Victor Derks
a973e5792e
Add _throws to unit tests that verify failures (#199)
CharLS is designed to throw when a method fails. End all unit test that verify this behaviour with _throws at the end.
2022-10-05 00:19:25 +02:00
Victor Derks
77d3c349e6
Use charlstest -unittest as ctest step during CI build (#173)
The unit test project can only be used on Windows. Enable the tests included in charlstest during the CI build.
2022-02-05 12:37:59 +01:00
Victor Derks
2991763583
Add -Wcast-align=strict and use void+static_cast (#163)
CharLS is cross-platform. -Wcast-align=strict will always warn for alignment issues, even when current platform can handle it (for example x86)
Use void*+static_cast to increase alignment. This is safe for dynamic allocated memory.
2022-01-27 23:39:12 +01:00
Victor Derks
c15be902b0
Add conditional_static_cast template to fix GCC -Wuseless-cast warnings (#162)
* Enable warning -Wuseless-cast for GCC build

* Add conditional_static_cast template to fix -Wuseless-cast warnings

Note 1: the original template code was created by
Thomas Braun (https://github.com/t-b) as an example in an issue discussion.
Note 2: the warnings are mostly reported on 32 bit (x86) builds. All CI Linux builds are x64 builds.
2022-01-26 23:37:13 +01:00
Mathieu Malaterre
5115f0e454
Do not enforce exactly c++14 standard when building charls (#158)
Per cmake documentation:

* https://cmake.org/cmake/help/git-stage/manual/cmake-compile-features.7.html#requiring-language-standards

For example, if C++ 11 features are used extensively in a project's
header files, then clients must use a compiler mode that is no less than
C++ 11. This can be requested with the code:

    target_compile_features(mylib PUBLIC cxx_std_11)

In this example, CMake will ensure the compiler is invoked in a mode of
at-least C++ 11 (or C++ 14, C++ 17, ...), adding flags such as
-std=gnu++11 if necessary. This applies to sources within mylib as well
as any dependents (that may include headers from mylib).
2022-01-26 22:00:00 +01:00
Victor Derks
816d455fd5
Restore Visual Studio 2015 compatibility (#143)
- /permissive- is only supported since Visual Studio 2017.
- VS 2015 cannot handle some constexpr functions that have multiple return statements.
- VS 2015 template deduction is limited.
2022-01-17 23:09:22 +01:00
Victor Derks
28c1ab4813
Threat linker warning as an error (#141) 2022-01-16 14:26:40 +01:00
Victor Derks
61ab78f9a7
Ensure CHARLS_CHECK_RETURN is the first option (#130)
When CHARLS_CHECK_RETURN is expanded to [[noignore]] is needs to before the inline statement
2022-01-06 18:45:21 +01:00
Victor Derks
0b3ac703e0
Backport C++20 countl_zero (#128)
Backport C++20 countl_zero

1) countl_zero can be used in peek_0_bits and is 2X faster.
Note: peek_0_bits is not on a hot path, overall gain is limited.

2) Apply updates for clang-tidy v13 (ships with VS 2022 17.1 Preview 2)

3) Increase upper range of supported CMake to 3.22
2022-01-06 16:06:23 +01:00
Victor Derks
01718e1ad1
Update warnings used by Clang and MSVC (#125)
Reserve the usage of Weverything and EnableAllWarnings for interactive development.
2022-01-03 23:44:58 +01:00
Victor Derks
64053b69af
Fix typo and align with MSBuild property name, resolves #93 2021-09-01 23:03:08 +02:00
Mathieu Malaterre
255a64b8c3 Add missing end of file for text file
For portability text file should end with 0x0A
2021-09-01 21:55:10 +02:00
Victor Derks
42c3a585c5
Enable Control-flow Enforcement Technology (CET)
The latest MSVC compiler makes it possible to mark executable images CET compatible. Enable this opt-in option.
Note: CET is only enabled when the CPU, OS and the hosting process supports it.
2021-05-07 23:18:17 +02:00
Victor Derks
49d6a3afd4
Add /ZH:SHA_256 to Directory.Build.props
/ZH:SHA_256 is the recommended option to compute checksums for debug symbols.
2021-04-29 20:36:47 +02:00
Victor Derks
478dbd8593
Exclude options in the CMakeLists.txt for Visual Studio 2015
Visual Studio 2015 cannot handle the /Zc:__cplusplus option and the new options in the manifest file. Exclude this things when build with Visual Studio 2015.
2021-01-04 22:56:08 +01:00
Victor Derks
6019fbd0f7
Enable Control Flow Guard in CMake script + v3.13
- Control Flow Guard provides more security on the Windows platform.

- To use the add_link_options, the minimum required CMake version needs to be increased to v3.13
2020-12-30 15:27:18 +01:00
Victor Derks
90b48d5e0c
Provide BUILD_SHARED_LIBS as an option, resolves #66
The standard CMake option BUILD_SHARED_LIBS can be passed to CMake with the command line.
Adding this variable also as option makes it visibiel in GUIs that can be used for configure CMake options.
Note: the default value of BUILD_SHARED_LIBS is not changed.
2020-11-07 16:43:37 +01:00
Victor Derks
9fc23d3889
Add missing compile options to CMakeLists.txt
Ensure options used in the vcxproj file are also used in the CMakeLists.txt file.
2020-11-01 15:29:48 +01:00
Victor Derks
d79494c65a
Add Windows manifest files to the executables to activate utf-8, long path and SegmentHeap
For backwards compatibility Windows will only activate new OS functionality by an opt-in mechanism (this to prevent breaking legacy apps).
Activate the following:

- Support for long path names (requires Windows 10 1607 or newer), File names longer then 260 characters are now supported.

- The UTF-8 code page (requires Windows 10 1903 or newer). Unicode file names can be passed on the command line and opened. Calls to Win32 API functions with xxxA accept UTF-8 strings.

- Usage of the new memory heap (requires Windows 10 2004 or newer)
2020-09-30 23:55:17 +02:00
Victor Derks
9d4c213034
Add the /utf-8 switch to the MSVC compiler options to force reading source as utf-8
All C and C++ source code is encoded as utf-8 without a signature (bom). The GCC and clang compiler will read by default source code files in that format.
The MSVC compiler will look for a signature (bom), if non is found then the default system codepace encoding is used.
/utf-8 ensure that the correct source and executing encoding is used and that conversions are validated.

As no special characters are used in the source code, this is only a technical correction.
2020-09-25 22:35:29 +02:00
Victor Derks
9b9194690c Update the supported CMake version to 3.16 2020-03-07 16:09:29 +01:00
Victor Derks
73dd7811d4 Add an american fuzzy lop test application (#36)
To make it possible to use the american fuzzy lop (afl) fuzzing framework, add a test application that can be used to fuzz the decoding process.
2020-02-21 12:30:44 +01:00
Victor Derks
9c2511261e Make version.h the single definition for version info
The version number was defined in charls.rc, CMakeLists.txt and version.h. Refactor to make it possible to only have the version number in version.h
Additional:
- convert the .rc file encoding to utf8 (improved git compatibility)
- add an additional DLL build for VS2015
- Remove linker warnings for VS2015 DLL x64 build
2020-01-30 22:03:28 +01:00
Victor Derks
59b7f92a98 Add an Azure pipeline configuration
The CI Azure pipeline makes it possible to test CharLS with all supported compilers on all 3 main operating systems.
2020-01-06 00:24:23 +01:00
Victor Derks
e39a28a2af Upgrade version to 2.1.1 2020-01-02 00:58:56 +01:00
Victor Derks
20ed9e93be Update version to 2.1.0 2019-12-29 20:10:31 +01:00
Victor Derks
bf0cdc7114 Replace strcpy with safe string_copy (SonarCloud)
Address feedback from the SonarCloud static analyzer, replace strcpy with a safe implementation. As no cross platform solution is available, introduce a #ifdef/#else based solution.

Also get rid of _CRT_SECURE_NO_WARNINGS by removing a not used function and using std::ifstream instead of fopen\fclose.
2019-12-17 14:36:33 +01:00
Victor Derks
a2adb658c3 Introduce SPDX Unique License Identifiers (BSD-3-Clause)
Apply the modern way of documenting the used license, by referencing a SPDX Unique License Identifier in the source code files.

Note: From the legal point of view, this commit is only a change to the textual representation of the license information, but in no way any change to the actual license terms. With this commit applied, all files will still be licensed under the same terms they were before.
2019-11-08 23:17:16 +01:00
Victor Derks
a7cfe6e66b Encode the ABI version and architecture in the Windows DLL filename
To ensure that the correct DLL is loaded, encode the ABI version (currently 2) and the CPU architecture in the DLL file name.
The architecture was already encoded (but only for x64), the ABI was missing, but requested as there are projects that use open source modules link with v1 and others with v2.
2019-05-23 23:27:18 +02:00
Victor Derks
916656e215 Set configure CMAKE_CXX_EXTENSIONS OFF to ensure -std=c++14 is used
If this option is not set -std=gnu++14 will be used instead of c++14. No gcc extensions are used and "plain" C++ is prefered.
2019-01-04 23:43:34 +01:00
Victor Derks
c391025c82 Update CMake build files from 2.6 to modern CMake 3.9
The modern way of CMake build script has changed. To make CharLS more package friendly, update the overall CMake structure to modern CMake.
For the moment target CMake 3.9 as the minimum, as this version is available on the Travis CI build system.
Visual Studio 2017 15.9 Preview 4 is required on the Windows platform, but the Visual Studio solution file and MSBuild projects is on that platform the supported way to build CharLS.
2018-10-23 23:25:01 +02:00
Victor Derks
694dfa1a4e Move the interface headers to a namespace include folder
Modern practice is to move the interface header files to a include/<lib-name> folder. This prevents that header filenames conflict with other libraries. And it also allows client code to use #include <package-name\header-filename.h> constructions.
2018-10-11 21:12:39 +02:00
Victor Derks
a4745a4b4b Rename time.cpp and time.h into gettime.cpp and gettime.h
Prevent confusing with time.h from UNIX\C++ standard libs
2018-01-13 15:34:15 +01:00
Christophe Guébert
838b82d12a Fix the compilation on Windows with CMake and the option BUILD_SHARED_LIBS. 2016-12-07 12:08:32 +01:00
Victor Derks
0b61f92165 Use CLang -Weverything minus warnings
CLang -Weverything minus warnings that not useful for normal usage ensures that compiler warnings are easier detected on the CI builds.
2016-11-12 00:43:40 +01:00
vbaderks
c94f17270d Updated the list of public header files that are required to use CharLS as a library.
Increased the major version number to 2.
This fixes #12
2016-04-30 23:23:58 +02:00
Victor Derks
007d0ad566 Updated Linux compilers GCC and Clang to target C++ v14.
Removed own charls copy of make_unique (not needed anymore when targetting C++ v14
2016-02-05 21:35:49 +01:00
Victor Derks
5ca6523b00 Fixes for Travis CI build 2016-01-23 00:07:44 +01:00
Victor Derks
63aeba0dd3 Updated the used style of CMakeList to all lower case 2015-02-28 21:36:20 +01:00
xantares
26ac712fa5 Enhanced cmake build system 2015-02-21 10:42:31 +01:00
vbaderks
8d6a82cb96 Updated CMakeLists.txt to improve support for building Debug and Release versions 2014-11-15 21:00:42 +01:00