id.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. Copyright 2014 CoreOS, Inc.
  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. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package types
  14. import (
  15. "strconv"
  16. )
  17. // ID represents a generic identifier which is canonically
  18. // stored as a uint64 but is typically represented as a
  19. // base-16 string for input/output
  20. type ID uint64
  21. func (i ID) String() string {
  22. return strconv.FormatUint(uint64(i), 16)
  23. }
  24. // IDFromString attempts to create an ID from a base-16 string.
  25. func IDFromString(s string) (ID, error) {
  26. i, err := strconv.ParseUint(s, 16, 64)
  27. return ID(i), err
  28. }
  29. // IDSlice implements the sort interface
  30. type IDSlice []ID
  31. func (p IDSlice) Len() int { return len(p) }
  32. func (p IDSlice) Less(i, j int) bool { return uint64(p[i]) < uint64(p[j]) }
  33. func (p IDSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }