Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
dab679df
Commit
dab679df
authored
Jan 09, 2016
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
import: Fix multiple imports (closes #480)
parent
94532246
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
23 deletions
+23
-23
caddy/parse/parsing.go
caddy/parse/parsing.go
+23
-23
No files found.
caddy/parse/parsing.go
View file @
dab679df
...
...
@@ -183,63 +183,63 @@ func (p *parser) directives() error {
// other words, call Next() to access the first token that was
// imported.
func
(
p
*
parser
)
doImport
()
error
{
// syntax check
if
!
p
.
NextArg
()
{
return
p
.
ArgErr
()
}
importPattern
:=
p
.
Val
()
if
p
.
NextArg
()
{
return
p
.
Err
(
"Import
allows only one expression, either file or glob pattern
"
)
return
p
.
Err
(
"Import
takes only one argument (glob pattern or file)
"
)
}
// do glob
matches
,
err
:=
filepath
.
Glob
(
importPattern
)
if
err
!=
nil
{
return
p
.
Errf
(
"Failed to use import pattern %s
- %s"
,
importPattern
,
err
.
Error
()
)
return
p
.
Errf
(
"Failed to use import pattern %s
: %v"
,
importPattern
,
err
)
}
if
len
(
matches
)
==
0
{
return
p
.
Errf
(
"No files matching
the
import pattern %s"
,
importPattern
)
return
p
.
Errf
(
"No files matching import pattern %s"
,
importPattern
)
}
// Splice out the import directive and its argument (2 tokens total)
// and insert the imported tokens in their place.
// splice out the import directive and its argument (2 tokens total)
tokensBefore
:=
p
.
tokens
[
:
p
.
cursor
-
1
]
tokensAfter
:=
p
.
tokens
[
p
.
cursor
+
1
:
]
// cursor was advanced one position to read filename; rewind it
p
.
cursor
--
p
.
tokens
=
tokensBefore
// collect all the imported tokens
var
importedTokens
[]
token
for
_
,
importFile
:=
range
matches
{
if
err
:=
p
.
doSingleImport
(
importFile
);
err
!=
nil
{
newTokens
,
err
:=
p
.
doSingleImport
(
importFile
)
if
err
!=
nil
{
return
err
}
importedTokens
=
append
(
importedTokens
,
newTokens
...
)
}
p
.
tokens
=
append
(
p
.
tokens
,
append
(
tokensAfter
)
...
)
// splice the imported tokens in the place of the import statement
// and rewind cursor so Next() will land on first imported token
p
.
tokens
=
append
(
tokensBefore
,
append
(
importedTokens
,
tokensAfter
...
)
...
)
p
.
cursor
--
return
nil
}
// doSingleImport lexes the individual file
s matching the
//
globbing pattern from of the import directive
.
func
(
p
*
parser
)
doSingleImport
(
importFile
string
)
error
{
// doSingleImport lexes the individual file
at importFile and returns
//
its tokens or an error, if any
.
func
(
p
*
parser
)
doSingleImport
(
importFile
string
)
([]
token
,
error
)
{
file
,
err
:=
os
.
Open
(
importFile
)
if
err
!=
nil
{
return
p
.
Errf
(
"Could not import %s -
%v"
,
importFile
,
err
)
return
nil
,
p
.
Errf
(
"Could not import %s:
%v"
,
importFile
,
err
)
}
defer
file
.
Close
()
importedTokens
:=
allTokens
(
file
)
// Tack the filename onto these tokens so any errors show the imported file's name
// Tack the filename onto these tokens so errors show the imported file's name
filename
:=
filepath
.
Base
(
importFile
)
for
i
:=
0
;
i
<
len
(
importedTokens
);
i
++
{
importedTokens
[
i
]
.
file
=
file
path
.
Base
(
importFile
)
importedTokens
[
i
]
.
file
=
file
name
}
// Splice out the import directive and its argument (2 tokens total)
// and insert the imported tokens in their place.
p
.
tokens
=
append
(
p
.
tokens
,
append
(
importedTokens
)
...
)
return
nil
return
importedTokens
,
nil
}
// directive collects tokens until the directive's scope
...
...
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