You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

error.go 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package git
  5. import (
  6. "fmt"
  7. "strings"
  8. "time"
  9. )
  10. // ErrExecTimeout error when exec timed out
  11. type ErrExecTimeout struct {
  12. Duration time.Duration
  13. }
  14. // IsErrExecTimeout if some error is ErrExecTimeout
  15. func IsErrExecTimeout(err error) bool {
  16. _, ok := err.(ErrExecTimeout)
  17. return ok
  18. }
  19. func (err ErrExecTimeout) Error() string {
  20. return fmt.Sprintf("execution is timeout [duration: %v]", err.Duration)
  21. }
  22. // ErrNotExist commit not exist error
  23. type ErrNotExist struct {
  24. ID string
  25. RelPath string
  26. }
  27. // IsErrNotExist if some error is ErrNotExist
  28. func IsErrNotExist(err error) bool {
  29. _, ok := err.(ErrNotExist)
  30. return ok
  31. }
  32. func (err ErrNotExist) Error() string {
  33. return fmt.Sprintf("object does not exist [id: %s, rel_path: %s]", err.ID, err.RelPath)
  34. }
  35. // ErrBadLink entry.FollowLink error
  36. type ErrBadLink struct {
  37. Name string
  38. Message string
  39. }
  40. func (err ErrBadLink) Error() string {
  41. return fmt.Sprintf("%s: %s", err.Name, err.Message)
  42. }
  43. // IsErrBadLink if some error is ErrBadLink
  44. func IsErrBadLink(err error) bool {
  45. _, ok := err.(ErrBadLink)
  46. return ok
  47. }
  48. // ErrUnsupportedVersion error when required git version not matched
  49. type ErrUnsupportedVersion struct {
  50. Required string
  51. }
  52. // IsErrUnsupportedVersion if some error is ErrUnsupportedVersion
  53. func IsErrUnsupportedVersion(err error) bool {
  54. _, ok := err.(ErrUnsupportedVersion)
  55. return ok
  56. }
  57. func (err ErrUnsupportedVersion) Error() string {
  58. return fmt.Sprintf("Operation requires higher version [required: %s]", err.Required)
  59. }
  60. // ErrBranchNotExist represents a "BranchNotExist" kind of error.
  61. type ErrBranchNotExist struct {
  62. Name string
  63. }
  64. // IsErrBranchNotExist checks if an error is a ErrBranchNotExist.
  65. func IsErrBranchNotExist(err error) bool {
  66. _, ok := err.(ErrBranchNotExist)
  67. return ok
  68. }
  69. func (err ErrBranchNotExist) Error() string {
  70. return fmt.Sprintf("branch does not exist [name: %s]", err.Name)
  71. }
  72. // ErrPushOutOfDate represents an error if merging fails due to unrelated histories
  73. type ErrPushOutOfDate struct {
  74. StdOut string
  75. StdErr string
  76. Err error
  77. }
  78. // IsErrPushOutOfDate checks if an error is a ErrPushOutOfDate.
  79. func IsErrPushOutOfDate(err error) bool {
  80. _, ok := err.(*ErrPushOutOfDate)
  81. return ok
  82. }
  83. func (err *ErrPushOutOfDate) Error() string {
  84. return fmt.Sprintf("PushOutOfDate Error: %v: %s\n%s", err.Err, err.StdErr, err.StdOut)
  85. }
  86. // Unwrap unwraps the underlying error
  87. func (err *ErrPushOutOfDate) Unwrap() error {
  88. return fmt.Errorf("%v - %s", err.Err, err.StdErr)
  89. }
  90. // ErrPushRejected represents an error if merging fails due to rejection from a hook
  91. type ErrPushRejected struct {
  92. Message string
  93. StdOut string
  94. StdErr string
  95. Err error
  96. }
  97. // IsErrPushRejected checks if an error is a ErrPushRejected.
  98. func IsErrPushRejected(err error) bool {
  99. _, ok := err.(*ErrPushRejected)
  100. return ok
  101. }
  102. func (err *ErrPushRejected) Error() string {
  103. return fmt.Sprintf("PushRejected Error: %v: %s\n%s", err.Err, err.StdErr, err.StdOut)
  104. }
  105. // Unwrap unwraps the underlying error
  106. func (err *ErrPushRejected) Unwrap() error {
  107. return fmt.Errorf("%v - %s", err.Err, err.StdErr)
  108. }
  109. // GenerateMessage generates the remote message from the stderr
  110. func (err *ErrPushRejected) GenerateMessage() {
  111. messageBuilder := &strings.Builder{}
  112. i := strings.Index(err.StdErr, "remote: ")
  113. if i < 0 {
  114. err.Message = ""
  115. return
  116. }
  117. for {
  118. if len(err.StdErr) <= i+8 {
  119. break
  120. }
  121. if err.StdErr[i:i+8] != "remote: " {
  122. break
  123. }
  124. i += 8
  125. nl := strings.IndexByte(err.StdErr[i:], '\n')
  126. if nl >= 0 {
  127. messageBuilder.WriteString(err.StdErr[i : i+nl+1])
  128. i = i + nl + 1
  129. } else {
  130. messageBuilder.WriteString(err.StdErr[i:])
  131. i = len(err.StdErr)
  132. }
  133. }
  134. err.Message = strings.TrimSpace(messageBuilder.String())
  135. }