Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
579e48ed
Commit
579e48ed
authored
Feb 17, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/StringUtil: add function Strip()
Replaces g_strstrip().
parent
6a08f228
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
6 deletions
+27
-6
ExcludeList.cxx
src/db/update/ExcludeList.cxx
+2
-2
TagConfig.cxx
src/tag/TagConfig.cxx
+2
-3
TagId3.cxx
src/tag/TagId3.cxx
+2
-1
StringUtil.cxx
src/util/StringUtil.cxx
+14
-0
StringUtil.hxx
src/util/StringUtil.hxx
+7
-0
No files found.
src/db/update/ExcludeList.cxx
View file @
579e48ed
/*
* Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
...
...
@@ -27,6 +26,7 @@
#include "ExcludeList.hxx"
#include "fs/Path.hxx"
#include "fs/FileSystem.hxx"
#include "util/StringUtil.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
...
...
@@ -58,7 +58,7 @@ ExcludeList::LoadFile(Path path_fs)
if
(
p
!=
nullptr
)
*
p
=
0
;
p
=
g_strs
trip
(
line
);
p
=
S
trip
(
line
);
if
(
*
p
!=
0
)
patterns
.
emplace_front
(
p
);
}
...
...
src/tag/TagConfig.cxx
View file @
579e48ed
...
...
@@ -26,8 +26,7 @@
#include "system/FatalError.hxx"
#include "util/Alloc.hxx"
#include "util/ASCII.hxx"
#include <glib.h>
#include "util/StringUtil.hxx"
#include <algorithm>
...
...
@@ -54,7 +53,7 @@ TagLoadConfig()
quit
=
true
;
*
s
=
'\0'
;
c
=
g_strs
trip
(
c
);
c
=
S
trip
(
c
);
if
(
*
c
==
0
)
continue
;
...
...
src/tag/TagId3.cxx
View file @
579e48ed
...
...
@@ -22,6 +22,7 @@
#include "TagHandler.hxx"
#include "TagTable.hxx"
#include "TagBuilder.hxx"
#include "util/StringUtil.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
...
...
@@ -116,7 +117,7 @@ import_id3_string(bool is_id3v1, const id3_ucs4_t *ucs4)
}
id3_utf8_t
*
utf8_stripped
=
(
id3_utf8_t
*
)
g_strdup
(
g_strstrip
((
g
char
*
)
utf8
));
g_strdup
(
Strip
((
char
*
)
utf8
));
free
(
utf8
);
return
utf8_stripped
;
...
...
src/util/StringUtil.cxx
View file @
579e48ed
...
...
@@ -33,6 +33,20 @@ strchug_fast(const char *p)
return
p
;
}
char
*
Strip
(
char
*
p
)
{
p
=
strchug_fast
(
p
);
size_t
length
=
strlen
(
p
);
while
(
length
>
0
&&
IsWhitespaceNotNull
(
p
[
length
-
1
]))
--
length
;
p
[
length
]
=
0
;
return
p
;
}
bool
StringStartsWith
(
const
char
*
haystack
,
const
char
*
needle
)
{
...
...
src/util/StringUtil.hxx
View file @
579e48ed
...
...
@@ -40,6 +40,13 @@ strchug_fast(char *p)
return
const_cast
<
char
*>
(
strchug_fast
((
const
char
*
)
p
));
}
/**
* Skip whitespace at the beginning and terminate the string after the
* last non-whitespace character.
*/
char
*
Strip
(
char
*
p
);
gcc_pure
bool
StringStartsWith
(
const
char
*
haystack
,
const
char
*
needle
);
...
...
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