Class: SiSU_DigestView::Source

Inherits:
Object
  • Object
show all
Defined in:
lib/sisu/digests.rb

Direct Known Subclasses

Scroll

Defined Under Namespace

Classes: Scroll

Constant Summary collapse

@@dg =
nil

Instance Method Summary collapse

Constructor Details

#initialize(opt) ⇒ Source

Returns a new instance of Source.



63
64
65
66
67
68
69
70
# File 'lib/sisu/digests.rb', line 63

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

Instance Method Details

#readObject



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/sisu/digests.rb', line 71

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