aboutsummaryrefslogtreecommitdiff
path: root/core/logger.rb
blob: d73cd15634739d76acbd223587de50ed8e0cf0fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
module Dinobot
  module Core
    class Logger
      @@instance = nil
      @@mutex = Mutex.new

      def in(*lines)
        str = lines.join("\n")

        puts str.gsub(/^/, "\e[32m<<\e[0m ")
      end

      def out(*lines)
        str = lines.join("\n")

        puts str.gsub(/^/, "\e[36m>>\e[0m ")
      end

      def error(*lines)
        str = lines.join("\n")

        puts str.gsub(/^/, "\e[31m!!\e[0m ")
      end

      def info(*lines)
        str = lines.join("\n")

        puts str.gsub(/^/, "\e[33m==\e[0m ")
      end

      def indent(*lines)
        str = lines.join("\n")

        puts str.gsub(/^/, '   ')
      end

      class << self
        def instance
          return @@instance if @@instance

          @@mutex.synchronize do
            @@instance ||= new
          end
        end
      end

      private_class_method :allocate, :new
    end
  end
end