OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / spf13 / cobra / doc / util.go
1 // Copyright 2015 Red Hat Inc. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 // http://www.apache.org/licenses/LICENSE-2.0
7 //
8 // Unless required by applicable law or agreed to in writing, software
9 // distributed under the License is distributed on an "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 // See the License for the specific language governing permissions and
12 // limitations under the License.
13
14 package doc
15
16 import (
17         "strings"
18
19         "github.com/spf13/cobra"
20 )
21
22 // Test to see if we have a reason to print See Also information in docs
23 // Basically this is a test for a parent commend or a subcommand which is
24 // both not deprecated and not the autogenerated help command.
25 func hasSeeAlso(cmd *cobra.Command) bool {
26         if cmd.HasParent() {
27                 return true
28         }
29         for _, c := range cmd.Commands() {
30                 if !c.IsAvailableCommand() || c.IsAdditionalHelpTopicCommand() {
31                         continue
32                 }
33                 return true
34         }
35         return false
36 }
37
38 // Temporary workaround for yaml lib generating incorrect yaml with long strings
39 // that do not contain \n.
40 func forceMultiLine(s string) string {
41         if len(s) > 60 && !strings.Contains(s, "\n") {
42                 s = s + "\n"
43         }
44         return s
45 }
46
47 type byName []*cobra.Command
48
49 func (s byName) Len() int           { return len(s) }
50 func (s byName) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
51 func (s byName) Less(i, j int) bool { return s[i].Name() < s[j].Name() }