Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
a8f27723
Commit
a8f27723
authored
Jun 03, 2020
by
liuminghang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
find commandhandler by string_piece
parent
48e0402c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
9 deletions
+14
-9
redis_protocol.cpp
src/brpc/policy/redis_protocol.cpp
+1
-1
redis.cpp
src/brpc/redis.cpp
+8
-6
redis.h
src/brpc/redis.h
+5
-2
No files found.
src/brpc/policy/redis_protocol.cpp
View file @
a8f27723
...
...
@@ -90,7 +90,7 @@ int ConsumeCommand(RedisConnContext* ctx,
return
-
1
;
}
}
else
{
RedisCommandHandler
*
ch
=
ctx
->
redis_service
->
FindCommandHandler
(
commands
[
0
]
.
as_string
()
);
RedisCommandHandler
*
ch
=
ctx
->
redis_service
->
FindCommandHandler
(
commands
[
0
]);
if
(
!
ch
)
{
char
buf
[
64
];
snprintf
(
buf
,
sizeof
(
buf
),
"ERR unknown command `%s`"
,
commands
[
0
].
as_string
().
c_str
());
...
...
src/brpc/redis.cpp
View file @
a8f27723
...
...
@@ -437,19 +437,21 @@ std::ostream& operator<<(std::ostream& os, const RedisResponse& response) {
}
bool
RedisService
::
AddCommandHandler
(
const
std
::
string
&
name
,
RedisCommandHandler
*
handler
)
{
std
::
string
lcname
=
StringToLowerASCII
(
name
);
auto
it
=
_command_map
.
find
(
lcnam
e
);
butil
::
StringPiece
name_piece
(
name
);
auto
it
=
_command_map
.
find
(
name_piec
e
);
if
(
it
!=
_command_map
.
end
())
{
LOG
(
ERROR
)
<<
"redis command name="
<<
name
<<
" exist"
;
return
false
;
}
_command_map
[
lcname
]
=
handler
;
_all_commands
.
push_back
(
name
);
name_piece
=
_all_commands
.
back
();
_command_map
[
name_piece
]
=
handler
;
return
true
;
}
RedisCommandHandler
*
RedisService
::
FindCommandHandler
(
const
std
::
string
&
name
)
const
{
std
::
string
lcname
=
StringToLowerASCII
(
name
);
auto
it
=
_command_map
.
find
(
lcname
);
RedisCommandHandler
*
RedisService
::
FindCommandHandler
(
const
butil
::
StringPiece
&
name
)
const
{
auto
it
=
_command_map
.
find
(
name
);
if
(
it
!=
_command_map
.
end
())
{
return
it
->
second
;
}
...
...
src/brpc/redis.h
View file @
a8f27723
...
...
@@ -22,6 +22,7 @@
#include <google/protobuf/message.h>
#include <unordered_map>
#include <memory>
#include <list>
#include "butil/iobuf.h"
#include "butil/strings/string_piece.h"
#include "butil/arena.h"
...
...
@@ -224,11 +225,13 @@ public:
bool
AddCommandHandler
(
const
std
::
string
&
name
,
RedisCommandHandler
*
handler
);
// This function should not be touched by user and used by brpc deverloper only.
RedisCommandHandler
*
FindCommandHandler
(
const
std
::
string
&
name
)
const
;
RedisCommandHandler
*
FindCommandHandler
(
const
butil
::
StringPiece
&
name
)
const
;
private
:
typedef
std
::
unordered_map
<
std
::
string
,
RedisCommandHandler
*>
CommandMap
;
typedef
BUTIL_HASH_NAMESPACE
::
hash
<
butil
::
StringPiece
>
StringPieceHasher
;
typedef
std
::
unordered_map
<
butil
::
StringPiece
,
RedisCommandHandler
*
,
StringPieceHasher
>
CommandMap
;
CommandMap
_command_map
;
std
::
list
<
std
::
string
>
_all_commands
;
};
enum
RedisCommandHandlerResult
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment