[English](https://github.com/fetaro/rbatch/blob/master/README.md "english") | [Japanese ](https://github.com/fetaro/rbatch/blob/master/README.ja.md "japanese") | [Document (YardDoc)](http://fetaro.github.io/rbatch/index.html) RBatch: Framework for Ruby-based Batch Script ============= About RBatch (for ver 2) -------------- RBatch is a framework for Ruby-based batch script. RBatch help to make a batch script such as "data backup" or "proccess start ". There are following functions. * Auto Logging * Auto Library Loading * Auto Mail Sending * Auto Config Reading * External Command Wrapper * Double Run Check Note: RBatch works on Ruby 1.9. Note: This software is released under the MIT License, see LICENSE.txt. Quick Start -------------- $ sudo gem install rbatch $ rbatch-init # => make directories and sample scripts $ ruby bin/hello_world.rb $ cat log/YYYYMMDD_HHMMSS_hello_world.log Overview -------------- ### RBatch home directory When you set `${RB_HOME}` environment variable, RBatch home directory is fix at `${RB_HOME}`. When you do NOT set `${RB_HOME}`, `${RB_HOME}` is the parent directory of the directory which script is located at. In other words, default of `${RB_HOME}` is `(script path)/../` . ### Directory Structure and File Naming Convention RBach has convention of file naming and directory structure. If you make a script on `${RB_HOME}/bin/hoge.rb`, libraries are `${RB_HOME}/lib/*.rb`, script's config file is `${RB_HOME}/conf/hoge.yaml` , and log file is output at `${RB_HOME}/log/YYYYMMDD_HHMMSS_hoge.log`. For example ${RB_HOME} <--- RBatch home | |- .rbatchrc <--- RBatch Run-Conf | |- bin <--- Scripts | |- A.rb | |- B.rb | |- conf <--- Config files | |- A.yaml | |- B.yaml | |- common.yaml <--- Common-Config file | |- log <--- Log files | |- YYYYMMDD_HHMMSS_A.log | |- YYYYMMDD_HHMMSS_B.log | |- lib <--- Libraries |- lib_X.rb |- lib_Y.rb ### Auto Logging Use auto logging block `RBatch::Log`, RBatch automatically output logfiles. The default location of log file is `${RB_HOME}/log/YYYYMMDD_HHMMSS_(script base).log`. If an exception is raised, then RBatch write the stack trace to the logfile. sample make script `${RB_HOME}/bin/sample1.rb` ```ruby require 'rbatch' RBatch::Log.new(){ |log| # Logging block log.info "info string" log.error "error string" raise "exception" } ``` Run script. Log file is `${RB_HOME}/log/20121020_005953_sample1.log` # Logfile created on 2012-10-20 00:59:53 +0900 by logger.rb/25413 [2012-10-20 00:59:53 +900] [INFO ] info string [2012-10-20 00:59:53 +900] [ERROR] error string [2012-10-20 00:59:53 +900] [FATAL] Caught exception; existing 1 [2012-10-20 00:59:53 +900] [FATAL] exception (RuntimeError) [backtrace] test.rb:6:in `block in
' [backtrace] /usr/local/lib/ruby192/lib/ruby/gems/1.9.1/gems/rbatch-1.0.0/lib/rbatch/auto_logger.rb:37:in `initialize' [backtrace] test.rb:3:in `new' [backtrace] test.rb:3:in `
' ### Auto Library Loading If you make libraries at `${RB_HOME}/lib/*.rb`, those files are required before script run. ### Auto Mail Sending By using `log_send_mail` option, when an error or fatal log is output in script, RBatch sends error-mail. ### Auto Config Reading If you make configuration file which is located `${RB_HOME}/conf/"(script base).yaml"`, this file is read automatically. sample make config file `${RB_HOME}/conf/sample2.yaml`. key: value array: - item1 - item2 - item3 In script `${RB_HOME}/bin/sample2.rb` , you can read config. ```ruby require 'rbatch' # You can read config value without loading file. p RBatch.config["key"] # => "value" p RBatch.config["array"] # => ["item1", "item2", "item3"] # If key does not exist, raise exception p RBatch.config["not_exist"] # => Raise RBatch::ConfigException ``` #### Common Config If you can use a common config file which is read from all scripts, you make `${RB_HOME}/conf/common.yaml`. You can change name of common config file by using option `common_conf_name`. ### External Command Wrapper RBatch provide a function which wrap external command (such as 'ls'). This function return a result object which contain command's "STDOUT", "STDERR" ,and "exit status". sample ```ruby require 'rbatch' r = RBatch.cmd("ls") p r.stdout # => "fileA\nfileB\n" p r.stderr # => "" p r.status # => 0 ``` If you want to set a timeout of external command, you can use `cmd_timeout` option. And by using `cmd_raise` option, if status of command is not 0, raise Exception. You have no use for an error handring. ### Double Run Check Using `forbid_double_run` option, two same name scripts cannot run at the same time. Manual -------------- Manual -> [Document (YardDoc)](http://fetaro.github.io/rbatch/index.html) Sample -------------- ### AWS EC2 Volume Backup Script First you make configuration file. Config File : `${RB_HOME}/conf/ec2_create_snapshot.yaml` ``` access_key : AKIAITHEXXXXXXXXX secret_key : JoqJSdP8+tpdFYWljVbG0+XXXXXXXXXXXXXXX ``` Next, you write script. Script : `${RB_HOME}/bin/ec2_create_snapshot.rb` ```ruby require 'rbatch' # <= require rbatch require 'aws-sdk' require 'net/http' RBatch::Log.new do |log| # <= Start Log block. And write main logic in this block. # get ec2 region @ec2_region = "ec2." + Net::HTTP.get("169.254.169.254", "/latest/meta-data/placement/availability-zone").chop + ".amazonaws.com" log.info("ec2 region : #{@ec2_region}") # <= Output Log #create ec2 instance @ec2 = AWS::EC2.new(:access_key_id => RBatch.config["access_key"], # <= Read Config :secret_access_key => RBatch.config["secret_key"], :ec2_endpoint => @ec2_region) # create instance @instance_id = Net::HTTP.get("169.254.169.254", "/latest/meta-data/instance-id") @instance = @ec2.instances[@instance_id] log.info("instance_id : #{@instance_id}") # create snapshots @instance.block_devices.each do | dev | desc = @instance_id + " " + dev[:device_name] + " " + dev[:ebs][:volume_id] + " " +Time.now.strftime("%Y/%m/%d %H:%M").to_s log.info("create snapshot : #{desc}") @ec2.volumes[dev[:ebs][:volume_id]].create_snapshot(desc) log.info("sucess") end end ``` Finally Run script , then following logfile is output. Log file : `${RB_HOME}/log/20140121_123124_ec2_create_snapshot.log` ``` [2014-01-21 12:31:24 -0500] [INFO ] === START RBatch === (PID=10095) [2014-01-21 12:31:24 -0500] [INFO ] RB_HOME : "/opt/MyProject" [2014-01-21 12:31:24 -0500] [INFO ] Load Run-Conf: "/opt/MyProject/.rbatchrc" [2014-01-21 12:31:24 -0500] [INFO ] Load Config : "/opt/MyProject/conf/ec2_create_snapshot.yaml" [2014-01-21 12:31:24 -0500] [INFO ] Start Script : "/opt/MyProject/bin/ec2_create_snapshot.rb" [2014-01-21 12:31:24 -0500] [INFO ] Logging Start: "/opt/MyProject/log/20140121_123124_ec2_create_snapshot.log" [2014-01-21 12:31:24 -0500] [INFO ] ec2 region : ec2.ap-northeast-1.amazonaws.com [2014-01-21 12:31:25 -0500] [INFO ] instance_id : i-cc25f1c9 [2014-01-21 12:31:25 -0500] [INFO ] create snapshot : i-cc25f1c9 /dev/sda1 vol-82483ea7 2014/01/21 12:31 [2014-01-21 12:31:25 -0500] [INFO ] sucess ``` Only you write a small code, this batch script has logging and read-config function. Customize -------------- If you want to customize RBatch, you have two methods. * (1) Write Run-Conf(`${RB_HOME}/.rbatchrc`). * (2) Pass an option object to constructor in your script. When an option is set in both (1) and (2), (2) is prior to (1). #### Customize by writing Run-Conf (.rbatchrc) Sample of RBatch Run-Conf `${RB_HOME}/.rbatchrc`. ``` # RBatch Run-Conf (.rbatchrc) # # This format is YAML. # # ------------------- # Global setting # ------------------- # Conf Directory # # Default is "/conf" # is replaced to ${RB_HOME} # #conf_dir : /config/ #conf_dir : /etc/rbatch/ # Common Config file name # # Default is "common.yaml" # #common_conf_name : share.yaml # Library Directory # # Default is "/lib" # is replaced to ${RB_HOME} # #lib_dir: /usr/local/lib/rbatch/ # Auto Library Load # # Default is true # If true, require "(library directory)/*.rb" before script run. # #auto_lib_load : true #auto_lib_load : false # Forbit Script Running Doubly # # Default is false. # If true, two same name scripts cannot run at the same time. # #forbid_double_run: true #forbid_double_run: false # Journal Message Level # # Default is 1 # If 2, put more journal messages to STDOUT. # If 0, put nothing. # Example of journal essages are follows. # [RBatch] Load Config : "../conf/hoge.yaml" # #rbatch_journal_level : 2 #rbatch_journal_level : 0 # Mix Journal Message to Logs # # Default is true. # If true, mix RBatch journal messages to log file(s) which is(are) opened at time. # #mix_rbatch_journal_to_logs : true #mix_rbatch_journal_to_logs : false # ------------------- # Log setting # ------------------- # Log Directory # # Default is "/log" # is replaced to ${RB_HOME} # #log_dir : /rb_log #log_dir : /var/log/rbatch/ # Log File Name # # Default is "_