Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
f3280df3
Commit
f3280df3
authored
Sep 18, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
str_util, starts_with & ends_with
parent
eb141b60
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
3 deletions
+72
-3
simple_libevent_server.cpp
jlib/net/simple_libevent_server.cpp
+4
-3
str_util.h
jlib/util/str_util.h
+38
-0
test_strutil.cpp
test/test_strutil/test_strutil.cpp
+30
-0
No files found.
jlib/net/simple_libevent_server.cpp
View file @
f3280df3
...
...
@@ -231,9 +231,10 @@ struct simple_libevent_server::PrivateImpl
static
void
accpet_error_cb
(
evconnlistener
*
listener
,
void
*
context
)
{
auto
server
=
(
simple_libevent_server
*
)
context
;
auto
base
=
evconnlistener_get_base
(
listener
);
int
err
=
EVUTIL_SOCKET_ERROR
();
JLOG_CRTC
(
"
accpet_error_cb:{}:{}"
,
err
,
evutil_socket_error_to_string
(
err
));
JLOG_CRTC
(
"
{} accpet_error_cb:{}:{}"
,
server
->
name_
,
err
,
evutil_socket_error_to_string
(
err
));
event_base_loopexit
(
base
,
nullptr
);
}
...
...
@@ -255,7 +256,7 @@ struct simple_libevent_server::PrivateImpl
event_add
((
event
*
)((
BaseClientPrivateData
*
)
client
->
privateData
)
->
timer
,
&
server
->
impl
->
tv
);
}
}
else
{
JLOG_CRTC
(
"
timercb cannot find client by fd #{}"
,
(
int
)
fd
);
JLOG_CRTC
(
"
{} timercb cannot find client by fd #{}"
,
server
->
name_
,
(
int
)
fd
);
}
}
...
...
@@ -270,7 +271,7 @@ struct simple_libevent_server::PrivateImpl
auto
bev
=
bufferevent_socket_new
(
ctx
->
base
,
fd
,
BEV_OPT_CLOSE_ON_FREE
);
if
(
!
bev
)
{
JLOG_CRTC
(
"
Error constructing bufferevent!"
);
JLOG_CRTC
(
"
{} Error constructing bufferevent!"
,
server
->
name_
);
exit
(
-
1
);
}
...
...
jlib/util/str_util.h
View file @
f3280df3
...
...
@@ -122,4 +122,42 @@ inline std::wstring to_lower_copy(std::wstring str) {
return
str
;
}
/**************************** starts_with *************************/
inline
bool
starts_with
(
const
std
::
string
&
str
,
const
std
::
string
&
sub
)
{
if
(
str
.
size
()
<
sub
.
size
())
{
return
false
;
}
for
(
size_t
i
=
0
;
i
<
sub
.
size
();
i
++
)
{
if
(
str
[
i
]
!=
sub
[
i
])
{
return
false
;
}
}
return
true
;
}
inline
bool
starts_with
(
const
std
::
wstring
&
str
,
const
std
::
wstring
&
sub
)
{
if
(
str
.
size
()
<
sub
.
size
())
{
return
false
;
}
for
(
size_t
i
=
0
;
i
<
sub
.
size
();
i
++
)
{
if
(
str
[
i
]
!=
sub
[
i
])
{
return
false
;
}
}
return
true
;
}
/**************************** ends_with ***************************/
inline
bool
ends_with
(
const
std
::
string
&
str
,
const
std
::
string
&
sub
)
{
if
(
str
.
size
()
<
sub
.
size
())
{
return
false
;
}
for
(
size_t
i
=
0
;
i
<
sub
.
size
();
i
++
)
{
if
(
str
[
str
.
size
()
-
i
-
1
]
!=
sub
[
sub
.
size
()
-
i
-
1
])
{
return
false
;
}
}
return
true
;
}
inline
bool
ends_with
(
const
std
::
wstring
&
str
,
const
std
::
wstring
&
sub
)
{
if
(
str
.
size
()
<
sub
.
size
())
{
return
false
;
}
for
(
size_t
i
=
0
;
i
<
sub
.
size
();
i
++
)
{
if
(
str
[
str
.
size
()
-
i
-
1
]
!=
sub
[
sub
.
size
()
-
i
-
1
])
{
return
false
;
}
}
return
true
;
}
}
// namespace jlib
test/test_strutil/test_strutil.cpp
View file @
f3280df3
...
...
@@ -74,4 +74,34 @@ int main()
to_lower
(
wstr
);
assert
(
wstr
==
L"abc"
);
}
// starts_with
{
std
::
string
str
=
"abc123"
;
assert
(
starts_with
(
str
,
"abc123"
));
assert
(
starts_with
(
str
,
"abc"
));
assert
(
!
starts_with
(
str
,
"abc1234"
));
assert
(
!
starts_with
(
str
,
"bc"
));
std
::
wstring
wstr
=
L"abc123"
;
assert
(
starts_with
(
wstr
,
L"abc123"
));
assert
(
starts_with
(
wstr
,
L"abc"
));
assert
(
!
starts_with
(
wstr
,
L"abc1234"
));
assert
(
!
starts_with
(
wstr
,
L"bc"
));
}
// ends_with
{
std
::
string
str
=
"abc123"
;
assert
(
ends_with
(
str
,
"abc123"
));
assert
(
ends_with
(
str
,
"123"
));
assert
(
!
ends_with
(
str
,
"0abc123"
));
assert
(
!
ends_with
(
str
,
"abc13"
));
std
::
wstring
wstr
=
L"abc123"
;
assert
(
ends_with
(
wstr
,
L"abc123"
));
assert
(
ends_with
(
wstr
,
L"123"
));
assert
(
!
ends_with
(
wstr
,
L"0abc123"
));
assert
(
!
ends_with
(
wstr
,
L"abc13"
));
}
}
\ No newline at end of file
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