# Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'mapping/model'
require 'event/terminal'

require_relative '../error'

require_relative 'header'

require_relative 'row'
require_relative 'rows'

module Samovar
	module Output
		class UsageFormatter < Mapping::Model
			def self.print(rows, output)
				formatter = self.new(rows, output)
				
				yield formatter if block_given?
				
				formatter.print
			end
			
			def initialize(rows, output)
				@rows = rows
				@output = output
				@width = 80
				
				@terminal = Event::Terminal.for(@output)
				@terminal[:header] = @terminal.style(nil, nil, :bright)
				@terminal[:description] = @terminal.style(:blue)
				@terminal[:error] = @terminal.style(:red)
			end
			
			map(InvalidInputError) do |error|
				# This is a little hack which avoids printing out "--help" if it was part of an incomplete parse. In the future I'd prefer if this was handled explicitly.
				@terminal.puts("#{error.message} in:", style: :error) unless error.help?
			end
			
			map(MissingValueError) do |error|
				@terminal.puts("#{error.message} in:", style: :error)
			end
			
			map(Header) do |header, rows|
				@terminal.puts unless header == @rows.first
				
				command_line = header.object.command_line(header.name)
				@terminal.puts "#{rows.indentation}#{command_line}", style: :header
				
				if description = header.object.description
					@terminal.puts "#{rows.indentation}\t#{description}", style: :description
					@terminal.puts
				end
			end
			
			map(Row) do |row, rows|
				@terminal.puts "#{rows.indentation}#{row.align(rows.columns)}"
			end
			
			map(Rows) do |items|
				items.collect{|row, rows| map(row, rows)}
			end
			
			def print
				map(@rows)
			end
		end
	end
end