module Deamons # Simple process to add wash trades to a market in order to simulate trade matching for QA and dev class WashTrade require 'utils' def initialize(api, market, freq) @api = api @market = market @freq = freq Process.fork do Process.daemon(true) pid = Process.pid redirect("#{pid}.outfile","#{pid}.errfile") write_pid_file(pid, "#{pid}.pid") start end puts "SimBot started on #{market} @ freq #{freq}" end def start count = 0 loop do vol = rand(0.2...3) price = Utils.quote(@market) @api.post_order(@market, price, vol, 'sell') delay = (1.00 / @freq) sleep(delay) @api.post_order(@market, price, vol, 'buy') puts "order ##{count} placed" count += 1 end rescue ::StandardError => e puts e end # Attempts to write the pid of the forked process to the pid file. def write_pid_file(pid, pidfile) File.open pidfile, "w" do |f| f.write pid end rescue ::Exception => e $stderr.puts "While writing the PID to file, unexpected #{e.class}: #{e}" Process.kill "HUP", pid end # Send stdout and stderr to log files for the child process def redirect(outfile, errfile) $stdin.reopen '/dev/null' out = File.new outfile, "a" err = File.new errfile, "a" $stdout.reopen out $stderr.reopen err $stdout.sync = $stderr.sync = true end end end