2019-03-17 19:14:12 +00:00
|
|
|
// Copyright the Drone Authors.
|
|
|
|
//
|
|
|
|
// 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.
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package pretty
|
|
|
|
|
|
|
|
import "github.com/drone/drone-yaml/yaml"
|
|
|
|
|
|
|
|
func isPrimative(v interface{}) bool {
|
|
|
|
switch v.(type) {
|
2019-03-18 03:03:27 +00:00
|
|
|
case bool, string, int, int64, float64:
|
2019-01-22 23:44:17 +00:00
|
|
|
return true
|
|
|
|
case yaml.BytesSize:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func isSlice(v interface{}) bool {
|
|
|
|
switch v.(type) {
|
|
|
|
case []interface{}:
|
|
|
|
return true
|
|
|
|
case []string:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func isZero(v interface{}) bool {
|
|
|
|
switch v := v.(type) {
|
|
|
|
case bool:
|
|
|
|
return v == false
|
|
|
|
case string:
|
|
|
|
return len(v) == 0
|
|
|
|
case int:
|
|
|
|
return v == 0
|
|
|
|
case float64:
|
|
|
|
return v == 0
|
|
|
|
case []interface{}:
|
|
|
|
return len(v) == 0
|
|
|
|
case []string:
|
|
|
|
return len(v) == 0
|
|
|
|
case map[interface{}]interface{}:
|
|
|
|
return len(v) == 0
|
|
|
|
case map[string]string:
|
|
|
|
return len(v) == 0
|
|
|
|
case yaml.BytesSize:
|
|
|
|
return int64(v) == 0
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func isQuoted(b rune) bool {
|
|
|
|
switch b {
|
|
|
|
case '#', ',', '[', ']', '{', '}', '&', '*', '!', '|', '>', '\'', '"', '%', '@', '`':
|
|
|
|
return true
|
|
|
|
case '\a', '\b', '\f', '\n', '\r', '\t', '\v':
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func chunk(s string, chunkSize int) []string {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return []string{s}
|
|
|
|
}
|
|
|
|
var chunks []string
|
|
|
|
for i := 0; i < len(s); i += chunkSize {
|
|
|
|
nn := i + chunkSize
|
|
|
|
if nn > len(s) {
|
|
|
|
nn = len(s)
|
|
|
|
}
|
|
|
|
chunks = append(chunks, s[i:nn])
|
|
|
|
}
|
|
|
|
return chunks
|
|
|
|
}
|