lib/middleman/vendor/gems/gems/templater-1.0.0/lib/templater/cli/generator.rb



module Templater
  
  module CLI
    
    class Generator

      def initialize(generator_name, generator_class, destination_root, name, version)
        @generator_name = generator_name
        @destination_root = destination_root
        @generator_class = generator_class
        @name = name
        @version = version
      end

      def version
        puts @version
        exit
      end

      # outputs a helpful message and quits
      def help
        puts "Usage: #{@name} #{@generator_name} [options] [args]"
        puts ''
        puts @generator_class.desc
        puts ''
        puts @options[:opts]
        puts ''
        exit
      end

      def run(arguments)
        generator_class = @generator_class # FIXME: closure wizardry, there has got to be a better way than this?
        
        @options = Templater::CLI::Parser.parse(arguments) do |opts, options|
          opts.separator "Options specific for this generator:"
          # the reason this is reversed is so that the 'main' generator will always have the last word
          # on the description of the option
          generator_class.generators.reverse.each do |generator|
            # Loop through this generator's options and add them as valid command line options
            # so that they show up in help messages and such
            generator.options.each do |option|
              name = option.name.to_s.gsub('_', '-')
              if option.options[:as] == :boolean
                opts.on("--#{name}", option.options[:desc]) do |s|
                  options[option.name] = s
                end
              else
                opts.on("--#{name}=value", option.options[:desc]) do |s|
                  options[option.name] = s.gsub('-', '_').to_sym
                end
              end
            end
          end
        end

        self.help if @options[:help]
        self.version if @options[:version]

        # Try to instantiate a generator, if the arguments to it were incorrect: show a help message
        begin
          @generator = @generator_class.new(@destination_root, @options, *arguments)
        rescue Templater::ArgumentError => e
          if @options[:debug]
            raise e
          else
            self.help
          end
        end

        if @options[:pretend] 
          puts "Generating with #{@generator_name} generator (just pretending):"
        else
          puts "Generating with #{@generator_name} generator:" 
        end
        step_through_templates

        # Run hooks
        @generator.after_run
        @generator.after_generation unless @options[:delete]
        @generator.after_deletion   if     @options[:delete]
      end

      def step_through_templates
        @generator.all_actions.each do |action|
          if @options[:delete]
            action.revoke! unless @options[:pretend]
            say_status('deleted', action, :red)
          else
            if action.identical?
              say_status('identical', action, :blue)
            elsif action.exists?
              if @options[:force]
                action.invoke! unless @options[:pretend]
                say_status('forced', action, :yellow)
              elsif @options[:skip]
                say_status('skipped', action, :yellow)
              else
                say_status('conflict', action, :red)
                conflict_menu(action)
              end
            else
              action.invoke! unless @options[:pretend]
              say_status('added', action, :green)
            end
          end
        end
      end

      protected

      def conflict_menu(template)
        choose do |menu|
          menu.prompt = "How do you wish to proceed with this file?"

          menu.choice(:skip) do
            say("Skipped file")
          end
          menu.choice(:overwrite) do
            say("Overwritten")
            template.invoke! unless @options[:pretend]
          end
          menu.choice(:render) do
            puts "Rendering " + template.relative_destination
            puts ""
            # outputs each line of the file with the row number prepended
            template.render.to_lines.each_with_index do |line, i|
              puts((i+1).to_s.rjust(4) + ':  ' + line)
            end
            puts ""
            puts ""
            conflict_menu(template)
          end
          menu.choice(:diff) do
            puts "Showing differences for " + template.relative_destination
            puts ""

            diffs = Diff::LCS.diff(::File.read(template.destination).to_s.to_lines, template.render.to_lines).first

            diffs.each do |diff|
              output_diff_line(diff)
            end

            puts ""
            puts ""
            conflict_menu(template)
          end
          menu.choice(:abort) do
            say("Aborted!")
            exit
          end
        end
      end

      def say_status(status, template, color = nil)
        status_flag = "[#{status.to_s.upcase}]".rjust(12)
        if color and not @options[:no_color]
          say "<%= color('#{status_flag}', :#{color}) %>  " + template.relative_destination
        else
          say "#{status_flag}  " + template.relative_destination
        end
      end

      def output_diff_line(diff)
        case diff.action
        when '-'
          say "<%= color( %(-  #{diff.element.chomp}), :red) %>"
        when '+'
          say "<%= color( %(+  #{diff.element.chomp}), :green) %>"
        else
          say "#{diff.action}  #{diff.element.chomp}"
        end
      end
    end
  end
end