errors.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Copyright (c) 2014, Suryandaru Triandana <syndtr@gmail.com>
  2. // All rights reserved.
  3. //
  4. // Use of this source code is governed by a BSD-style license that can be
  5. // found in the LICENSE file.
  6. // Package errors provides common error types used throughout leveldb.
  7. package errors
  8. import (
  9. "errors"
  10. "fmt"
  11. "github.com/syndtr/goleveldb/leveldb/storage"
  12. "github.com/syndtr/goleveldb/leveldb/util"
  13. )
  14. // Common errors.
  15. var (
  16. ErrNotFound = New("leveldb: not found")
  17. ErrReleased = util.ErrReleased
  18. ErrHasReleaser = util.ErrHasReleaser
  19. )
  20. // New returns an error that formats as the given text.
  21. func New(text string) error {
  22. return errors.New(text)
  23. }
  24. // ErrCorrupted is the type that wraps errors that indicate corruption in
  25. // the database.
  26. type ErrCorrupted struct {
  27. Fd storage.FileDesc
  28. Err error
  29. }
  30. func (e *ErrCorrupted) Error() string {
  31. if !e.Fd.Zero() {
  32. return fmt.Sprintf("%v [file=%v]", e.Err, e.Fd)
  33. }
  34. return e.Err.Error()
  35. }
  36. // NewErrCorrupted creates new ErrCorrupted error.
  37. func NewErrCorrupted(fd storage.FileDesc, err error) error {
  38. return &ErrCorrupted{fd, err}
  39. }
  40. // IsCorrupted returns a boolean indicating whether the error is indicating
  41. // a corruption.
  42. func IsCorrupted(err error) bool {
  43. switch err.(type) {
  44. case *ErrCorrupted:
  45. return true
  46. case *storage.ErrCorrupted:
  47. return true
  48. }
  49. return false
  50. }
  51. // ErrMissingFiles is the type that indicating a corruption due to missing
  52. // files. ErrMissingFiles always wrapped with ErrCorrupted.
  53. type ErrMissingFiles struct {
  54. Fds []storage.FileDesc
  55. }
  56. func (e *ErrMissingFiles) Error() string { return "file missing" }
  57. // SetFd sets 'file info' of the given error with the given file.
  58. // Currently only ErrCorrupted is supported, otherwise will do nothing.
  59. func SetFd(err error, fd storage.FileDesc) error {
  60. switch x := err.(type) {
  61. case *ErrCorrupted:
  62. x.Fd = fd
  63. return x
  64. }
  65. return err
  66. }