class Utils::Editor

def activate

def activate
  edit_remote("stupid_trick#{rand}")
  sleep pause_duration
  edit_remote_send('<ESC>:bw<CR>')
end

def cmd(*parts)

def cmd(*parts)
  command = parts.compact.inject([]) do |a, p|
    case
    when p == nil, p == []
      a
    when p.respond_to?(:to_ary)
      a.concat p.to_ary
    else
      a << p.to_s
    end
  end
  $DEBUG and warn command * ' '
  system(*command.map(&:to_s))
end

def edit(*filenames)

def edit(*filenames)
  if filenames.size == 1 and
    source_location = filenames.first.source_location
  then
    edit_source_location(source_location) ||
      edit_file(expand_globs(source_location[0, 1]))
  else
    filenames =
      expand_globs(filenames.map(&:source_location).map(&:first))
    edit_file(*filenames)
  end
end

def edit_file(*filenames)

def edit_file(*filenames)
  edit_remote_file(*filenames)
end

def edit_file_linenumber(filename, linenumber)

def edit_file_linenumber(filename, linenumber)
  if wait?
    edit_remote(filename)
    sleep pause_duration
    edit_remote_send("<ESC>:#{linenumber}<CR>")
    edit_remote_wait(filename)
  else
    edit_remote(filename)
    sleep pause_duration
    edit_remote_send("<ESC>:#{linenumber}<CR>")
  end
end

def edit_remote(*args)

def edit_remote(*args)
  cmd(vim, gui, '--servername', servername, '--remote', *args)
end

def edit_remote_file(*filenames)

def edit_remote_file(*filenames)
  if gui && wait?
    edit_remote_wait(*filenames)
  else
    edit_remote(*filenames)
  end
end

def edit_remote_send(*args)

def edit_remote_send(*args)
  cmd(vim, gui, '--servername', servername, '--remote-send', *args)
end

def edit_remote_wait(*args)

def edit_remote_wait(*args)
  cmd(vim, gui, '--servername', servername, '--remote-wait', *args)
end

def edit_source_location(source_location)

def edit_source_location(source_location)
  edit_file_linenumber(source_location[0], source_location[1])
end

def ensure_running

def ensure_running
  started? ? activate : start
  self
end

def expand_globs(filenames)

def expand_globs(filenames)
  filenames.map { |f| Dir[f] }.flatten.uniq.sort.full? || filenames
end

def file_linenumber?(filename)

def file_linenumber?(filename)
  filename.match(FILE_LINENUMBER_REGEXP)
end

def fullscreen=(enabled)

def fullscreen=(enabled)
  started? or start
  sleep pause_duration
  if enabled
    edit_remote_send '<ESC>:set fullscreen<CR>'
  else
    edit_remote_send '<ESC>:set nofullscreen<CR>'
  end
  activate
end

def gui

def gui
  ENV['TERM'] =~ /xterm/ ? '-g' : nil
end

def initialize

def initialize
  self.wait           = false
  self.pause_duration = 1
  self.servername     = ENV['VIM_SERVER'] || "G#{ENV['USER'].upcase}"
  yield self if block_given?
end

def serverlist

def serverlist
  @serverlist ||= `#{vim} #{gui} --serverlist`.split
end

def start

def start
  cmd(vim, gui, '--servername', servername)
end

def started?(name = servername)

def started?(name = servername)
  serverlist.member?(name)
end

def stop

def stop
  started? and edit_remote_send('<ESC>:qa<CR>')
end

def vim

def vim
  vim_in_path = [`which gvim`, `which vim`].map(&:chomp).find(&:full?)
  @vim ||=
    case `uname -s`
    when /\Adarwin/i
      if File.directory?(path = File.expand_path('~/Applications/MacVim.app')) or
        File.directory?(path = File.expand_path('/Applications/MacVim.app'))
      then
        File.join(path, 'Contents/MacOS/Vim')
      else
        vim_in_path
      end
    else
      vim_in_path
    end
end