Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to the latest commit of CLP core. #66

Merged
merged 3 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,25 @@
from typing import List, Optional, Tuple

cpp_src_root: str = "src"
clp_src_root: str = f"{cpp_src_root}/clp/components/core/src/clp"
clp_core_src_root: str = f"{cpp_src_root}/clp/components/core/src"
clp_src_root: str = f"{clp_core_src_root}/clp"
clp_submodule_root: str = f"{cpp_src_root}/clp/components/core/submodules"
clp_ffi_py_src_root: str = f"{cpp_src_root}/clp_ffi_py"

ir_native: Extension = Extension(
name="clp_ffi_py.ir.native",
language="c++",
include_dirs=[
cpp_src_root,
clp_core_src_root,
clp_src_root,
clp_submodule_root,
cpp_src_root,
],
sources=[
f"{clp_src_root}/BufferReader.cpp",
f"{clp_src_root}/ffi/ir_stream/decoding_methods.cpp",
f"{clp_src_root}/ffi/ir_stream/encoding_methods.cpp",
f"{clp_src_root}/ffi/ir_stream/utils.cpp",
f"{clp_src_root}/ffi/encoding_methods.cpp",
f"{clp_src_root}/ir/parsing.cpp",
f"{clp_src_root}/ReaderInterface.cpp",
Expand Down
2 changes: 1 addition & 1 deletion src/clp
Submodule clp updated 387 files
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ExceptionFFI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <string>

#include <clp/components/core/src/clp/TraceableException.hpp>
#include <clp/TraceableException.hpp>

namespace clp_ffi_py {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/Py_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <clp_ffi_py/Python.hpp> // Must always be included before any other header files

#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/ffi/encoding_methods.hpp>

namespace clp_ffi_py {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ir/native/LogEvent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <optional>

#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/ffi/encoding_methods.hpp>

namespace clp_ffi_py::ir::native {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ir/native/Metadata.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Metadata.hpp"

#include <clp/components/core/src/clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/ffi/ir_stream/protocol_constants.hpp>

#include <clp_ffi_py/ExceptionFFI.hpp>
#include <clp_ffi_py/ir/native/error_messages.hpp>
Expand Down
4 changes: 2 additions & 2 deletions src/clp_ffi_py/ir/native/Metadata.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <utility>

#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/components/core/submodules/json/single_include/nlohmann/json.hpp>
#include <clp/ffi/encoding_methods.hpp>
#include <json/single_include/nlohmann/json.hpp>

namespace clp_ffi_py::ir::native {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ir/native/PyDecoderBuffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <span>

#include <clp/components/core/src/clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/ffi/ir_stream/decoding_methods.hpp>

#include <clp_ffi_py/ir/native/PyMetadata.hpp>
#include <clp_ffi_py/PyObjectUtils.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ir/native/PyQuery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "PyQuery.hpp"

#include <clp/components/core/src/clp/string_utils/string_utils.hpp>
#include <clp/string_utils/string_utils.hpp>

#include <clp_ffi_py/error_messages.hpp>
#include <clp_ffi_py/ir/native/LogEvent.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/ir/native/Query.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <algorithm>
#include <string_view>

#include <clp/components/core/src/clp/string_utils/string_utils.hpp>
#include <clp/string_utils/string_utils.hpp>

namespace clp_ffi_py::ir::native {
auto Query::matches_wildcard_queries(std::string_view log_message) const -> bool {
Expand Down
4 changes: 2 additions & 2 deletions src/clp_ffi_py/ir/native/Query.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include <string_view>
#include <vector>

#include <clp/components/core/src/clp/ErrorCode.hpp>
#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/ErrorCode.hpp>
#include <clp/ffi/encoding_methods.hpp>

#include <clp_ffi_py/ExceptionFFI.hpp>
#include <clp_ffi_py/ir/native/LogEvent.hpp>
Expand Down
104 changes: 77 additions & 27 deletions src/clp_ffi_py/ir/native/decoding_methods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

#include "decoding_methods.hpp"

#include <optional>
#include <span>

#include <clp/components/core/src/clp/BufferReader.hpp>
#include <clp/components/core/src/clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/components/core/src/clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/components/core/src/clp/type_utils.hpp>
#include <clp/BufferReader.hpp>
#include <clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/type_utils.hpp>
#include <json/single_include/nlohmann/json.hpp>

#include <clp_ffi_py/error_messages.hpp>
Expand All @@ -21,6 +22,10 @@
#include <clp_ffi_py/utils.hpp>

namespace clp_ffi_py::ir::native {
using clp::ffi::ir_stream::encoded_tag_t;
using clp::ffi::ir_stream::IRErrorCode;
using clp::ffi::ir_stream::IRProtocolErrorCode;

namespace {
/**
* This template defines the function signature of a termination handler
Expand All @@ -42,6 +47,35 @@ concept TerminateHandlerSignature = requires(TerminateHandler handler) {
} -> std::same_as<bool>;
};

/**
* Handles the error when IRErrorCode::IRErrorCode_Incomplete_IR is seen. The handler will first
* try to load more data into `decoder_buffer`. If it fails, `allow_incomplete_stream` will be used
* to determine whether to swallow the incomplete IR exception.
* @param decoder_buffer
* @param allow_incomplete_stream A flag to indicate whether the incomplete stream error should be
* ignored. If it is set to true, incomplete stream error.
* @param std::nullopt if more data is loaded.
* @param PyNone if the IR stream is incomplete and allowed.
* @param nullptr if the IR stream is incomplete not allowed, with the relevant Python exceptions
* and error set.
*/
[[nodiscard]] auto handle_incomplete_ir_error(
PyDecoderBuffer* decoder_buffer,
bool allow_incomplete_stream
) -> std::optional<PyObject*> {
if (decoder_buffer->try_read()) {
return std::nullopt;
}
if (allow_incomplete_stream
&& static_cast<bool>(PyErr_ExceptionMatches(PyDecoderBuffer::get_py_incomplete_stream_error(
))))
{
PyErr_Clear();
Py_RETURN_NONE;
}
return nullptr;
}

/**
* Decodes the next log event from the CLP IR buffer `decoder_buffer` until
* terminate handler returns true.
Expand All @@ -67,36 +101,52 @@ auto generic_decode_log_events(
auto timestamp{decoder_buffer->get_ref_timestamp()};
size_t current_log_event_idx{0};
PyObject* return_value{nullptr};
clp::ffi::ir_stream::encoded_tag_t tag{};

while (true) {
auto const unconsumed_bytes{decoder_buffer->get_unconsumed_bytes()};
clp::BufferReader ir_buffer{
clp::size_checked_pointer_cast<char const>(unconsumed_bytes.data()),
unconsumed_bytes.size()
};

if (auto const err{clp::ffi::ir_stream::deserialize_tag(ir_buffer, tag)};
IRErrorCode::IRErrorCode_Success != err)
{
if (IRErrorCode::IRErrorCode_Incomplete_IR != err) {
PyErr_Format(PyExc_RuntimeError, cDecoderErrorCodeFormatStr, err);
return nullptr;
}
if (auto const ret_val{
handle_incomplete_ir_error(decoder_buffer, allow_incomplete_stream)
};
ret_val.has_value())
{
return ret_val.value();
}
continue;
}
if (clp::ffi::ir_stream::cProtocol::Eof == tag) {
Py_RETURN_NONE;
}

auto const err{clp::ffi::ir_stream::four_byte_encoding::deserialize_log_event(
ir_buffer,
tag,
decoded_message,
timestamp_delta
)};
if (clp::ffi::ir_stream::IRErrorCode_Incomplete_IR == err) {
if (decoder_buffer->try_read()) {
continue;
}
if (allow_incomplete_stream
&& static_cast<bool>(
PyErr_ExceptionMatches(PyDecoderBuffer::get_py_incomplete_stream_error())
))
if (IRErrorCode::IRErrorCode_Incomplete_IR == err) {
if (auto const ret_val{
handle_incomplete_ir_error(decoder_buffer, allow_incomplete_stream)
};
ret_val.has_value())
{
PyErr_Clear();
Py_RETURN_NONE;
return ret_val.value();
}
return nullptr;
}
if (clp::ffi::ir_stream::IRErrorCode_Eof == err) {
Py_RETURN_NONE;
continue;
}
if (clp::ffi::ir_stream::IRErrorCode_Success != err) {
if (IRErrorCode::IRErrorCode_Success != err) {
PyErr_Format(PyExc_RuntimeError, cDecoderErrorCodeFormatStr, err);
return nullptr;
}
Expand Down Expand Up @@ -143,11 +193,11 @@ auto decode_preamble(PyObject* Py_UNUSED(self), PyObject* py_decoder_buffer) ->
unconsumed_bytes.size()
};
auto const err{clp::ffi::ir_stream::get_encoding_type(ir_buffer, is_four_byte_encoding)};
if (clp::ffi::ir_stream::IRErrorCode_Success == err) {
if (IRErrorCode::IRErrorCode_Success == err) {
ir_buffer_cursor_pos = ir_buffer.get_pos();
break;
}
if (clp::ffi::ir_stream::IRErrorCode_Incomplete_IR != err) {
if (IRErrorCode::IRErrorCode_Incomplete_IR != err) {
PyErr_Format(PyExc_RuntimeError, cDecoderErrorCodeFormatStr, err);
return nullptr;
}
Expand Down Expand Up @@ -176,11 +226,11 @@ auto decode_preamble(PyObject* Py_UNUSED(self), PyObject* py_decoder_buffer) ->
metadata_pos,
metadata_size
)};
if (clp::ffi::ir_stream::IRErrorCode_Success == err) {
if (IRErrorCode::IRErrorCode_Success == err) {
ir_buffer_cursor_pos = ir_buffer.get_pos();
break;
}
if (clp::ffi::ir_stream::IRErrorCode_Incomplete_IR != err) {
if (IRErrorCode ::IRErrorCode_Incomplete_IR != err) {
PyErr_Format(PyExc_RuntimeError, cDecoderErrorCodeFormatStr, err);
return nullptr;
}
Expand All @@ -205,15 +255,15 @@ auto decode_preamble(PyObject* Py_UNUSED(self), PyObject* py_decoder_buffer) ->
static_cast<char const*>(clp::ffi::ir_stream::cProtocol::Metadata::VersionKey)
)};
auto const error_code{clp::ffi::ir_stream::validate_protocol_version(version)};
if (clp::ffi::ir_stream::IRProtocolErrorCode_Supported != error_code) {
if (IRProtocolErrorCode::IRProtocolErrorCode_Supported != error_code) {
switch (error_code) {
case clp::ffi::ir_stream::IRProtocolErrorCode_Invalid:
case IRProtocolErrorCode::IRProtocolErrorCode_Invalid:
PyErr_Format(PyExc_RuntimeError, "Invalid version number: %s", version.c_str());
break;
case clp::ffi::ir_stream::IRProtocolErrorCode_Too_New:
case IRProtocolErrorCode::IRProtocolErrorCode_Too_New:
PyErr_Format(PyExc_RuntimeError, "Version too new: %s", version.c_str());
break;
case clp::ffi::ir_stream::IRProtocolErrorCode_Too_Old:
case IRProtocolErrorCode::IRProtocolErrorCode_Too_Old:
PyErr_Format(PyExc_RuntimeError, "Version too old: %s", version.c_str());
break;
default:
Expand Down
8 changes: 4 additions & 4 deletions src/clp_ffi_py/ir/native/encoding_methods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

#include "encoding_methods.hpp"

#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/components/core/src/clp/ffi/ir_stream/encoding_methods.hpp>
#include <clp/components/core/src/clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/components/core/src/clp/type_utils.hpp>
#include <clp/ffi/encoding_methods.hpp>
#include <clp/ffi/ir_stream/encoding_methods.hpp>
#include <clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/type_utils.hpp>

#include <clp_ffi_py/ir/native/error_messages.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/clp_ffi_py/utils.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <type_traits>

#include <clp/components/core/src/clp/ffi/encoding_methods.hpp>
#include <clp/ffi/encoding_methods.hpp>

namespace clp_ffi_py {
namespace {
Expand Down
Loading