2 # $Id: redact.rb 53 2005-06-11 13:21:38Z tilman $
4 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
14 # The above copyright notice and this permission notice shall be
15 # included in all copies or substantial portions of the Software.
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 require "redact/program"
30 class Object # :nodoc:
35 def to_embryo(collection)
36 unless strip.length > 0
37 raise(Redact::RedactError, "invalid embryo code")
42 {"part" => collection.parts,
43 "program" => collection.programs}.each do |entity, ary|
44 s.gsub!(/#{entity.upcase}:\"(.*?)\"/) do |m|
45 found = ary.find { |(k, p)| p.name == $1 }
47 raise(Redact::RedactError,
48 "#{entity} not found - #{$1}")
62 class RedactError < StandardError; end
65 attr_reader :collections, :data, :collection_dir, :image_dir,
73 @font_dir = FontDirectory.new
74 @image_dir = ImageDirectory.new
75 @collection_dir = CollectionDirectory.new
77 @collections = Hash.new do |h, k|
78 c = Collection.new(k, h.size)
80 @collection_dir << CollectionDirectoryEntry.new(c)
87 def collection(name) # :yields: collection
88 c = @collections[name]
90 block_given? ? (yield c) : c
99 {"compiler" => ["redact"],
101 "feature_ver" => [1],
102 "font_dir" => [@font_dir, :sub],
103 "image_dir" => [@image_dir, :sub],
104 "collection_dir" => [@collection_dir, :sub],
109 class DataHash < Hash # :nodoc:
115 super(key, HashEntry.new(key, value))
119 class HashEntry # :nodoc:
120 attr_reader :key, :value
122 def initialize(key, value)
123 @key = key.to_str.dup.freeze
124 @value = value.to_str.dup.freeze
133 class FontDirectory < Array # :nodoc:
136 "Edje_Font_Directory"
139 def to_eet_properties
140 {"entries" => [self]}
144 class FontDirectoryEntry # :nodoc:
145 attr_reader :save_as, :filename, :alias
147 def initialize(fn_alias, filename)
148 @save_as = fn_alias.to_str.dup.freeze
149 @filename = filename.to_str.dup.freeze
150 @alias = "Edje." + fn_alias.sub(/.[^.]+$/, "").freeze
155 "Edje_Font_Directory_Entry"
158 def to_eet_properties
159 {"entry" => [@alias]}
163 class ImageDirectory < Array # :nodoc:
172 "Edje_Image_Directory"
175 def to_eet_properties
176 {"entries" => [self]}
180 class ImageDirectoryEntry # :nodoc:
181 attr_reader :filename, :image, :id
183 def initialize(im_alias, filename)
184 @alias = im_alias.to_str.dup.freeze
185 @filename = filename.to_str.dup.freeze
186 @image = Imlib2::Image.load(@filename)
188 @source_type = 1 # COMP
189 @source_param = 1 # COMP
194 raise(ArgumentError, "invalid ID - #{id}")
196 raise(RedactError, "ID already set")
204 "Edje_Image_Directory_Entry"
207 def to_eet_properties
208 {"entry" => [@alias],
209 "source_type" => [@source_type],
210 "source_param" => [@source_param],
215 class CollectionDirectory < Array # :nodoc:
218 "Edje_Part_Collection_Directory"
221 def to_eet_properties
222 {"entries" => [self]}
226 class CollectionDirectoryEntry # :nodoc:
228 @name = col.name.to_str.dup.freeze
234 "Edje_Part_Collection_Directory_Entry"
237 def to_eet_properties
244 attr_reader :name, :id, :data, :min, :max, :parts, :programs,
247 def initialize(name, id)
248 @name = name.to_str.dup.freeze
262 @script = v.to_str.dup
265 def part(name, type = :invalid) # :yields: part
279 "invalid part type - #{type.to_s}")
282 p = klass.new(self, @parts.size, name)
286 block_given? ? (yield p) : p
289 def program(name, type = :invalid) # :yields: program
305 "invalid program type - #{type.to_s}")
308 p = klass.new(self, @programs.size, name)
312 block_given? ? (yield p) : p
328 def has_embryo?(search_programs = true)
329 if !@script.nil? && @script.to_str.strip.length > 0
331 elsif search_programs
332 p = @programs.find do |(k, p)|
333 p.is_a?(ExecScriptProgram)
342 "Edje_Part_Collection"
345 def to_eet_properties
346 # sort parts and programs by id, since edje doesn't sort
348 parts = @parts.to_a.map { |(key, value)| value }.sort
349 programs = @programs.to_a.map { |(key, value)| value }.sort
353 "programs" => [programs],
355 "prop.min.w" => [@min[0]],
356 "prop.min.h" => [@min[1]],
357 "prop.max.w" => [@max[0]],
358 "prop.max.h" => [@max[1]]}
362 EDJE = Redact::Edje.new