Files
doris/be/src/vec/runtime/ipv4_value.h
Pxl 43c646363e [Bug](runtime-filter) support ip rf and use exception to replace dche… (#41531)
…ck when PrimitiveType to PColumnType (#39985)

use exception to replace dcheck when PrimitiveType to PColumnType
```cpp
*** SIGABRT unknown detail explain (@0x11d3f) received by PID 73023 (TID 74292 OR 0x7fd758225640) from PID 73023; stack trace: ***
 0# doris::signal::(anonymous namespace)::FailureSignalHandler(int, siginfo_t*, void*) at /home/zcp/repo_center/doris_master/doris/be/src/common/signal_handler.h:421
 1# 0x00007FDDBE6B9520 in /lib/x86_64-linux-gnu/libc.so.6
 2# pthread_kill at ./nptl/pthread_kill.c:89
 3# raise at ../sysdeps/posix/raise.c:27
 4# abort at ./stdlib/abort.c:81
 5# 0x000056123F81A94D in /root/output/be/lib/doris_be
 6# 0x000056123F80CF8A in /root/output/be/lib/doris_be
 7# google::LogMessage::SendToLog() in /root/output/be/lib/doris_be
 8# google::LogMessage::Flush() in /root/output/be/lib/doris_be
 9# google::LogMessageFatal::~LogMessageFatal() in /root/output/be/lib/doris_be
10# doris::to_proto(doris::PrimitiveType) at /home/zcp/repo_center/doris_master/doris/be/src/exprs/runtime_filter.cpp:114
11# doris::IRuntimeFilter::push_to_remote(doris::TNetworkAddress const*) at /home/zcp/repo_center/doris_master/doris/be/src/exprs/runtime_filter.cpp:1143
12# doris::IRuntimeFilter::publish(bool)::$_0::operator()(doris::IRuntimeFilter*) const at /home/zcp/repo_center/doris_master/doris/be/src/exprs/runtime_filter.cpp:959
13# doris::IRuntimeFilter::publish(bool)::$_2::operator()() const at /home/zcp/repo_center/doris_master/doris/be/src/exprs/runtime_filter.cpp:983
14# doris::IRuntimeFilter::publish(bool) at /home/zcp/repo_center/doris_master/doris/be/src/exprs/runtime_filter.cpp:997
```

## Proposed changes
pick from #39985
2024-12-30 20:56:11 +08:00

104 lines
3.1 KiB
C++

// 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.
#pragma once
#include <algorithm>
#include <regex>
#include <sstream>
#include <string>
#include "util/string_parser.hpp"
#include "vec/common/format_ip.h"
#include "vec/common/string_ref.h"
namespace doris {
class IPv4Value {
public:
IPv4Value() = default;
explicit IPv4Value(IPv4 ipv4) { _value = ipv4; }
const IPv4& value() const { return _value; }
IPv4& value() { return _value; }
void set_value(IPv4 ipv4) { _value = ipv4; }
bool from_string(const std::string& ipv4_str) { return from_string(_value, ipv4_str); }
std::string to_string() const { return to_string(_value); }
static bool from_string(IPv4& value, const char* ipv4_str, size_t len) {
if (len == 0) {
return false;
}
int64_t parse_value = 0;
size_t begin = 0;
size_t end = len - 1;
while (begin < len && std::isspace(ipv4_str[begin])) {
++begin;
}
while (end > begin && std::isspace(ipv4_str[end])) {
--end;
}
if (!vectorized::parse_ipv4_whole(ipv4_str + begin, ipv4_str + end + 1,
reinterpret_cast<unsigned char*>(&parse_value))) {
return false;
}
value = static_cast<IPv4>(parse_value);
return true;
}
static bool from_string(IPv4& value, const std::string& ipv4_str) {
return from_string(value, ipv4_str.c_str(), ipv4_str.size());
}
static std::string to_string(IPv4 value) {
char buf[IPV4_MAX_TEXT_LENGTH + 1];
char* start = buf;
char* end = buf;
const auto* src = reinterpret_cast<const unsigned char*>(&value);
vectorized::format_ipv4(src, end);
size_t len = end - start;
return {buf, len};
}
static bool is_valid_string(const char* ipv4_str, size_t len) {
if (len == 0) {
return false;
}
int64_t parse_value = 0;
size_t begin = 0;
size_t end = len - 1;
while (begin < len && std::isspace(ipv4_str[begin])) {
++begin;
}
while (end > begin && std::isspace(ipv4_str[end])) {
--end;
}
return vectorized::parse_ipv4_whole(ipv4_str + begin, ipv4_str + end + 1,
reinterpret_cast<unsigned char*>(&parse_value));
}
private:
IPv4 _value;
};
} // namespace doris