set.rb 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Copyright (c) 2013 Douglas Thrift
  2. #
  3. # MIT License
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining
  6. # a copy of this software and associated documentation files (the
  7. # "Software"), to deal in the Software without restriction, including
  8. # without limitation the rights to use, copy, modify, merge, publish,
  9. # distribute, sublicense, and/or sell copies of the Software, and to
  10. # permit persons to whom the Software is furnished to do so, subject to
  11. # the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be
  14. # included in all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  20. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. require 'set'
  24. module MachineTag
  25. # Set of tags which can be machine tags.
  26. #
  27. class Set < ::Set
  28. def initialize(enum = nil, &block)
  29. @tags_by_namespace = {}
  30. @tags_by_namespace_and_predicate = {}
  31. super
  32. end
  33. def add(tag)
  34. tag = Tag.new(tag) unless tag.is_a? Tag
  35. super(tag)
  36. if tag.machine_tag?
  37. @tags_by_namespace[tag.namespace] ||= ::Set.new
  38. @tags_by_namespace[tag.namespace] << tag
  39. @tags_by_namespace_and_predicate[tag.namespace_and_predicate] ||= ::Set.new
  40. @tags_by_namespace_and_predicate[tag.namespace_and_predicate] << tag
  41. end
  42. end
  43. def [](namespace_or_namespace_and_predicate, predicate = nil)
  44. if namespace_or_namespace_and_predicate =~ /^#{PREFIX}$/
  45. namespace = namespace_or_namespace_and_predicate
  46. unless predicate
  47. @tags_by_namespace[namespace]
  48. else
  49. raise ArgumentError, "Invalid machine tag predicate: #{predicate.inspect}" unless predicate =~ /^#{PREFIX}$/
  50. @tags_by_namespace_and_predicate["#{namespace}:#{predicate}"]
  51. end
  52. elsif namespace_or_namespace_and_predicate =~ /^#{NAMESPACE_AND_PREDICATE}$/
  53. namespace_and_predicate = namespace_or_namespace_and_predicate
  54. raise ArgumentError, "Separate predicate passed with namespace and predicate: #{namespace_and_predicate.inspect}, #{predicate.inspect}" if predicate
  55. @tags_by_namespace_and_predicate[namespace_and_predicate]
  56. else
  57. raise ArgumentError, "Invalid machine tag namespace and/or predicate: #{namespace_or_namespace_and_predicate.inspect}, #{predicate.inspect}"
  58. end
  59. end
  60. end
  61. end