Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
caa73877
Commit
caa73877
authored
4 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Refactor and document `Inreplace`.
parent
8e789901
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Library/Homebrew/test/inreplace_spec.rb
+5
-5
5 additions, 5 deletions
Library/Homebrew/test/inreplace_spec.rb
Library/Homebrew/utils/inreplace.rb
+15
-9
15 additions, 9 deletions
Library/Homebrew/utils/inreplace.rb
with
20 additions
and
14 deletions
Library/Homebrew/test/inreplace_spec.rb
+
5
−
5
View file @
caa73877
...
@@ -280,13 +280,13 @@ describe Utils::Inreplace do
...
@@ -280,13 +280,13 @@ describe Utils::Inreplace do
it
"raises error if there are no files given to replace"
do
it
"raises error if there are no files given to replace"
do
expect
{
expect
{
described_class
.
inreplace
[],
"d"
,
"f"
described_class
.
inreplace
[],
"d"
,
"f"
}.
to
raise_error
(
Utils
::
InreplaceError
)
}.
to
raise_error
(
Utils
::
Inreplace
::
Error
)
end
end
it
"raises error if there is nothing to replace"
do
it
"raises error if there is nothing to replace"
do
expect
{
expect
{
described_class
.
inreplace
file
.
path
,
"d"
,
"f"
described_class
.
inreplace
file
.
path
,
"d"
,
"f"
}.
to
raise_error
(
Utils
::
InreplaceError
)
}.
to
raise_error
(
Utils
::
Inreplace
::
Error
)
end
end
it
"raises error if there is nothing to replace in block form"
do
it
"raises error if there is nothing to replace in block form"
do
...
@@ -294,7 +294,7 @@ describe Utils::Inreplace do
...
@@ -294,7 +294,7 @@ describe Utils::Inreplace do
described_class
.
inreplace
(
file
.
path
)
do
|
s
|
described_class
.
inreplace
(
file
.
path
)
do
|
s
|
s
.
gsub!
(
"d"
,
"f"
)
# rubocop:disable Performance/StringReplacement
s
.
gsub!
(
"d"
,
"f"
)
# rubocop:disable Performance/StringReplacement
end
end
}.
to
raise_error
(
Utils
::
InreplaceError
)
}.
to
raise_error
(
Utils
::
Inreplace
::
Error
)
end
end
it
"raises error if there is no make variables to replace"
do
it
"raises error if there is no make variables to replace"
do
...
@@ -303,14 +303,14 @@ describe Utils::Inreplace do
...
@@ -303,14 +303,14 @@ describe Utils::Inreplace do
s
.
change_make_var!
"VAR"
,
"value"
s
.
change_make_var!
"VAR"
,
"value"
s
.
remove_make_var!
"VAR2"
s
.
remove_make_var!
"VAR2"
end
end
}.
to
raise_error
(
Utils
::
InreplaceError
)
}.
to
raise_error
(
Utils
::
Inreplace
::
Error
)
end
end
describe
"#inreplace_pairs"
do
describe
"#inreplace_pairs"
do
it
"raises error if there is no old value"
do
it
"raises error if there is no old value"
do
expect
{
expect
{
described_class
.
inreplace_pairs
(
file
.
path
,
[[
nil
,
"f"
]])
described_class
.
inreplace_pairs
(
file
.
path
,
[[
nil
,
"f"
]])
}.
to
raise_error
(
Utils
::
InreplaceError
)
}.
to
raise_error
(
Utils
::
Inreplace
::
Error
)
end
end
end
end
end
end
This diff is collapsed.
Click to expand it.
Library/Homebrew/utils/inreplace.rb
+
15
−
9
View file @
caa73877
# frozen_string_literal: true
# frozen_string_literal: true
module
Utils
module
Utils
class
InreplaceError
<
RuntimeError
# Helper functions for replacing text in files in-place.
def
initialize
(
errors
)
#
formatted_errors
=
errors
.
reduce
(
+
"inreplace failed
\n
"
)
do
|
s
,
(
path
,
errs
)
|
# @api private
s
<<
"
#{
path
}
:
\n
"
<<
errs
.
map
{
|
e
|
"
#{
e
}
\n
"
}.
join
module
Inreplace
# Error during replacement.
class
Error
<
RuntimeError
def
initialize
(
errors
)
formatted_errors
=
errors
.
reduce
(
+
"inreplace failed
\n
"
)
do
|
s
,
(
path
,
errs
)
|
s
<<
"
#{
path
}
:
\n
"
<<
errs
.
map
{
|
e
|
"
#{
e
}
\n
"
}.
join
end
super
formatted_errors
.
freeze
end
end
super
formatted_errors
.
freeze
end
end
end
module
Inreplace
module_function
module_function
# Sometimes we have to change a bit before we install. Mostly we
# Sometimes we have to change a bit before we install. Mostly we
...
@@ -21,6 +25,8 @@ module Utils
...
@@ -21,6 +25,8 @@ module Utils
#
#
# `inreplace` supports regular expressions:
# `inreplace` supports regular expressions:
# <pre>inreplace "somefile.cfg", /look[for]what?/, "replace by #{bin}/tool"</pre>
# <pre>inreplace "somefile.cfg", /look[for]what?/, "replace by #{bin}/tool"</pre>
#
# @api public
def
inreplace
(
paths
,
before
=
nil
,
after
=
nil
,
audit_result
=
true
)
# rubocop:disable Style/OptionalBooleanParameter
def
inreplace
(
paths
,
before
=
nil
,
after
=
nil
,
audit_result
=
true
)
# rubocop:disable Style/OptionalBooleanParameter
errors
=
{}
errors
=
{}
...
@@ -42,7 +48,7 @@ module Utils
...
@@ -42,7 +48,7 @@ module Utils
Pathname
(
path
).
atomic_write
(
s
.
inreplace_string
)
Pathname
(
path
).
atomic_write
(
s
.
inreplace_string
)
end
end
raise
Inreplace
Error
,
errors
unless
errors
.
empty?
raise
Error
,
errors
unless
errors
.
empty?
end
end
def
inreplace_pairs
(
path
,
replacement_pairs
,
read_only_run:
false
,
silent:
false
)
def
inreplace_pairs
(
path
,
replacement_pairs
,
read_only_run:
false
,
silent:
false
)
...
@@ -57,7 +63,7 @@ module Utils
...
@@ -57,7 +63,7 @@ module Utils
contents
.
gsub!
(
old
,
new
)
contents
.
gsub!
(
old
,
new
)
end
end
raise
Inreplace
Error
,
path
=>
contents
.
errors
unless
contents
.
errors
.
empty?
raise
Error
,
path
=>
contents
.
errors
unless
contents
.
errors
.
empty?
Pathname
(
path
).
atomic_write
(
contents
.
inreplace_string
)
unless
read_only_run
Pathname
(
path
).
atomic_write
(
contents
.
inreplace_string
)
unless
read_only_run
contents
.
inreplace_string
contents
.
inreplace_string
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment