-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: add support for do-log option
- Loading branch information
1 parent
37e8970
commit fa3c9c7
Showing
39 changed files
with
608 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Copyright 2019 HAProxy Technologies | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
//nolint:dupl | ||
package actions | ||
|
||
import ( | ||
stderrors "errors" | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/haproxytech/client-native/v6/config-parser/common" | ||
"github.com/haproxytech/client-native/v6/config-parser/types" | ||
) | ||
|
||
type DoLog struct { | ||
Cond string | ||
CondTest string | ||
Comment string | ||
} | ||
|
||
func (f *DoLog) Parse(parts []string, parserType types.ParserType, comment string) error { | ||
if comment != "" { | ||
f.Comment = comment | ||
} | ||
var command []string | ||
var minLen, requiredLen int | ||
switch parserType { | ||
case types.HTTP: | ||
command = parts[1:] | ||
minLen = 2 | ||
requiredLen = 4 | ||
case types.TCP: | ||
command = parts[2:] | ||
minLen = 3 | ||
requiredLen = 5 | ||
} | ||
if len(parts) == minLen { | ||
return nil | ||
} | ||
if len(parts) < requiredLen { | ||
return stderrors.New("not enough params") | ||
} | ||
_, condition := common.SplitRequest(command) | ||
if len(condition) > 1 { | ||
f.Cond = condition[0] | ||
f.CondTest = strings.Join(condition[1:], " ") | ||
} | ||
return nil | ||
} | ||
|
||
func (f *DoLog) String() string { | ||
if f.Cond != "" { | ||
return fmt.Sprintf("do-log %s %s", f.Cond, f.CondTest) | ||
} | ||
return "do-log" | ||
} | ||
|
||
func (f *DoLog) GetComment() string { | ||
return f.Comment | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.