]> git.cworth.org Git - sup/blob - lib/sup/util.rb
Merge branch 'master' into next
[sup] / lib / sup / util.rb
1 require 'thread'
2 require 'lockfile'
3 require 'mime/types'
4 require 'pathname'
5
6 ## time for some monkeypatching!
7 class Lockfile
8   def gen_lock_id
9     Hash[
10          'host' => "#{ Socket.gethostname }",
11          'pid' => "#{ Process.pid }",
12          'ppid' => "#{ Process.ppid }",
13          'time' => timestamp,
14          'pname' => $0,
15          'user' => ENV["USER"]
16         ]
17   end
18
19   def dump_lock_id lock_id = @lock_id
20       "host: %s\npid: %s\nppid: %s\ntime: %s\nuser: %s\npname: %s\n" %
21         lock_id.values_at('host','pid','ppid','time','user', 'pname')
22     end
23
24   def lockinfo_on_disk
25     h = load_lock_id IO.read(path)
26     h['mtime'] = File.mtime path
27     h
28   end
29
30   def touch_yourself; touch path end
31 end
32
33 class Pathname
34   def human_size
35     s =
36       begin
37         size
38       rescue SystemCallError
39         return "?"
40       end
41     s.to_human_size
42   end
43
44   def human_time
45     begin
46       ctime.strftime("%Y-%m-%d %H:%M")
47     rescue SystemCallError
48       "?"
49     end
50   end
51 end
52
53 ## more monkeypatching!
54 module RMail
55   class EncodingUnsupportedError < StandardError; end
56
57   class Message
58     def self.make_file_attachment fn
59       bfn = File.basename fn
60       t = MIME::Types.type_for(bfn).first || MIME::Types.type_for("exe").first
61       make_attachment IO.read(fn), t.content_type, t.encoding, bfn.to_s
62     end
63
64     def charset
65       if header.field?("content-type") && header.fetch("content-type") =~ /charset="?(.*?)"?(;|$)/i
66         $1
67       end
68     end
69
70     def self.make_attachment payload, mime_type, encoding, filename
71       a = Message.new
72       a.header.add "Content-Disposition", "attachment; filename=#{filename.inspect}"
73       a.header.add "Content-Type", "#{mime_type}; name=#{filename.inspect}"
74       a.header.add "Content-Transfer-Encoding", encoding if encoding
75       a.body =
76         case encoding
77         when "base64"
78           [payload].pack "m"
79         when "quoted-printable"
80           [payload].pack "M"
81         when "7bit", "8bit", nil
82           payload
83         else
84           raise EncodingUnsupportedError, encoding.inspect
85         end
86       a
87     end
88   end
89 end
90
91 class Range
92   ## only valid for integer ranges (unless I guess it's exclusive)
93   def size 
94     last - first + (exclude_end? ? 0 : 1)
95   end
96 end
97
98 class Module
99   def bool_reader *args
100     args.each { |sym| class_eval %{ def #{sym}?; @#{sym}; end } }
101   end
102   def bool_writer *args; attr_writer(*args); end
103   def bool_accessor *args
104     bool_reader(*args)
105     bool_writer(*args)
106   end
107
108   def defer_all_other_method_calls_to obj
109     class_eval %{
110       def method_missing meth, *a, &b; @#{obj}.send meth, *a, &b; end
111       def respond_to?(m, include_private = false)
112         @#{obj}.respond_to?(m, include_private)
113       end
114     }
115   end
116 end
117
118 class Object
119   def ancestors
120     ret = []
121     klass = self.class
122
123     until klass == Object
124       ret << klass
125       klass = klass.superclass
126     end
127     ret
128   end
129
130   ## "k combinator"
131   def returning x; yield x; x; end
132
133   ## clone of java-style whole-method synchronization
134   ## assumes a @mutex variable
135   ## TODO: clean up, try harder to avoid namespace collisions
136   def synchronized *meth
137     meth.each do
138       class_eval <<-EOF
139         alias unsynchronized_#{meth} #{meth}
140         def #{meth}(*a, &b)
141           @mutex.synchronize { unsynchronized_#{meth}(*a, &b) }
142         end
143       EOF
144     end
145   end
146
147   def ignore_concurrent_calls *meth
148     meth.each do
149       mutex = "@__concurrent_protector_#{meth}"
150       flag = "@__concurrent_flag_#{meth}"
151       oldmeth = "__unprotected_#{meth}"
152       class_eval <<-EOF
153         alias #{oldmeth} #{meth}
154         def #{meth}(*a, &b)
155           #{mutex} = Mutex.new unless defined? #{mutex}
156           #{flag} = true unless defined? #{flag}
157           run = #{mutex}.synchronize do
158             if #{flag}
159               #{flag} = false
160               true
161             end
162           end
163           if run
164             ret = #{oldmeth}(*a, &b)
165             #{mutex}.synchronize { #{flag} = true }
166             ret
167           end
168         end
169       EOF
170     end
171   end
172 end
173
174 class String
175   ## nasty multibyte hack for ruby 1.8. if it's utf-8, split into chars using
176   ## the utf8 regex and count those. otherwise, use the byte length.
177   def display_length
178     if $encoding == "UTF-8"
179       scan(/./u).size
180     else
181       size
182     end
183   end
184
185   def camel_to_hyphy
186     self.gsub(/([a-z])([A-Z0-9])/, '\1-\2').downcase
187   end
188
189   def find_all_positions x
190     ret = []
191     start = 0
192     while start < length
193       pos = index x, start
194       break if pos.nil?
195       ret << pos
196       start = pos + 1
197     end
198     ret
199   end
200
201   ## a very complicated regex found on teh internets to split on
202   ## commas, unless they occurr within double quotes.
203   def split_on_commas
204     split(/,\s*(?=(?:[^"]*"[^"]*")*(?![^"]*"))/)
205   end
206
207   ## ok, here we do it the hard way. got to have a remainder for purposes of
208   ## tab-completing full email addresses
209   def split_on_commas_with_remainder
210     ret = []
211     state = :outstring
212     pos = 0
213     region_start = 0
214     while pos <= length
215       newpos = case state
216         when :escaped_instring, :escaped_outstring: pos
217         else index(/[,"\\]/, pos)
218       end 
219       
220       if newpos
221         char = self[newpos]
222       else
223         char = nil
224         newpos = length
225       end
226
227       case char
228       when ?"
229         state = case state
230           when :outstring: :instring
231           when :instring: :outstring
232           when :escaped_instring: :instring
233           when :escaped_outstring: :outstring
234         end
235       when ?,, nil
236         state = case state
237           when :outstring, :escaped_outstring:
238             ret << self[region_start ... newpos].gsub(/^\s+|\s+$/, "")
239             region_start = newpos + 1
240             :outstring
241           when :instring: :instring
242           when :escaped_instring: :instring
243         end
244       when ?\\
245         state = case state
246           when :instring: :escaped_instring
247           when :outstring: :escaped_outstring
248           when :escaped_instring: :instring
249           when :escaped_outstring: :outstring
250         end
251       end
252       pos = newpos + 1
253     end
254
255     remainder = case state
256       when :instring
257         self[region_start .. -1].gsub(/^\s+/, "")
258       else
259         nil
260       end
261
262     [ret, remainder]
263   end
264
265   def wrap len
266     ret = []
267     s = self
268     while s.length > len
269       cut = s[0 ... len].rindex(/\s/)
270       if cut
271         ret << s[0 ... cut]
272         s = s[(cut + 1) .. -1]
273       else
274         ret << s[0 ... len]
275         s = s[len .. -1]
276       end
277     end
278     ret << s
279   end
280
281   def normalize_whitespace
282     gsub(/\t/, "    ").gsub(/\r/, "")
283   end
284
285   ## takes a space-separated list of words, and returns an array of symbols.
286   ## typically used in Sup for translating Ferret's representation of a list
287   ## of labels (a string) to an array of label symbols.
288   def symbolistize; split.map { |x| x.intern } end
289 end
290
291 class Numeric
292   def clamp min, max
293     if self < min
294       min
295     elsif self > max
296       max
297     else
298       self
299     end
300   end
301
302   def in? range; range.member? self; end
303
304   def to_human_size
305     if self < 1024
306       to_s + "b"
307     elsif self < (1024 * 1024)
308       (self / 1024).to_s + "k"
309     elsif self < (1024 * 1024 * 1024)
310       (self / 1024 / 1024).to_s + "m"
311     else
312       (self / 1024 / 1024 / 1024).to_s + "g"
313     end
314   end
315 end
316
317 class Fixnum
318   def to_character
319     if self < 128 && self >= 0
320       chr
321     else
322       "<#{self}>"
323     end
324   end
325
326   ## hacking the english language
327   def pluralize s
328     to_s + " " +
329       if self == 1
330         s
331       else
332         if s =~ /(.*)y$/
333           $1 + "ies"
334         else
335           s + "s"
336         end
337       end
338   end
339 end
340
341 class Hash
342   def - o
343     Hash[*self.map { |k, v| [k, v] unless o.include? k }.compact.flatten_one_level]
344   end
345
346   def select_by_value v=true
347     select { |k, vv| vv == v }.map { |x| x.first }
348   end
349 end
350
351 module Enumerable
352   def map_with_index
353     ret = []
354     each_with_index { |x, i| ret << yield(x, i) }
355     ret
356   end
357
358   def sum; inject(0) { |x, y| x + y }; end
359   
360   def map_to_hash
361     ret = {}
362     each { |x| ret[x] = yield(x) }
363     ret
364   end
365
366   # like find, except returns the value of the block rather than the
367   # element itself.
368   def argfind
369     ret = nil
370     find { |e| ret ||= yield(e) }
371     ret || nil # force
372   end
373
374   def argmin
375     best, bestval = nil, nil
376     each do |e|
377       val = yield e
378       if bestval.nil? || val < bestval
379         best, bestval = e, val
380       end
381     end
382     best
383   end
384
385   ## returns the maximum shared prefix of an array of strings
386   ## optinally excluding a prefix
387   def shared_prefix caseless=false, exclude=""
388     return "" if empty?
389     prefix = ""
390     (0 ... first.length).each do |i|
391       c = (caseless ? first.downcase : first)[i]
392       break unless all? { |s| (caseless ? s.downcase : s)[i] == c }
393       next if exclude[i] == c
394       prefix += first[i].chr
395     end
396     prefix
397   end
398
399   def max_of
400     map { |e| yield e }.max
401   end
402 end
403
404 class Array
405   def flatten_one_level
406     inject([]) { |a, e| a + e }
407   end
408
409   def to_h; Hash[*flatten]; end
410   def rest; self[1..-1]; end
411
412   def to_boolean_h; Hash[*map { |x| [x, true] }.flatten]; end
413
414   def last= e; self[-1] = e end
415   def nonempty?; !empty? end
416
417   def to_set_of_symbols
418     map { |x| x.is_a?(Symbol) ? x : x.intern }.uniq
419   end
420 end
421
422 class Time
423   def to_indexable_s
424     sprintf "%012d", self
425   end
426
427   def nearest_hour
428     if min < 30
429       self
430     else
431       self + (60 - min) * 60
432     end
433   end
434
435   def midnight # within a second
436     self - (hour * 60 * 60) - (min * 60) - sec
437   end
438
439   def is_the_same_day? other
440     (midnight - other.midnight).abs < 1
441   end
442
443   def is_the_day_before? other
444     other.midnight - midnight <=  24 * 60 * 60 + 1
445   end
446
447   def to_nice_distance_s from=Time.now
448     later_than = (self < from)
449     diff = (self.to_i - from.to_i).abs.to_f
450     text = 
451       [ ["second", 60],
452         ["minute", 60],
453         ["hour", 24],
454         ["day", 7],
455         ["week", 4.345], # heh heh
456         ["month", 12],
457         ["year", nil],
458       ].argfind do |unit, size|
459         if diff.round <= 1
460           "one #{unit}"
461         elsif size.nil? || diff.round < size
462           "#{diff.round} #{unit}s"
463         else
464           diff /= size.to_f
465           false
466         end
467       end
468     if later_than
469       text + " ago"
470     else
471       "in " + text
472     end  
473   end
474
475   TO_NICE_S_MAX_LEN = 9 # e.g. "Yest.10am"
476   def to_nice_s from=Time.now
477     if year != from.year
478       strftime "%b %Y"
479     elsif month != from.month
480       strftime "%b %e"
481     else
482       if is_the_same_day? from
483         strftime("%l:%M%P")
484       elsif is_the_day_before? from
485         "Yest."  + nearest_hour.strftime("%l%P")
486       else
487         strftime "%b %e"
488       end
489     end
490   end
491 end
492
493 ## simple singleton module. far less complete and insane than the ruby
494 ## standard library one, but automatically forwards methods calls and
495 ## allows for constructors that take arguments.
496 ##
497 ## You must have #initialize call "self.class.i_am_the_instance self"
498 ## at some point or everything will fail horribly.
499 module Singleton
500   module ClassMethods
501     def instance; @instance; end
502     def instantiated?; defined?(@instance) && !@instance.nil?; end
503     def deinstantiate!; @instance = nil; end
504     def method_missing meth, *a, &b
505       raise "no instance defined!" unless defined? @instance
506
507       ## if we've been deinstantiated, just drop all calls. this is
508       ## useful because threads that might be active during the
509       ## cleanup process (e.g. polling) would otherwise have to
510       ## special-case every call to a Singleton object
511       return nil if @instance.nil?
512
513       @instance.send meth, *a, &b
514     end
515     def i_am_the_instance o
516       raise "there can be only one! (instance)" if defined? @instance
517       @instance = o
518     end
519   end
520
521   def self.included klass
522     klass.extend ClassMethods
523   end
524 end
525
526 ## wraps an object. if it throws an exception, keeps a copy.
527 class Recoverable
528   def initialize o
529     @o = o
530     @error = nil
531     @mutex = Mutex.new
532   end
533
534   attr_accessor :error
535
536   def clear_error!; @error = nil; end
537   def has_errors?; !@error.nil?; end
538
539   def method_missing m, *a, &b; __pass m, *a, &b end
540   
541   def id; __pass :id; end
542   def to_s; __pass :to_s; end
543   def to_yaml x; __pass :to_yaml, x; end
544   def is_a? c; @o.is_a? c; end
545
546   def respond_to?(m, include_private=false)
547     @o.respond_to?(m, include_private)
548   end
549
550   def __pass m, *a, &b
551     begin
552       @o.send(m, *a, &b)
553     rescue Exception => e
554       @error ||= e
555       raise
556     end
557   end
558 end
559
560 ## acts like a hash with an initialization block, but saves any
561 ## newly-created value even upon lookup.
562 ##
563 ## for example:
564 ##
565 ## class C
566 ##   attr_accessor :val
567 ##   def initialize; @val = 0 end
568 ## end
569 ## 
570 ## h = Hash.new { C.new }
571 ## h[:a].val # => 0
572 ## h[:a].val = 1
573 ## h[:a].val # => 0
574 ##
575 ## h2 = SavingHash.new { C.new }
576 ## h2[:a].val # => 0
577 ## h2[:a].val = 1
578 ## h2[:a].val # => 1
579 ##
580 ## important note: you REALLY want to use #member? to test existence,
581 ## because just checking h[anything] will always evaluate to true
582 ## (except for degenerate constructor blocks that return nil or false)
583 class SavingHash
584   def initialize &b
585     @constructor = b
586     @hash = Hash.new
587   end
588
589   def [] k
590     @hash[k] ||= @constructor.call(k)
591   end
592
593   defer_all_other_method_calls_to :hash
594 end
595
596 class OrderedHash < Hash
597   alias_method :store, :[]=
598   alias_method :each_pair, :each
599   attr_reader :keys
600
601   def initialize *a
602     @keys = []
603     a.each { |k, v| self[k] = v }
604   end
605
606   def []= key, val
607     @keys << key unless member?(key)
608     super
609   end
610
611   def values; keys.map { |k| self[k] } end
612   def index key; @keys.index key end
613
614   def delete key
615     @keys.delete key
616     super
617   end
618
619   def each; @keys.each { |k| yield k, self[k] } end
620 end
621
622 ## easy thread-safe class for determining who's the "winner" in a race (i.e.
623 ## first person to hit the finish line
624 class FinishLine
625   def initialize
626     @m = Mutex.new
627     @over = false
628   end
629
630   def winner?
631     @m.synchronize { !@over && @over = true }
632   end
633 end
634
635 class Iconv
636   def self.easy_decode target, charset, text
637     return text if charset =~ /^(x-unknown|unknown[-_ ]?8bit|ascii[-_ ]?7[-_ ]?bit)$/i
638     charset = case charset
639       when /UTF[-_ ]?8/i: "utf-8"
640       when /(iso[-_ ])?latin[-_ ]?1$/i: "ISO-8859-1"
641       when /iso[-_ ]?8859[-_ ]?15/i: 'ISO-8859-15'
642       when /unicode[-_ ]1[-_ ]1[-_ ]utf[-_]7/i: "utf-7"
643       else charset
644     end
645
646     begin
647       Iconv.iconv(target + "//IGNORE", charset, text + " ").join[0 .. -2]
648     rescue Errno::EINVAL, Iconv::InvalidEncoding, Iconv::IllegalSequence => e
649       Redwood::log "warning: error (#{e.class.name}) decoding text from #{charset} to #{target}: #{text[0 ... 20]}"
650       text
651     end
652   end
653 end