Skip to content

Commit

Permalink
change to camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzhg committed Mar 30, 2022
1 parent 9e61cae commit a9c2d35
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/brpc/policy/baidu_rpc_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ inline void PackRpcHeader(char* rpc_header, uint32_t meta_size, int payload_size

static void SerializeRpcHeaderAndMeta(
butil::IOBuf* out, const RpcMeta& meta, int payload_size) {
const uint32_t meta_size = get_protobuf_byte_size(meta);
const uint32_t meta_size = GetProtobufByteSize(meta);
if (meta_size <= 244) { // most common cases
char header_and_meta[12 + meta_size];
PackRpcHeader(header_and_meta, meta_size, payload_size);
Expand Down
2 changes: 1 addition & 1 deletion src/brpc/policy/hulu_pbrpc_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ inline void PackHuluHeader(char* hulu_header, uint32_t meta_size, int body_size)
template <typename Meta>
static void SerializeHuluHeaderAndMeta(
butil::IOBuf* out, const Meta& meta, int payload_size) {
const uint32_t meta_size = get_protobuf_byte_size(meta);
const uint32_t meta_size = GetProtobufByteSize(meta);
if (meta_size <= 244) { // most common cases
char header_and_meta[12 + meta_size];
PackHuluHeader(header_and_meta, meta_size, payload_size);
Expand Down
2 changes: 1 addition & 1 deletion src/brpc/policy/public_pbrpc_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ void PackPublicPbrpcRequest(butil::IOBuf* buf,
nshead.magic_num = NSHEAD_MAGICNUM;
snprintf(nshead.provider, sizeof(nshead.provider), "%s", PROVIDER);
nshead.version = NSHEAD_VERSION;
nshead.body_len = get_protobuf_byte_size(pbreq);
nshead.body_len = GetProtobufByteSize(pbreq);
buf->append(&nshead, sizeof(nshead));

Span* span = ControllerPrivateAccessor(controller).span();
Expand Down
2 changes: 1 addition & 1 deletion src/brpc/policy/sofa_pbrpc_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ inline void PackSofaHeader(char* sofa_header, uint32_t meta_size, int body_size)

static void SerializeSofaHeaderAndMeta(
butil::IOBuf* out, const SofaRpcMeta& meta, int payload_size) {
const uint32_t meta_size = get_protobuf_byte_size(meta);
const uint32_t meta_size = GetProtobufByteSize(meta);
if (meta_size <= 232) { // most common cases
char header_and_meta[24 + meta_size];
PackSofaHeader(header_and_meta, meta_size, payload_size);
Expand Down
2 changes: 1 addition & 1 deletion src/brpc/policy/streaming_rpc_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void PackStreamMessage(butil::IOBuf* out,
const StreamFrameMeta &fm,
const butil::IOBuf *data) {
const uint32_t data_length = data ? data->length() : 0;
const uint32_t meta_length = get_protobuf_byte_size(fm);
const uint32_t meta_length = GetProtobufByteSize(fm);
char head[12];
uint32_t* dummy = (uint32_t*)head; // suppresses strict-alias warning
*(uint32_t*)dummy = *(const uint32_t*)"STRM";
Expand Down
2 changes: 1 addition & 1 deletion src/brpc/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ DECLARE_bool(log_error_text);
// different versions of protobuf have different methods
// use template to avoid include `google/protobuf/message.h`
template<typename T>
inline uint32_t get_protobuf_byte_size(const T& message) {
inline uint32_t GetProtobufByteSize(const T& message) {
#if GOOGLE_PROTOBUF_VERSION >= 3010000
return message.ByteSizeLong();
#else
Expand Down

0 comments on commit a9c2d35

Please sign in to comment.