module ICU module Collation def self.collate(locale, arr) collator = Collator.new(locale) res = collator.collate(arr) collator.close res end def self.keywords enum_ptr = Lib.check_error { |error| Lib.ucol_getKeywords(error) } keywords = Lib.enum_ptr_to_array(enum_ptr) Lib.uenum_close enum_ptr hash = {} keywords.each do |keyword| enum_ptr = Lib.check_error { |error| Lib.ucol_getKeywordValues(keyword, error) } hash[keyword] = Lib.enum_ptr_to_array(enum_ptr) Lib.uenum_close(enum_ptr) end hash end def self.available_locales (0...Lib.ucol_countAvailable).map do |idx| Lib.ucol_getAvailable idx end end class Collator ULOC_VALID_LOCALE = 1 def initialize(locale) @c = Lib.check_error { |error| Lib.ucol_open(locale, error) } end def locale Lib.check_error { |error| Lib.ucol_getLocale(@c, ULOC_VALID_LOCALE, error) } end def compare(a, b) Lib.ucol_strcoll( @c, UCharPointer.from_string(a), a.length, UCharPointer.from_string(b), b.length ) end def greater?(a, b) Lib.ucol_greater(@c, UCharPointer.from_string(a), a.length, UCharPointer.from_string(b), b.length) end def greater_or_equal?(a, b) Lib.ucol_greaterOrEqual(@c, UCharPointer.from_string(a), a.length, UCharPointer.from_string(b), b.length) end def equal?(*args) return super() if args.empty? if args.size != 2 raise ArgumentError, "wrong number of arguments (#{args.size} for 2)" end a, b = args Lib.ucol_equal(@c, UCharPointer.from_string(a), a.length, UCharPointer.from_string(b), b.length) end def collate(array) array.sort { |a,b| compare a, b } end def close Lib.ucol_close(@c) end end # Collator end # Collate end # ICU