diff --git a/.clang-format b/.clang-format index 1069ad002..4f51fb199 100644 --- a/.clang-format +++ b/.clang-format @@ -1,3 +1,20 @@ +# 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. + BasedOnStyle: LLVM Language: Cpp IndentWidth: 4 diff --git a/CHANGES.md b/CHANGES.md index 1779dcb8c..26e98b052 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,7 +19,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -# Noteworthy Changes for 2.4.0 (TBD) +# Noteworthy Changes for 2.4.0 (2023-09-27) ## New Features @@ -30,10 +30,10 @@ limitations under the License. - Coding convention documentation. - Celix error library for printing errors when no framework is available. - Scope-based Resource Management (RAII-light for C). -- Rust Proof of Concept (PoC) for Apache Celix. - Support for uncompressed bundle deployment, which enables multiple frameworks to share the bundle resources by using unzipped bundle dirs instead of a zip files as BUNDLES arguments in `add_celix_container`. - +- Scheduled event support, so that (low-frequency / non IO blocking) events can be scheduled on the Apache Celix event + thread. ## Improvements diff --git a/CMakeLists.txt b/CMakeLists.txt index 955f61d45..fddf991fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,7 +146,7 @@ endif() # Set version for the framework package/release if (NOT DEFINED CELIX_MAJOR) set(CELIX_MAJOR "2") - set(CELIX_MINOR "3") + set(CELIX_MINOR "4") set(CELIX_MICRO "0") endif () diff --git a/LICENSE b/LICENSE index 8394a4daa..3b243347e 100644 --- a/LICENSE +++ b/LICENSE @@ -233,30 +233,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -Mongoose (mongoose.h/c) - -Copyright (c) 2004-2011 Sergey Lyubka - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - ---------------------------------------------------------------------------------- - This product bundles fmemopen.h/.c & open_memstream.h/.c from Pyhull v1.5.4, which is available under the MIT license. For details, see remote_services/dynamic_function_interface/memstream. @@ -308,30 +284,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ---------------------------------------------------------------------------------- - -Civetweb (civetweb.c/h) - -Copyright (c) 2013-2018 the Civetweb developers -Copyright (c) 2004-2013 Sergey Lyubka - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- @@ -362,31 +314,32 @@ SOFTWARE. --------------------------------------------------------------------------------- -This product uses has_rtti.cpp (libs/framework/include/celix/Utils.h), -which is available under the BSD new license. For more details see -https://gist.github.com/brimston3/2be168bb423c83b0f469c0be56e66d31 +This product uses Two-Level Segregated Fit memory allocator implementation +(bundles/remote_services/remote_service_admin_shm_v2/shm_pool/src/tlsf.(c|h)), which is available under the +BSD license. +For more details see https://github.com/mattconte/tlsf -Copyright (c) 1998, Regents of the University of California +Copyright (c) 2006-2016, Matthew Conte All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of the University of California, Berkeley nor the + * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY +DISCLAIMED. IN NO EVENT SHALL MATTHEW CONTE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 956345cd8..36eeac4e5 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -13,45 +13,64 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Release Notes for Apache Celix 2.2.0 - -## Known shortcomings: - -- Uninstall of bundle is not working correctly. -- Importing and exported of bundle libraries is not working correctly. +# Release Notes for Apache Celix 2.4.0 ## Versions ### Libraries: - - Celix Framework library: 2.2.0 - - Celix Utils library: 2.2.0 - - Celix DFI library: 1.2.0 - - Celix etcdlib: 1.1.0 + - Celix::framework: 2.4.0 + - Celix::utils: 2.4.0 + - Celix::dfi: 1.3.0 + - Celix::etcdlib: 1.2.0 + - Celix::Promises: 1.1.0 + - Celix::PushStreams: N/A + - Celix::rcm: 0.0.1 -### Bundles - - Shell Tui: 1.1.0 - - Shell Bonjour: 0.1.0 - - Shell: 2.1.0 - - Remote Shell: 0.0.2 - - Log Writer: 1.2.0 - - Log Service: 1.2.0 - - Event Admin: 0.0.0 - - Device Access: 0.0.2 - - Deployment Admin: 0.0.2 - - Config Admin: 0.0.1 +### Bundles & Bundle Support Libraries: + - Celix::components_ready_check: 1.0.0 + - Shell + - Celix::shell: 2.1.0 + - Celix::ShellCxx: 2.1.0 + - Celix::shell_tui: 1.1.0 + - Celix::shell_wui: 1.1.0 + - Celix::shell_bonjour: 0.1.0 + - Celix::shell_remote: 0.0.2 + - Logging + - Celix::log_admin: 1.1.0 + - Celix::log_helper library: N/A + - Celix::log_service_api: N/A + - Celix::syslog_writer: 1.0.0 + - HTTP Admin + - Celix::http_admin_api library: N/A + - Celix::http_admin: 1.0.0 + - Deployment Admin: 0.0.2 - Remote Services - - Remote Service Admin Dfi: 0.9.0 - - Remote Service Admin HTTP: 0.9.0 - - Remote Service Admin SHM: 0.9.0 - - Topology Manager: 0.9.0 - - ETCD Discovery: 0.9.0 - - Configured Discovery: 0.9.0 + - Celix::remote_services_api library: N/A + - Celix::c_rsa_spi: N/A + - Celix::rsa_common: N/A + - Celix::rsa_dfi_utils: N/A + - Celix::rsa_json_rpc: 1.0.0 + - Celix::rsa_discovery: 0.9.0 + - Celix::rsa_discovery_etcd: 0.9.0 + - Celix::rsa_discovery_shm: 0.0.1 + - Celix::rsa_discovery_zeroconf: 1.0.0 + - Celix::rsa_dfi: 0.9.0 + - Celix::rsa_shm 1.0.0 + - Celix::rsa_topology_manager: 0.9.0 + - C++ Remote Services + - Celix::rsa_spi library: N/A + - Celix::RemoteServiceAdmin: 0.9.0 + - Celix::RsaConfiguredDiscovery: 0.9.0 - PubSub - - PubSubAdmin UDP Multicast : 1.0.0 - - PubSubAdmin ZMQ : 1.1.0 - - PubSub ETCD Discovery: 1.1.0 - - PubSub Topology Manager: 1.1.0 - - PubSub JSON Serializer : 1.1.0 - - PubSub Avrobin Serializer : 1.0.0 - - PubSub Websocket: 1.0.0 - - PubSub TCP: 1.0.0 + - Celix::pubsub_utils library: N/A + - Celix::pubsub_spi library: N/A + - Celix::pubsub_api library: N/A + - Celix::celix_pubsub_protocol_wire_v1: 1.0.1 + - Celix::celix_pubsub_protocol_wire_v2: 1.0.1 + - Celix::celix_pubsub_admin_tcp: 2.1.0 + - Celix::celix_pubsub_admin_udp_multicast: 1.1.0 + - Celix::celix_pubsub_admin_websocket: 2.1.0 + - Celix::celix_pubsub_admin_zmq: 2.1.0 + - Celix::celix_pubsub_serializer_avrobin: 1.1.1 + - Celix::celix_pubsub_serializer_json: 1.1.1 + - Celix::celix_pubsub_topology_manager: 1.1.1 diff --git a/bundles/http_admin/http_admin/CMakeLists.txt b/bundles/http_admin/http_admin/CMakeLists.txt index 925440e3c..cb0bd29ef 100644 --- a/bundles/http_admin/http_admin/CMakeLists.txt +++ b/bundles/http_admin/http_admin/CMakeLists.txt @@ -21,7 +21,7 @@ add_celix_bundle(http_admin src/websocket_admin.c src/activator.c src/service_tree.c - VERSION 0.0.1 + VERSION 1.0.0 SYMBOLIC_NAME "apache_celix_http_admin" GROUP "Celix/HTTP_admin" NAME "Apache Celix HTTP Admin" diff --git a/bundles/pubsub/pubsub_admin_tcp/CMakeLists.txt b/bundles/pubsub/pubsub_admin_tcp/CMakeLists.txt index 6427cae31..421f4afa2 100644 --- a/bundles/pubsub/pubsub_admin_tcp/CMakeLists.txt +++ b/bundles/pubsub/pubsub_admin_tcp/CMakeLists.txt @@ -21,7 +21,7 @@ if (PUBSUB_PSA_TCP) add_celix_bundle(celix_pubsub_admin_tcp BUNDLE_SYMBOLICNAME "apache_celix_pubsub_admin_tcp" - VERSION "2.0.0" + VERSION "2.1.0" GROUP "Celix/PubSub" SOURCES src/psa_activator.c diff --git a/bundles/pubsub/pubsub_admin_udp_mc/CMakeLists.txt b/bundles/pubsub/pubsub_admin_udp_mc/CMakeLists.txt index f859a9664..1826b8d2a 100644 --- a/bundles/pubsub/pubsub_admin_udp_mc/CMakeLists.txt +++ b/bundles/pubsub/pubsub_admin_udp_mc/CMakeLists.txt @@ -19,7 +19,7 @@ celix_subproject(PUBSUB_PSA_UDP_MC "Build UDP MC PubSub Admin" ON) if (PUBSUB_PSA_UDP_MC) add_celix_bundle(celix_pubsub_admin_udp_multicast BUNDLE_SYMBOLICNAME "apache_celix_pubsub_admin_udp_multicast" - VERSION "1.0.0" + VERSION "1.1.0" GROUP "Celix/PubSub" SOURCES src/psa_activator.c diff --git a/bundles/pubsub/pubsub_admin_websocket/CMakeLists.txt b/bundles/pubsub/pubsub_admin_websocket/CMakeLists.txt index 752004ca4..99a851254 100644 --- a/bundles/pubsub/pubsub_admin_websocket/CMakeLists.txt +++ b/bundles/pubsub/pubsub_admin_websocket/CMakeLists.txt @@ -22,7 +22,7 @@ if (PUBSUB_PSA_WS) add_celix_bundle(celix_pubsub_admin_websocket BUNDLE_SYMBOLICNAME "apache_celix_pubsub_admin_websocket" - VERSION "2.0.0" + VERSION "2.1.0" GROUP "Celix/PubSub" SOURCES src/psa_activator.c diff --git a/bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt b/bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt index 9428a8bec..f14f38bc6 100644 --- a/bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt +++ b/bundles/pubsub/pubsub_admin_zmq/CMakeLists.txt @@ -36,7 +36,7 @@ if (PUBSUB_PSA_ZMQ) add_celix_bundle(celix_pubsub_admin_zmq BUNDLE_SYMBOLICNAME "apache_celix_pubsub_admin_zmq" - VERSION "2.0.0" + VERSION "2.1.0" GROUP "Celix/PubSub" SOURCES src/psa_activator.c diff --git a/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v1/CMakeLists.txt b/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v1/CMakeLists.txt index 5a5a2636e..950590d45 100644 --- a/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v1/CMakeLists.txt +++ b/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v1/CMakeLists.txt @@ -27,7 +27,7 @@ if (PUBSUB_WIRE_PROTOCOL_V1) add_celix_bundle(celix_pubsub_protocol_wire_v1 BUNDLE_SYMBOLICNAME "apache_celix_pubsub_protocol_wire_v1" - VERSION "1.0.0" + VERSION "1.0.1" GROUP "Celix/PubSub" SOURCES src/ps_wire_protocol_activator.c diff --git a/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v2/CMakeLists.txt b/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v2/CMakeLists.txt index a4a0f7ee3..87e8fefef 100644 --- a/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v2/CMakeLists.txt +++ b/bundles/pubsub/pubsub_protocol/pubsub_protocol_wire_v2/CMakeLists.txt @@ -26,7 +26,7 @@ if (PUBSUB_WIRE_PROTOCOL_V2) add_celix_bundle(celix_pubsub_protocol_wire_v2 BUNDLE_SYMBOLICNAME "apache_celix_pubsub_protocol_wire_v2" - VERSION "1.0.0" + VERSION "1.0.1" GROUP "Celix/PubSub" SOURCES src/ps_wire_v2_protocol_activator.c diff --git a/bundles/pubsub/pubsub_serializer_avrobin/CMakeLists.txt b/bundles/pubsub/pubsub_serializer_avrobin/CMakeLists.txt index e287bf7cf..c6b5402d5 100644 --- a/bundles/pubsub/pubsub_serializer_avrobin/CMakeLists.txt +++ b/bundles/pubsub/pubsub_serializer_avrobin/CMakeLists.txt @@ -21,7 +21,7 @@ if (PUBSUB_AVROBIN_SERIALIZER) add_celix_bundle(celix_pubsub_serializer_avrobin BUNDLE_SYMBOLICNAME "apache_celix_pubsub_serializer_avrobin" - VERSION "1.1.0" + VERSION "1.1.1" GROUP "Celix/PubSub" SOURCES src/ps_avrobin_serializer_activator.c diff --git a/bundles/pubsub/pubsub_serializer_json/CMakeLists.txt b/bundles/pubsub/pubsub_serializer_json/CMakeLists.txt index ff039a9cd..9b55c5be6 100644 --- a/bundles/pubsub/pubsub_serializer_json/CMakeLists.txt +++ b/bundles/pubsub/pubsub_serializer_json/CMakeLists.txt @@ -22,7 +22,7 @@ if (PUBSUB_JSON_SERIALIZER) add_celix_bundle(celix_pubsub_serializer_json BUNDLE_SYMBOLICNAME "apache_celix_pubsub_serializer_json" - VERSION "1.1.0" + VERSION "1.1.1" GROUP "Celix/PubSub" SOURCES src/ps_json_serializer_activator.c diff --git a/bundles/pubsub/pubsub_topology_manager/CMakeLists.txt b/bundles/pubsub/pubsub_topology_manager/CMakeLists.txt index 429c638e5..6ac4efdb3 100644 --- a/bundles/pubsub/pubsub_topology_manager/CMakeLists.txt +++ b/bundles/pubsub/pubsub_topology_manager/CMakeLists.txt @@ -19,7 +19,7 @@ find_package(libuuid REQUIRED) add_celix_bundle(celix_pubsub_topology_manager BUNDLE_SYMBOLICNAME "apache_celix_pubsub_topology_manager" - VERSION "1.1.0" + VERSION "1.1.1" GROUP "Celix/PubSub" SOURCES src/pstm_activator.c diff --git a/bundles/shell/shell_wui/CMakeLists.txt b/bundles/shell/shell_wui/CMakeLists.txt index 2f20bda69..e74d657ae 100644 --- a/bundles/shell/shell_wui/CMakeLists.txt +++ b/bundles/shell/shell_wui/CMakeLists.txt @@ -19,7 +19,7 @@ if (SHELL_WUI) add_celix_bundle(shell_wui SYMBOLIC_NAME "apache_celix_shell_wui" - VERSION "1.0.0" + VERSION "1.1.0" NAME "Apache Celix Shell WUI" FILENAME celix_shell_wui GROUP "Celix/Shell" diff --git a/cmake/celix_project/ApacheRat.cmake b/cmake/celix_project/ApacheRat.cmake index a6c8dbf82..c18f0dd32 100644 --- a/cmake/celix_project/ApacheRat.cmake +++ b/cmake/celix_project/ApacheRat.cmake @@ -23,7 +23,7 @@ if (ENABLE_APACHE_RAT) find_package(Java COMPONENTS Runtime) if(Java_Runtime_FOUND) include(FetchContent) - set(APACHE_RAT_URL "https://dlcdn.apache.org//creadur/apache-rat-0.14/apache-rat-0.14-bin.tar.gz") + set(APACHE_RAT_URL "http://archive.apache.org/dist/creadur/apache-rat-0.14/apache-rat-0.14-bin.tar.gz") set(APACHE_RAT_HASH "17119289839dc573dd29039ca09bd86f729f1108308f6681292125418fd7bceeaf7d1a40b83eb01daf7d3dd66fbcc0a68d5431741314e748f7b878e8967459e9") #matching hash for the apache rat download FetchContent_Declare(download_apache_rat diff --git a/conanfile.py b/conanfile.py index f28dae631..dc145bbde 100644 --- a/conanfile.py +++ b/conanfile.py @@ -28,7 +28,7 @@ class CelixConan(ConanFile): name = "celix" - version = "2.3.0" + version = "2.4.0" homepage = "https://celix.apache.org" url = "https://github.com/apache/celix.git" topics = ("conan", "celix", "osgi", "embedded", "linux", "C/C++") diff --git a/libs/dfi/CMakeLists.txt b/libs/dfi/CMakeLists.txt index b43a1d213..cf5019e16 100644 --- a/libs/dfi/CMakeLists.txt +++ b/libs/dfi/CMakeLists.txt @@ -43,7 +43,7 @@ if (CELIX_DFI) target_link_libraries(dfi PUBLIC jansson::jansson Celix::utils)##The public header file(dyn_interface.h) Celix::utils(celix_version.h) set_target_properties(dfi PROPERTIES C_VISIBILITY_PRESET hidden - VERSION "1.1.0" + VERSION "1.3.0" "SOVERSION" 1 OUTPUT_NAME "celix_dfi") diff --git a/libs/etcdlib/CMakeLists.txt b/libs/etcdlib/CMakeLists.txt index 16a30a6e9..d165caad7 100644 --- a/libs/etcdlib/CMakeLists.txt +++ b/libs/etcdlib/CMakeLists.txt @@ -23,7 +23,7 @@ if (NOT COMMAND celix_subproject) cmake_minimum_required (VERSION 3.18) project(ETCDLIB - VERSION 1.1.0 + VERSION 1.2.0 LANGUAGES C CXX ) @@ -51,7 +51,7 @@ if (CELIX_ETCDLIB OR ETCDLIB_STANDALONE) target_include_directories(etcdlib PRIVATE src) set_target_properties(etcdlib PROPERTIES - VERSION 1.0.0 + VERSION 1.2.0 SOVERSION 1 C_VISIBILITY_PRESET hidden ) diff --git a/libs/promises/CMakeLists.txt b/libs/promises/CMakeLists.txt index 1dd4e6869..c8de8bf09 100644 --- a/libs/promises/CMakeLists.txt +++ b/libs/promises/CMakeLists.txt @@ -22,7 +22,7 @@ if (NOT COMMAND celix_subproject) cmake_minimum_required (VERSION 3.11) project(celix_Promises - VERSION 1.0.0 + VERSION 1.1.0 LANGUAGES CXX ) diff --git a/rat-excludes.txt b/rat-excludes.txt index 008ed502a..ab72b0180 100644 --- a/rat-excludes.txt +++ b/rat-excludes.txt @@ -15,16 +15,12 @@ Files having a separate license should be ignored. For Celix these include - - Mongoose - - Civetweb - Doxygen scripts for CMake (Doxyfile.in, UseDoxygen.cmake) - memstream Also there are several files which can't have a license statement. - *.in Input files used by CMake to generate files for deployment, should not contain comments. - - .project Eclipse project file, not in the release but generated by CMake. - Excluded to prevent false positives when using RAT on a dev tree. - Template files for code generation. Doxyfile.in @@ -53,16 +49,17 @@ fmemopen.h open_memstream.c open_memstream.h -# thpool and memstream documentation files -./utils/public/include/memstream/README.md +# TLSF - Two Level Segregated Fit memory allocator +tlsf.c +tlsf.h -.travis.yml +#Rust Cargo lock files (generated by cargo) +Cargo.lock (.)*\.descriptor scope.*\.json - #MIT - C Thread Pool thpool.c thpool.h