class SiSU_DigestView::Source

Public Class Methods

new(opt) click to toggle source
# File lib/sisu/digests.rb, line 61
def initialize(opt)
  @opt=opt
  @fnb=@opt.fnb
  @@endnotes_para=[]
  @@dg=nil
  @dg=@@dg ||=SiSU_Env::InfoEnv.new.digest(opt).type
  @particulars=SiSU_Particulars::CombinedSingleton.instance.get_all(opt)
end

Public Instance Methods

read() click to toggle source
# File lib/sisu/digests.rb, line 69
def read
  begin
    @env,@md,@ao_array=@particulars.env,@particulars.md,@particulars.ao_array
    unless @opt.act[:quiet][:set]==:on
      tool=(@opt.act[:verbose][:set]==:on \
      || @opt.act[:verbose_plus][:set]==:on \
      || @opt.act[:maintenance][:set]==:on) \
      ? "#{@env.program.text_editor} file://#{@md.file.output_path.hash_digest.dir}/#{@md.file.base_filename.hash_digest}"
      : "[#{@opt.f_pth[:lng_is]}] #{@opt.fno}"
      (@opt.act[:verbose][:set]==:on \
      || @opt.act[:verbose_plus][:set]==:on \
      || @opt.act[:maintenance][:set]==:on) \
      ? SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          "Document #{@dg} Digests",
          tool
        ).green_hi_blue
      : SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          "Document #{@dg} Digests",
          tool
        ).green_title_hi
      if @opt.act[:verbose_plus][:set]==:on \
      or @opt.act[:maintenance][:set]==:on
        SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          @opt.fns,
          "file://#{@md.file.output_path.hash_digest.dir}/#{@md.file.base_filename.hash_digest}"
        ).flow
      end
    end
    if SiSU_Env::SystemCall.new.openssl
      SiSU_DigestView::Source::Scroll.new(@particulars).songsheet
    else
      SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).error('*EXITED* hash digests will not run without openssl')
    end
  rescue
    SiSU_Errors::Rescued.new($!,$@,@opt.selections.str,@opt.fns).location do
      __LINE__.to_s + ':' + __FILE__
    end
  ensure
  end
end