Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
lvzhengyang
git2
Commits
b9cb72c2
Commit
b9cb72c2
authored
Nov 10, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1950 from csware/quote-config-values
Correctly quote config values while saving
parents
0df96f2b
590c5efb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
src/config_file.c
+22
-0
tests-clar/config/write.c
+31
-0
No files found.
src/config_file.c
View file @
b9cb72c2
...
@@ -1178,6 +1178,22 @@ static int write_section(git_filebuf *file, const char *key)
...
@@ -1178,6 +1178,22 @@ static int write_section(git_filebuf *file, const char *key)
return
result
;
return
result
;
}
}
static
int
value_needs_surrounding_quote
(
const
char
*
value
)
{
const
char
*
ptr
=
value
;
if
(
*
value
==
' '
)
return
1
;
while
(
*
ptr
)
{
if
(
*
ptr
==
';'
||
*
ptr
==
'#'
)
return
1
;
++
ptr
;
}
if
(
ptr
!=
value
&&
*
(
--
ptr
)
==
' '
)
return
1
;
return
0
;
}
/*
/*
* This is pretty much the parsing, except we write out anything we don't have
* This is pretty much the parsing, except we write out anything we don't have
*/
*/
...
@@ -1302,6 +1318,9 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
...
@@ -1302,6 +1318,9 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
/* Then replace the variable. If the value is NULL, it
/* Then replace the variable. If the value is NULL, it
* means we want to delete it, so don't write anything. */
* means we want to delete it, so don't write anything. */
if
(
value
!=
NULL
)
{
if
(
value
!=
NULL
)
{
if
(
value_needs_surrounding_quote
(
value
))
git_filebuf_printf
(
&
file
,
"
\t
%s =
\"
%s
\"\n
"
,
name
,
value
);
else
git_filebuf_printf
(
&
file
,
"
\t
%s = %s
\n
"
,
name
,
value
);
git_filebuf_printf
(
&
file
,
"
\t
%s = %s
\n
"
,
name
,
value
);
}
}
...
@@ -1362,6 +1381,9 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
...
@@ -1362,6 +1381,9 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
if
(
reader
->
buffer
.
size
>
0
&&
*
(
reader
->
buffer
.
ptr
+
reader
->
buffer
.
size
-
1
)
!=
'\n'
)
if
(
reader
->
buffer
.
size
>
0
&&
*
(
reader
->
buffer
.
ptr
+
reader
->
buffer
.
size
-
1
)
!=
'\n'
)
git_filebuf_write
(
&
file
,
"
\n
"
,
1
);
git_filebuf_write
(
&
file
,
"
\n
"
,
1
);
if
(
value_needs_surrounding_quote
(
value
))
git_filebuf_printf
(
&
file
,
"
\t
%s =
\"
%s
\"\n
"
,
name
,
value
);
else
git_filebuf_printf
(
&
file
,
"
\t
%s = %s
\n
"
,
name
,
value
);
git_filebuf_printf
(
&
file
,
"
\t
%s = %s
\n
"
,
name
,
value
);
}
}
}
}
...
...
tests-clar/config/write.c
View file @
b9cb72c2
...
@@ -229,6 +229,37 @@ void test_config_write__add_value_at_file_with_no_clrf_at_the_end(void)
...
@@ -229,6 +229,37 @@ void test_config_write__add_value_at_file_with_no_clrf_at_the_end(void)
git_config_free
(
cfg
);
git_config_free
(
cfg
);
}
}
void
test_config_write__add_value_which_needs_quotes
(
void
)
{
git_config
*
cfg
;
const
char
*
str1
;
const
char
*
str2
;
const
char
*
str3
;
const
char
*
str4
;
const
char
*
str5
;
cl_git_pass
(
git_config_open_ondisk
(
&
cfg
,
"config17"
));
cl_git_pass
(
git_config_set_string
(
cfg
,
"core.startwithspace"
,
" Something"
));
cl_git_pass
(
git_config_set_string
(
cfg
,
"core.endwithspace"
,
"Something "
));
cl_git_pass
(
git_config_set_string
(
cfg
,
"core.containscommentchar1"
,
"some#thing"
));
cl_git_pass
(
git_config_set_string
(
cfg
,
"core.containscommentchar2"
,
"some;thing"
));
cl_git_pass
(
git_config_set_string
(
cfg
,
"core.startwhithsapceandcontainsdoublequote"
,
" some
\"
thing"
));
git_config_free
(
cfg
);
cl_git_pass
(
git_config_open_ondisk
(
&
cfg
,
"config17"
));
cl_git_pass
(
git_config_get_string
(
&
str1
,
cfg
,
"core.startwithspace"
));
cl_assert_equal_s
(
" Something"
,
str1
);
cl_git_pass
(
git_config_get_string
(
&
str2
,
cfg
,
"core.endwithspace"
));
cl_assert_equal_s
(
"Something "
,
str2
);
cl_git_pass
(
git_config_get_string
(
&
str3
,
cfg
,
"core.containscommentchar1"
));
cl_assert_equal_s
(
"some#thing"
,
str3
);
cl_git_pass
(
git_config_get_string
(
&
str4
,
cfg
,
"core.containscommentchar2"
));
cl_assert_equal_s
(
"some;thing"
,
str4
);
cl_git_pass
(
git_config_get_string
(
&
str5
,
cfg
,
"core.startwhithsapceandcontainsdoublequote"
));
cl_assert_equal_s
(
" some
\"
thing"
,
str5
);
git_config_free
(
cfg
);
}
void
test_config_write__can_set_a_value_to_NULL
(
void
)
void
test_config_write__can_set_a_value_to_NULL
(
void
)
{
{
git_repository
*
repository
;
git_repository
*
repository
;
...
...
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