util.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. package doc
  14. import "github.com/spf13/cobra"
  15. // Test to see if we have a reason to print See Also information in docs
  16. // Basically this is a test for a parent commend or a subcommand which is
  17. // both not deprecated and not the autogenerated help command.
  18. func hasSeeAlso(cmd *cobra.Command) bool {
  19. if cmd.HasParent() {
  20. return true
  21. }
  22. for _, c := range cmd.Commands() {
  23. if !c.IsAvailableCommand() || c.IsHelpCommand() {
  24. continue
  25. }
  26. return true
  27. }
  28. return false
  29. }
  30. type byName []*cobra.Command
  31. func (s byName) Len() int { return len(s) }
  32. func (s byName) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
  33. func (s byName) Less(i, j int) bool { return s[i].Name() < s[j].Name() }