Skip to content

Commit

Permalink
Refactoring and implementation of multi threaded stream parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Werni2A committed Dec 27, 2023
1 parent fd6fc26 commit 82a621d
Show file tree
Hide file tree
Showing 184 changed files with 6,036 additions and 5,568 deletions.
11 changes: 8 additions & 3 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ find_path(COMPOUNDFILEREADER_INCLUDE_DIRS "compoundfilereader.h")
find_package(tinyxml2 CONFIG REQUIRED)

set(SOURCES
${LIB_SRC_DIR}/CommonBase.cpp
${LIB_SRC_DIR}/Container.cpp
${LIB_SRC_DIR}/ContainerExtractor.cpp
${LIB_SRC_DIR}/DataStream.cpp
# ${LIB_SRC_DIR}/Misc.cpp
${LIB_SRC_DIR}/GenericParser.cpp
${LIB_SRC_DIR}/PageSettings.cpp
${LIB_SRC_DIR}/Primitives/Point.cpp
${LIB_SRC_DIR}/Primitives/PrimArc.cpp
Expand All @@ -22,6 +21,7 @@ set(SOURCES
${LIB_SRC_DIR}/Primitives/PrimPolyline.cpp
${LIB_SRC_DIR}/Primitives/PrimRect.cpp
${LIB_SRC_DIR}/Primitives/PrimSymbolVector.cpp
${LIB_SRC_DIR}/RecordFactory.cpp
${LIB_SRC_DIR}/StreamFactory.cpp
${LIB_SRC_DIR}/Streams/StreamAdminData.cpp
${LIB_SRC_DIR}/Streams/StreamCache.cpp
Expand Down Expand Up @@ -100,6 +100,7 @@ set(SOURCES

set(HEADERS
${LIB_INCLUDE_DIR}/Container.hpp
${LIB_INCLUDE_DIR}/ContainerContext.hpp
${LIB_INCLUDE_DIR}/ContainerExtractor.hpp
${LIB_INCLUDE_DIR}/DataStream.hpp
${LIB_INCLUDE_DIR}/Enums/Color.hpp
Expand All @@ -113,8 +114,8 @@ set(HEADERS
${LIB_INCLUDE_DIR}/Enums/Structure.hpp
${LIB_INCLUDE_DIR}/FutureData.hpp
${LIB_INCLUDE_DIR}/General.hpp
${LIB_INCLUDE_DIR}/GenericParser.hpp
${LIB_INCLUDE_DIR}/PageSettings.hpp
${LIB_INCLUDE_DIR}/ParserContext.hpp
${LIB_INCLUDE_DIR}/Primitives/Point.hpp
${LIB_INCLUDE_DIR}/Primitives/PrimArc.hpp
${LIB_INCLUDE_DIR}/Primitives/PrimBezier.hpp
Expand All @@ -125,6 +126,10 @@ set(HEADERS
${LIB_INCLUDE_DIR}/Primitives/PrimPolygon.hpp
${LIB_INCLUDE_DIR}/Primitives/PrimPolyline.hpp
${LIB_INCLUDE_DIR}/Primitives/PrimRect.hpp
${LIB_INCLUDE_DIR}/Record.hpp
${LIB_INCLUDE_DIR}/RecordFactory.hpp
${LIB_INCLUDE_DIR}/Stream.hpp
${LIB_INCLUDE_DIR}/StreamContext.hpp
${LIB_INCLUDE_DIR}/StreamFactory.hpp
${LIB_INCLUDE_DIR}/Streams/StreamAdminData.hpp
${LIB_INCLUDE_DIR}/Streams/StreamCache.hpp
Expand Down
Loading

0 comments on commit 82a621d

Please sign in to comment.