Class: Pakman::Templater

Inherits:
Object
  • Object
show all
Includes:
LogUtils::Logging
Defined in:
lib/pakman/templater.rb

Instance Method Summary collapse

Constructor Details

#initialize(old_logger_do_not_use = nil) ⇒ Templater

todo/fix: remove logger from c’tor use logutils instead



11
12
13
14
15
# File 'lib/pakman/templater.rb', line 11

def initialize( old_logger_do_not_use=nil )
  if old_logger_do_not_use != nil
       puts "*** depreciated API call [Pakman::Templater.initialize] - do NOT pass in logger; no longer required/needed; logger arg will get removed"
  end
end

Instance Method Details

#merge_pak(manifestsrc, pakpath, binding, name) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/pakman/templater.rb', line 18

def merge_pak( manifestsrc, pakpath, binding, name )

  start = Time.now
  
  pakname = Pakman.pakname_from_file( manifestsrc )

  puts "Merging template pack '#{pakname}'"

  # todo: rename to load_file once depreated API got removed
  manifest = Manifest.load_file_v2( manifestsrc )

  manifest.each do |entry|
    dest   = entry[0]
    source = entry[1]
    
    if dest =~ /__file__/   # replace w/ name
      dest = dest.gsub( '__file__', name )
    end
    
    # get full (absolute) path and make sure path exists
    destfull = File.expand_path( dest, pakpath )
    destpath = File.dirname( destfull )
    FileUtils.makedirs( destpath ) unless File.directory?( destpath )

    logger.debug "destfull=>#{destfull}<"
    logger.debug "destpath=>#{destpath}<"
 
    if source =~ /\.erb\.|.erb$/
      puts "  Merging to #{dest}..."

      out = File.new( destfull, 'w+' )
      out << Template.new( source ).render( binding )
      out.flush
      out.close
    else
      puts "  Copying to #{dest} from #{source}..."
      
      FileUtils.copy( source, destfull )
    end
  end # each entry in manifest
  
  puts "Done (in #{Time.now-start} s)."
end