2316b0ddbc3cc8bd703a4260109e85e4efc38849
[embrace.git] / bin / embrace
1 #!/usr/bin/env ruby
2
3 # vim:syn=ruby
4 #
5 # Copyright (c) 2006 Tilman Sauerbeck (tilman at code-monkey de)
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of version 2 of the GNU General Public License as
9 # published by the Free Software Foundation.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software Foundation,
18 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19
20 require "ecore"
21 require "ecore_x"
22 require "ecore_evas"
23 require "singleton"
24 require "yaml"
25 require "embrace/imap"
26
27 PKG_NAME = "embrace"
28 DATADIR = "/usr/local/share/#{PKG_NAME}/"
29
30 class Evas::EvasObject
31         def move_relative(obj, x, y)
32                 # FIXME investigate whether there's an easier way
33                 move(*obj.geometry[0..1].zip([x, y]).map { |(a, b)| a + b })
34         end
35
36         def center(obj)
37                 a = geometry
38                 b = obj.geometry
39
40                 move_relative(obj, (b[2] / 2) - (a[2] / 2),
41                                    (b[3] / 2) - (a[3] / 2))
42         end
43
44         def alpha=(alpha)
45                 set_color(*(get_color[0..-2] << alpha))
46         end
47 end
48
49 module Embrace
50         VERSION = "0.0.1"
51         ICON_FILE = DATADIR + "l33t_MAI_envelope.png"
52         MAX_ICONS = 11
53
54         class ZeroToOneAnimator < Ecore::Animator
55                 def initialize(duration)
56                         @finished = nil
57
58                         started = Time.now
59
60                         super() do
61                                 v = [(Time.now - started) / duration, 1.0].min
62
63                                 yield v
64
65                                 @finished.call(self) unless (v < 1.0) || @finished.nil?
66                                 v < 1.0
67                         end
68                 end
69
70                 def delete
71                         super
72
73                         @finished = nil
74                 end
75
76                 def on_finished(&block)
77                         @finished = block
78                 end
79         end
80
81         # an animator that runs for the specified number of seconds,
82         # and yields values between 0 and 255
83         class AlphaAnimator < ZeroToOneAnimator
84                 def initialize(duration, *objects)
85                         super(duration) do |v|
86                                 objects.each { |o| o.alpha = (255 * v).to_i }
87                         end
88                 end
89         end
90
91         class MoveAnimator < ZeroToOneAnimator
92                 def initialize(duration, movement, *objects)
93                         zipped = objects.zip(objects.map { |o| o.geometry[0..1] })
94
95                         super(duration) do |v|
96                                 # decelerate
97                                 v = Math.sin(v * Math::PI / 2.0)
98
99                                 zipped.each do |(o, orig_pos)|
100                                         o.move(orig_pos.first,
101                                                orig_pos.last + (movement * v).to_i)
102                                 end
103                         end
104                 end
105         end
106
107         class MailboxIcon < Evas::Smart
108                 attr_accessor :slot
109
110                 def initialize(evas, label)
111                         super(evas)
112
113                         @slot = nil
114                         @alpha_anim = nil
115
116                         @img = Evas::Image.new(evas)
117                         @label = Evas::Text.new(evas)
118
119                         @objects = [@img, @label]
120                         @objects.each { |o| add_member(o) }
121
122                         @img.set_color(255, 255, 255, 0)
123                         @label.set_color(255, 0, 0, 0)
124
125                         @img.set_file(ICON_FILE)
126                         @img.set_fill(0, 0, *@img.get_size)
127
128                         @label.text = label
129                         @label.set_font("VeraBd", 10)
130
131                         resize(*@img.get_size)
132                 end
133
134                 def label
135                         @label.text
136                 end
137
138                 # smart callbacks
139                 def on_show
140                         @objects.each { |o| o.show }
141
142                         @alpha_anim ||= AlphaAnimator.new(2, @img, @label)
143                         @alpha_anim.on_finished { @alpha_anim = nil }
144                 end
145
146                 def on_hide
147                         @objects.each { |o| o.hide }
148
149                         @alpha_anim && @alpha_anim.delete
150                         @alpha_anim = nil
151                 end
152
153                 def on_delete
154                         @objects.each { |o| o.delete }
155                         @objects.clear
156
157                         @alpha_anim && @alpha_anim.delete
158
159                         @img = @label = @alpha_anim = nil
160                 end
161
162                 def on_move(x, y)
163                         @objects.each { |o| o.move(x, y) }
164
165                         @label.center(self)
166                 end
167
168                 def on_resize(w, h)
169                         @img.resize(w, h)
170                 end
171         end
172
173         class Container < Evas::Smart
174                 class ContainerError < StandardError; end
175                 class ContainerFullError < ContainerError; end
176                 class ContainerLockedError < ContainerError; end
177
178                 include Enumerable
179
180                 def initialize(evas)
181                         super
182
183                         @bg = Evas::Rectangle.new(evas)
184                         @bg.set_color(0, 0, 0, 255)
185
186                         add_member(@bg)
187
188                         @icons = []
189                         @animators = []
190
191                         @about_to_add = 0
192                         @add_lock_count = 0
193                 end
194
195                 def each
196                         @icons.compact.each { |i| yield i }
197                 end
198
199                 def <<(i)
200                         Kernel.raise(ContainerFullError) if slots_left.zero?
201                         Kernel.raise(ContainerLockedError) unless @add_lock_count.zero?
202
203                         i.move_relative(self, 0, 0)
204                         i.slot = next_slot
205                         i.clip = self
206                         i.show
207
208                         # check whether we need to need to move this icon
209                         if slots_left == 1
210                                 @icons[i.slot] = i
211                                 return
212                         end
213
214                         movement = Main.instance.icon_height * (slots_left - 1)
215
216                         @about_to_add += 1
217
218                         move_time = 0.25 * slots_left
219                         @animators << MoveAnimator.new(move_time, movement, i)
220
221                         @animators.last.on_finished do |ani|
222                                 @animators.delete(ani)
223                                 @icons[i.slot] = i
224
225                                 @about_to_add -= 1
226                         end
227                 end
228
229                 def delete(icon)
230                         i = @icons.index(icon)
231                         return (block_given? ? yield : nil) if i.nil?
232
233                         delete_at(i)
234                 end
235
236                 def delete_at(i)
237                         Kernel.raise(ContainerLockedError) unless @about_to_add.zero?
238                         Kernel.raise(ContainerLockedError) unless @add_lock_count.zero?
239
240                         # icons that are placed above the one that's deleted need
241                         # to be moved
242                         ar = @icons[(i + 1)..-1]
243
244                         @icons[i].delete
245                         @icons.delete_at(i)
246
247                         return if ar.empty?
248
249                         @add_lock_count += 1
250
251                         @animators << MoveAnimator.new(2, Main.instance.icon_height, *ar)
252                         @animators.last.on_finished do |ani|
253                                 @animators.delete(ani)
254                                 @add_lock_count -= 1
255                         end
256                 end
257
258                 # smart callbacks
259                 def on_show
260                         @bg.show
261                 end
262
263                 def on_hide
264                         @bg.hide
265                 end
266
267                 def on_delete
268                         @bg.delete
269                         @bg = nil
270                 end
271
272                 def on_move(x, y)
273                         @bg.move(x, y)
274                 end
275
276                 def on_resize(w, h)
277                         @bg.resize(w, h)
278                 end
279
280                 private
281                 def slots_left
282                         MAX_ICONS - @icons.nitems - @about_to_add
283                 end
284
285                 def next_slot
286                         @icons.nitems + @about_to_add
287                 end
288         end
289
290         class Main < Ecore::Evas::SoftwareX11
291                 include Singleton
292
293                 attr_reader :container
294
295                 def initialize
296                         super
297
298                         self.title = "Embrace"
299                         self.borderless = true
300
301                         @icon_dim = IO.read(ICON_FILE, 8, 16).unpack("NN")
302
303                         on_resize { @container.resize(*geometry[2, 3]) }
304
305                         @container = Container.new(evas)
306                         @container.move(0, 0)
307                         @container.layer = -1
308                         @container.show
309
310                         size = [@icon_dim.first, icon_height * MAX_ICONS]
311                         resize(*size)
312                         set_size_min(*size)
313                         set_size_max(*size)
314
315                         evas.font_path_append("/usr/lib/X11/fonts/TTF")
316
317                         @handlers = [
318                                 Ecore::EventHandler.new(IMAP::MailboxStatusEvent,
319                                                         &method(:on_mailbox_status)),
320                                 Ecore::EventHandler.new(IMAP::FinishedEvent,
321                                                         &method(:on_finished))
322                         ]
323
324                         s = File.expand_path("~/.e/apps/embrace/config.yaml")
325                         @config = YAML.load(File.read(s))
326
327                         @server = nil
328                         @timer = Ecore::Timer.new(30, &method(:on_timer))
329                         on_timer
330                 end
331
332                 def icon_height
333                         @icon_dim.last
334                 end
335
336                 def run
337                         Ecore.main_loop_begin
338                 end
339
340                 private
341                 def add_icon(name)
342                         @container << MailboxIcon.new(evas, name)
343                 end
344
345                 def on_timer
346                         return unless @server.nil?
347
348                         @server = IMAP::Session.new(@config)
349
350                         true
351                 end
352
353                 def on_mailbox_status(ev)
354                         md = ev.name.match(/^Lists.(.+)$/)
355                         if md.nil?
356                                 lbl = ev.name
357                         else
358                                 lbl = md.captures.first
359                         end
360
361                         found = @container.find { |i| i.label == lbl }
362
363                         begin
364                                 if ev.count.zero?
365                                         unless found.nil?
366                                                 #puts "removing icon #{lbl}"
367                                                 @container.delete(found)
368                                         else
369                                                 #puts "count == 0, but icon not found (#{lbl})"
370                                         end
371                                 elsif found.nil?
372                                         #puts "adding icon #{lbl}"
373                                         add_icon(lbl)
374                                 else
375                                         #puts "count > 0, but already there (#{lbl})"
376                                 end
377                         rescue Exception => e
378                                 puts e.message
379                         end
380
381                         false
382                 end
383
384                 def on_finished(ev)
385                         @server = nil
386                 end
387         end
388 end
389
390 Embrace::Main.instance.show
391 Embrace::Main.instance.run