Class: Maatkit::SlaveFind

Inherits:
Object
  • Object
show all
Defined in:
lib/maatkit-ruby/mk-slave-find.rb

Overview

Find and print replication hierarchy tree of MySQL slaves.

Maatkit::SlaveFind.new( array, str, array)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSlaveFind

Returns a new SlaveFind Object



41
42
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 41

def initialize()
end

Instance Attribute Details

#ask_passObject

FALSE



15
16
17
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 15

def ask_pass
  @ask_pass
end

#charsetObject

(No # value)



16
17
18
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 16

def charset
  @charset
end

#configObject

/etc/maatkit/maatkit.conf,/etc/maatkit/mk_slave_find.conf,/home/joel/.maatkit.conf,/home/joel/.mk_slave_find.conf



17
18
19
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 17

def config
  @config
end

#databaseObject

FALSE



18
19
20
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 18

def database
  @database
end

#defaults_fileObject

(No # value)



19
20
21
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 19

def defaults_file
  @defaults_file
end

#helpObject

TRUE



20
21
22
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 20

def help
  @help
end

#hostObject

(No # value)



21
22
23
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 21

def host
  @host
end

#passwordObject

(No # value)



22
23
24
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 22

def password
  @password
end

#path_to_mk_slave_findObject

Sets the executable path, otherwise the environment path will be used.



36
37
38
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 36

def path_to_mk_slave_find
  @path_to_mk_slave_find
end

#pidObject

(No # value)



23
24
25
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 23

def pid
  @pid
end

#portObject

(No # value)



24
25
26
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 24

def port
  @port
end

#recurseObject

FALSE



25
26
27
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 25

def recurse
  @recurse
end

#recursion_methodObject

(No # value)



26
27
28
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 26

def recursion_method
  @recursion_method
end

#report_formatObject

summary



27
28
29
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 27

def report_format
  @report_format
end

#set_varsObject

wait_timeout=10000



28
29
30
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 28

def set_vars
  @set_vars
end

#socketObject

(No # value)



29
30
31
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 29

def socket
  @socket
end

#userObject

(No # value)



30
31
32
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 30

def user
  @user
end

#versionObject

FALSE



31
32
33
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 31

def version
  @version
end

Instance Method Details

#start(options = nil) ⇒ Object

Execute the command



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/maatkit-ruby/mk-slave-find.rb', line 47

def start(options = nil)
  tmp = Tempfile.new('tmp')
  command = option_string() + options.to_s + " 2> " + tmp.path
  success = system(command)
  if success
    begin
      while (line = tmp.readline)
        line.chomp
        selected_string = line
      end
    rescue EOFError
      tmp.close
    end
    return selected_string
  else
    tmp.close!
    return success
  end
end