lift limits on handle allocation and reuse (#95)
The old entity handle mechanism suffered from a number of problems, the most terrible one being that it would only ever allocate 1000 handles (not even have at most 1000 in use at the same time). Secondarily, it was protected by a single mutex that actually does show up as a limiting factor in, say, a polling-based throughput test with small messages. Thirdly, it tried to provide for various use cases that don't exist in practice but add complexity and overhead. This commit totally rewrites the mechanism, by replacing the old array with a hash table and allowing a near-arbitrary number of handles as well as reuse of handles. It also removes the entity "kind" bits in the most significant bits of the handles, because they only resulted in incorrect checking of argument validity. All that is taken out, but there is still more cleaning up to be done. It furthermore removes an indirection in the handle-to-entity lookup by embedding the "dds_handle_link" structure in the entity. Handle allocation is randomized to avoid the have a high probability of quickly finding an available handle (the total number of handles is limited to a number much smaller than the domain from which they are allocated). The likelihood of handle reuse is still dependent on the number of allocated handles -- the fewer handles there are, the longer the expected time to reuse. Non-randomized handles would give a few guarantees more, though. It moreover moves the code from the "util" to the "core/ddsc" component, because it really is only used for entities, and besides the new implementation relies on the deferred freeing (a.k.a. garbage collection mechanism) implemented in the core. The actual handle management has two variants, selectable with a macro: the preferred embodiment uses a concurrent hash table, the actually used one performs all operations inside a single mutex and uses a non-concurrent version of the hash table. The reason the less-predeferred embodiment is used is that the concurrent version requires the freeing of entity objects to be deferred (much like the GUID-to-entity hash tables in DDSI function, or indeed the key value to instance handle mapping). That is a fair bit of work, and the non-concurrent version is a reasonable intermediate step. Signed-off-by: Erik Boasson <eb@ilities.com>
This commit is contained in:
parent
069688bb76
commit
7d281df24a
55 changed files with 871 additions and 1681 deletions
|
@ -1,146 +0,0 @@
|
|||
#
|
||||
# Copyright(c) 2006 to 2018 ADLINK Technology Limited and others
|
||||
#
|
||||
# This program and the accompanying materials are made available under the
|
||||
# terms of the Eclipse Public License v. 2.0 which is available at
|
||||
# http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
|
||||
# v. 1.0 which is available at
|
||||
# http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
#
|
||||
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
|
||||
#
|
||||
|
||||
# To uniquely identify the origin of every error all source files must be
|
||||
# assigned a pseudo unique identifier (or module). Because only 32 bits are
|
||||
# available in the return code (for now) to store the sign bit (1), return
|
||||
# code (4), line number (8) and file identifier, using a deterministic hash
|
||||
# will likely lead to collisions. To work around this issue a static map is
|
||||
# applied, which also ensures that file identifiers are persisted accross
|
||||
# versions/branches. Of course one could choose to specify the module manually
|
||||
# with every return, but that is tedious and error prone.
|
||||
|
||||
if(FILE_IDS_INCLUDED)
|
||||
return()
|
||||
endif()
|
||||
set(FILE_IDS_INCLUDED true)
|
||||
|
||||
|
||||
# Verify syntax for all .fileids files and ensure no source file id is used
|
||||
# more than once.
|
||||
file(GLOB_RECURSE fils__ LIST_DIRECTORIES false "${CMAKE_SOURCE_DIR}/.fileids")
|
||||
|
||||
set(ids__)
|
||||
foreach(fil__ ${fils__})
|
||||
file(READ "${fil__}" lines__)
|
||||
string(REGEX REPLACE "\n" ";" lines__ ${lines__})
|
||||
foreach(line__ ${lines__})
|
||||
if("${line__}" MATCHES "^[ \t]*([0-9]+)[ \t]+.*$")
|
||||
set(id__ "${CMAKE_MATCH_1}")
|
||||
if(${id__} IN_LIST ids__)
|
||||
set(dup__ true)
|
||||
message(STATUS "Id ${id__} used more than once")
|
||||
else()
|
||||
list(APPEND ids__ ${id__})
|
||||
endif()
|
||||
elseif(NOT "${line__}" MATCHES "^[ \t]*#")
|
||||
message(FATAL_ERROR "Syntax error in ${fil__}")
|
||||
endif()
|
||||
endforeach()
|
||||
endforeach()
|
||||
|
||||
if(dup__)
|
||||
message(FATAL_ERROR "Duplicate ids")
|
||||
endif()
|
||||
|
||||
function(JOIN lst glue var)
|
||||
string(REPLACE ";" "${glue}" tmp "${${lst}}")
|
||||
set(${var} "${tmp}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(FILE_ID src var) # private
|
||||
# .fileids files may reside in subdirectories to keep them together with the
|
||||
# files they assign an identifier to, much like .gitignore files
|
||||
set(dir "${CMAKE_SOURCE_DIR}")
|
||||
set(parts "${src}")
|
||||
string(REGEX REPLACE "[/\\]+" ";" parts "${parts}")
|
||||
while(parts)
|
||||
set(map "${dir}/.fileids")
|
||||
join(parts "/" fil)
|
||||
list(APPEND maps "${map}^${fil}")
|
||||
list(GET parts 0 part)
|
||||
list(REMOVE_AT parts 0)
|
||||
set(dir "${dir}/${part}")
|
||||
endwhile()
|
||||
|
||||
set(id)
|
||||
foreach(entry ${maps})
|
||||
string(REPLACE "^" ";" entry "${entry}")
|
||||
list(GET entry 0 map)
|
||||
list(GET entry 1 fil)
|
||||
if(EXISTS "${map}")
|
||||
file(READ "${map}" contents)
|
||||
string(REGEX REPLACE "\n" ";" lines "${contents}")
|
||||
|
||||
foreach(line ${lines})
|
||||
if("${line}" MATCHES "^[ \t]*([0-9]+)[ \t]+(.*)$")
|
||||
set(id "${CMAKE_MATCH_1}")
|
||||
string(STRIP "${CMAKE_MATCH_2}" expr)
|
||||
if("${fil}" STREQUAL "${expr}")
|
||||
set(${var} ${id} PARENT_SCOPE)
|
||||
return()
|
||||
endif()
|
||||
elseif(NOT "${line}" MATCHES "^[ \t]*#")
|
||||
message(FATAL_ERROR "Syntax error in ${map}")
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
endforeach()
|
||||
endfunction()
|
||||
|
||||
# Source file properties are visible only to targets added in the same
|
||||
# directory (CMakeLists.txt).
|
||||
# https://cmake.org/cmake/help/latest/command/set_source_files_properties.html
|
||||
function(SET_TARGET_FILE_IDS tgt)
|
||||
get_target_property(external ${tgt} IMPORTED)
|
||||
get_target_property(alias ${tgt} ALIASED_TARGET)
|
||||
string(LENGTH "${CMAKE_SOURCE_DIR}" len)
|
||||
math(EXPR len "${len} + 1") # strip slash following source dir too
|
||||
|
||||
if((NOT external) AND (NOT alias))
|
||||
get_target_property(srcs ${tgt} SOURCES)
|
||||
get_target_property(src_dir ${tgt} SOURCE_DIR)
|
||||
foreach(src ${srcs})
|
||||
set(id)
|
||||
if(IS_ABSOLUTE "${src}")
|
||||
set(fil "${src}")
|
||||
else()
|
||||
set(fil "${src_dir}/${src}")
|
||||
endif()
|
||||
|
||||
get_filename_component(fil "${fil}" ABSOLUTE)
|
||||
|
||||
string(FIND "${fil}" "${CMAKE_SOURCE_DIR}" pos)
|
||||
if(${pos} EQUAL 0)
|
||||
string(SUBSTRING "${fil}" ${len} -1 rel)
|
||||
file_id("${rel}" id)
|
||||
endif()
|
||||
|
||||
if(id)
|
||||
if(("${source_file_id_${id}}" STREQUAL "") OR
|
||||
("${source_file_id_${id}}" STREQUAL "${rel}"))
|
||||
set("source_file_id_${id}" "${rel}" CACHE INTERNAL "")
|
||||
set_source_files_properties(
|
||||
"${src}" PROPERTIES COMPILE_DEFINITIONS __FILE_ID__=${id})
|
||||
else()
|
||||
message(FATAL_ERROR "Same file id for ${rel} and ${source_file_id_${id}}")
|
||||
endif()
|
||||
else()
|
||||
get_filename_component(ext "${rel}" EXT)
|
||||
if (NOT "${ext}" MATCHES "\.h*")
|
||||
message(FATAL_ERROR "No source file id for ${rel}")
|
||||
endif()
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
endfunction()
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue