Class: SiSU_AO_BookIndex::BookIndex

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

Instance Method Summary collapse

Constructor Details

#initialize(md, data, env = nil) ⇒ BookIndex

Returns a new instance of BookIndex.



57
58
59
60
61
62
63
# File 'lib/sisu/ao_idx.rb', line 57

def initialize(md,data,env=nil)
  @md,@data,@env=md,data,env
  @rgx_idx=/#{Mx[:idx_o]}(?:.+?)#{Mx[:idx_c]}\s*/
  @rgx_idx_ocn_seg=/(.+?)~(\d+)~(\S+)/
  @rgx_idx_ocn=/(.+?)~(\d+)/
  @env ||=SiSU_Env::InfoEnv.new(@md.fns)
end

Instance Method Details

#clean_and_insert_index(data, sisu_markup_idx) ⇒ Object



400
401
402
403
404
405
406
407
408
409
410
411
412
# File 'lib/sisu/ao_idx.rb', line 400

def clean_and_insert_index(data,sisu_markup_idx)
  tuned_file=[]
  data.each do |dob|
    tuned_file << dob
    if dob.obj =~/#{Mx[:br_endnotes]}/ \
    and sisu_markup_idx
      sisu_markup_idx.each do |idx|
        tuned_file << idx
      end
    end
  end
  tuned_file
end

#clean_index(data) ⇒ Object

check on use of dob



413
414
415
416
417
# File 'lib/sisu/ao_idx.rb', line 413

def clean_index(data)                                  #check on use of dob
  data.each.map do |para|
    para.gsub(/\n*#{@rgx_idx}/m,'')
  end
end

#clean_xml(str) ⇒ Object



168
169
170
171
# File 'lib/sisu/ao_idx.rb', line 168

def clean_xml(str)
  str=str.gsub(/&/,'&amp;')
  str
end

#construct_book_index(idx_array) ⇒ Object



125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/sisu/ao_idx.rb', line 125

def construct_book_index(idx_array)
  the_idx={}
  idx_array.each do |idx|
    idx[:idx].each_pair do |term,term_info|
      location=(term_info[:plus].to_i > 0) \
      ? (%{#{idx[:ocn]}-#{idx[:ocn].to_i + term_info[:plus].to_i}})
      : idx[:ocn].to_s
      the_idx[term]={} \
        unless the_idx[term] \
        and defined? the_idx[term]
      the_idx[term]['node_0_terms']=[] \
        unless the_idx[term]['node_0_terms'] \
        and defined? the_idx[term]['node_0_terms']
      the_idx[term]['node_0_terms'] << { ocn: idx[:ocn], range: location, seg: idx[:seg] }
      if term_info[:sub].is_a?(Array) \
      and term_info[:sub].length > 0
        term_info[:sub].each do |y|
          y.each_pair do |subterm,subterm_info|
            location=(subterm_info[:plus].to_i > 0) \
            ? (%{#{idx[:ocn]}-#{idx[:ocn].to_i + subterm_info[:plus].to_i}})
            : idx[:ocn].to_s
            the_idx[term]={} \
              unless the_idx[term] \
              and defined? the_idx[term]
            the_idx[term]['node_0_terms']=[] \
              unless the_idx[term]['node_0_terms']\
              and    defined? the_idx[term]['node_0_terms']
            the_idx[term]['node_1_subterms']={} \
              unless the_idx[term]['node_1_subterms'] \
              and defined? the_idx[term]['node_1_subterms']
            the_idx[term]['node_1_subterms'][subterm]=[] \
              unless the_idx[term]['node_1_subterms'][subterm] \
              and defined? the_idx[term]['node_1_subterms'][subterm]
            the_idx[term]['node_1_subterms'][subterm] <<
              { ocn: idx[:ocn], range: location, seg: idx[:seg] }
          end
        end
      end
    end
  end
  the_idx=the_idx.sort
  the_idx
end

#extract_book_index(data) ⇒ Object



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
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/sisu/ao_idx.rb', line 84

def extract_book_index(data)
  tuned_file=[]
  idx_array=[]
  data.each do |dob|
    if (dob.is ==:heading \
    || dob.is ==:heading_insert) \
    && dob.ln==4
      @seg=dob.name
    end
    if defined? dob.idx \
    and dob.idx.is_a?(Hash)
      idx_array << {
        idx: dob.idx,
        ocn: dob.ocn,
        seg: @seg
      }
    end
    tuned_file << dob if dob
  end
  if idx_array.length > 0
    the_idx=construct_book_index(idx_array)
    if @md.book_idx
      idx=index(the_idx)
      sisu_markup_idx_rel,sisu_markup_idx_rel_html_seg,html_idx,  xhtml_idx=
        idx[:sst_rel],    idx[:sst_rel_html_seg],      idx[:html],idx[:xhtml]
    else
      sisu_markup_idx_rel=
        sisu_markup_idx_rel_html_seg=
        html_idx=
        xhtml_idx=
        nil
    end
  end
  [
    tuned_file,
    sisu_markup_idx_rel,
    sisu_markup_idx_rel_html_seg,
    html_idx,
    xhtml_idx,
  ]
end

#index(the_idx) ⇒ Object



172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'lib/sisu/ao_idx.rb', line 172

def index(the_idx)
  @x=1
  idx={}
  idx[:sst_rel_html_seg],idx[:sst_rel],idx[:html],idx[:xhtml]=
    [],                  [],           [],        []
  h={
    obj: Mx[:br_page]
  }
  o=SiSU_AO_DocumentStructure::ObjectLayout.new.break(h)
  idx[:sst_rel_html_seg] << o
  idx[:sst_rel] << o
  h={
    lv: '1',
    name: 'index',
    obj: "Index"
  }
  o=SiSU_AO_DocumentStructure::ObjectHeading.new.heading(h)
  idx[:sst_rel_html_seg] << o
  idx[:sst_rel] << o
  h={
    lv: '4',
    name: 'idx',
    obj: " [Index] #{Mx[:pa_non_object_dummy_heading]}"
  }
  o=SiSU_AO_DocumentStructure::ObjectHeading.new.heading(h)
  idx[:sst_rel_html_seg] << o
  idx[:sst_rel] << o
  alph=%W[9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]
  idx[:html] << '<p>'
  idx[:xhtml] << '<p>'
  alph.each do |x|
    if x =~/[0-9]/
      idx[:html] << ''
      idx[:xhtml] << ''
    else
      idx[:html] <<
        %{<a href="##{x}">#{x}</a>,#{$ep[:hsp]}}
      idx[:xhtml] <<
        %{<a href="##{x.downcase}">#{x}</a>,#{$ep[:hsp]}}
    end
  end
  idx[:html] << '</p>'
  idx[:xhtml] << '</p>'
  letter=alph.shift
  idx[:html] <<
    %{\n<p class="book_index_lev1"><a name="numeral"></a></p>}
  idx[:xhtml] <<
    %{\n<p class="letter" id="numeral">0 - 9</p>}
  the_idx.each do |i|
    i.each do |x|
      if x.is_a?(String)
        f=/^(\S)/.match(x)[1]
        if letter < f
          while letter < f
            if alph.length > 0
              letter=alph.shift
              idx[:html] <<
                %{\n<p class="letter"><a name="#{letter}">#{letter}</a></p><p class="book_index_lev1"><a name="#{letter.downcase}"> </a></p>}
              idx[:xhtml] <<
                %{\n<p class="letter" id="#{letter.downcase}">#{letter}</p>}
            else break
            end
          end
        end
        idx[:sst_rel_html_seg] <<
          %{\n\n#{Mx[:fa_bold_o]}#{x},#{Mx[:fa_bold_c]} }
        idx[:sst_rel] <<
          %{\n\n#{Mx[:fa_bold_o]}#{x},#{Mx[:fa_bold_c]} }
        aname=x.gsub(/\s+/,'_')
        idx[:html] <<
          %{\n<p class="book_index_lev1"><a name="#{aname}"><b>#{x}</b></a>, }
        c=clean_xml(x.dup)
        idx[:xhtml] <<
          %{\n<p class="book_index_lev1"><b>#{c}</b>, }
        @o=idx[:sst_rel_html_seg].index(idx[:sst_rel_html_seg].last)
        @t=idx[:sst_rel].index(idx[:sst_rel].last)
        @q=idx[:html].index(idx[:html].last)
        @r=idx[:xhtml].index(idx[:xhtml].last)
        print "\n" + x + ', ' if @md.opt.act[:verbose_plus][:set]==:on
      elsif x.is_a?(Array)
        p 'array error? -->'
        print x
      elsif x.is_a?(Hash)
        if x['node_0_terms'].is_a?(Array)
          x['node_0_terms'].each do |a|
            if a[:range]
              idx[:sst_rel_html_seg][@o]=
                idx[:sst_rel_html_seg][@o] +
                %{#{Mx[:lnk_o]}#{a[:range]}#{Mx[:lnk_c]}#{Mx[:rel_o]}/#{a[:seg]}.html##{a[:ocn]}#{Mx[:rel_c]}, }
              idx[:sst_rel][@t]=
                idx[:sst_rel][@t] +
                %{#{Mx[:lnk_o]}#{a[:range]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{a[:ocn]}#{Mx[:rel_c]}, }
              idx[:html][@q]=
                idx[:html][@q] +
                %{<a href="#{a[:seg]}.html##{a[:ocn]}">#{a[:range]}</a>, }
              idx[:xhtml][@q]=
                idx[:xhtml][@q] +
                %{<a href="#{a[:seg]}.xhtml#o#{a[:ocn]}">#{a[:range]}</a>, }
              print a[:range] + ', ' if @md.opt.act[:verbose_plus][:set]==:on
            elsif a[:ocn]
              idx[:sst_rel_html_seg][@o]=
                idx[:sst_rel_html_seg][@o] +
                %{#{Mx[:lnk_o]}#{a[:ocn]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{a[:seg]}.html##{a[:ocn]}#{Mx[:rel_c]}, }
              idx[:sst_rel][@t]=
                idx[:sst_rel][@t] +
                %{#{Mx[:lnk_o]}#{a[:ocn]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{a[:ocn]}#{Mx[:rel_c]}, }
              idx[:html][@q]=
                idx[:html][@q] +
                %{<a href="#{a[:seg]}.html##{a[:ocn]}">#{a[:ocn]}</a>, }
              idx[:xhtml][@q]=
                idx[:xhtml][@q] +
                %{<a href="#{a[:seg]}.xhtml#o#{a[:ocn]}">#{a[:ocn]}</a>, }
              print a[:ocn] + ', ' if @md.opt.act[:verbose_plus][:set]==:on
            else p 'error'
            end
          end
          idx[:html][@q]=idx[:html][@q] + '</p>'
          idx[:xhtml][@r]=idx[:xhtml][@r] + '</p>'
        end
        if x['node_1_subterms']
         x['node_1_subterms'].sort.each do |k,y|
            if k !~/node_0_terms/
              idx[:sst_rel_html_seg][@o]=
                idx[:sst_rel_html_seg][@o] +
                %{#{k}, }
              idx[:sst_rel][@t]=
                idx[:sst_rel][@t] +
                %{#{k}, }
              idx[:html][@q]=
                idx[:html][@q] +
                %{\n<p class="book_index_lev2">#{k}, }
              c=clean_xml(k.dup)
              idx[:xhtml][@r]=
                idx[:xhtml][@r] +
                %{\n<p class="book_index_lev2">#{c}, }
              print "\n\t" + k + ', ' if @md.opt.act[:verbose_plus][:set]==:on
              y.each do |z|
                if z[:range]
                  idx[:sst_rel_html_seg][@o]=
                    idx[:sst_rel_html_seg][@o] +
                    %{#{Mx[:lnk_o]}#{z[:range]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{z[:seg]}.html##{z[:ocn]}#{Mx[:rel_c]}, }
                  idx[:sst_rel][@t]=
                    idx[:sst_rel][@t] +
                    %{#{Mx[:lnk_o]}#{z[:range]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{z[:ocn]}#{Mx[:rel_c]}, }
                  idx[:html][@q]=
                    idx[:html][@q] +
                    %{<a href="#{z[:seg]}.html##{z[:ocn]}">#{z[:range]}</a>, }
                  idx[:xhtml][@q]=
                    idx[:xhtml][@q] +
                    %{<a href="#{z[:seg]}.xhtml#o#{z[:ocn]}">#{z[:range]}</a>, }
                  print z[:range] + ', ' if @md.opt.act[:verbose_plus][:set]==:on
                elsif z[:ocn]
                  idx[:sst_rel_html_seg][@o]=
                    idx[:sst_rel_html_seg][@o] +
                    %{#{Mx[:lnk_o]}#{z[:ocn]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{z[:seg]}.html##{z[:ocn]}#{Mx[:rel_c]}, }
                  idx[:sst_rel][@t]=
                    idx[:sst_rel][@t] +
                    %{#{Mx[:lnk_o]}#{z[:ocn]}#{Mx[:lnk_c]}#{Mx[:rel_o]}#{z[:ocn]}#{Mx[:rel_c]}, }
                  idx[:html][@q]=
                    idx[:html][@q] +
                    %{<a href="#{z[:seg]}.html##{z[:ocn]}">#{z[:ocn]}</a>, }
                  idx[:xhtml][@q]=
                    idx[:xhtml][@q] +
                    %{<a href="#{z[:seg]}.xhtml#o#{z[:ocn]}">#{z[:ocn]}</a>, }
                  print z[:ocn] + ', ' if @md.opt.act[:verbose_plus][:set]==:on
                else p 'error'
                end
              end
              idx[:html][@q]=idx[:html][@q] + '</p>'
              idx[:xhtml][@r]=idx[:xhtml][@r] + '</p>'
            end
          end
        end
        @x +=1
      end
    end
  end
  print "\n" if @md.opt.act[:verbose_plus][:set]==:on
  idx
end

#indexing_songObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/sisu/ao_idx.rb', line 64

def indexing_song
  data=@data
  data,
    sisu_markup_idx_rel,
    sisu_markup_idx_rel_html_seg,
    html_idx,xhtml_idx=
      extract_book_index(data)
  data=
    clean_and_insert_index(
      data,
      sisu_markup_idx_rel_html_seg
    )
  [
    data,
    sisu_markup_idx_rel,
    sisu_markup_idx_rel_html_seg,
    html_idx,
    xhtml_idx,
  ]
end

#output_idx(idx) ⇒ Object



390
391
392
393
394
395
396
397
398
399
# File 'lib/sisu/ao_idx.rb', line 390

def output_idx(idx)
  if @md.book_idx
    path="#{@env.path.output}/#{@md.fnb}"
    Dir.mkdir(path) unless FileTest.directory?(path)
    puts "#{path}/#{@md.fn[:book_idx_html]} #{__FILE__}::#{__LINE__}"
    html_index_file=File.new("#{path}/#{@md.fn[:book_idx_html]}",'w')
    idx[:html].each {|x| html_index_file << x }
    html_index_file.close
  end
end

#screen_print(the_idx) ⇒ Object



352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/sisu/ao_idx.rb', line 352

def screen_print(the_idx)
  the_idx.each do |i|
    i.each do |x|
      if x.is_a?(String)
        print "\n" + x + ', '
      elsif x.is_a?(Array)
        p 'array error? -->'
        print x
      elsif x.is_a?(Hash)
        if x['node_0_terms'].is_a?(Array)
          x['node_0_terms'].each do |a|
            if a[:range]
              print a[:range] + ', '
            elsif a[:ocn]
              print a[:ocn] + ', '
            else p 'error'
            end
          end
        end
        if x['node_1_subterms']
          x['node_1_subterms'].sort.each do |k,y|
            if k !~/node_0_terms/
              print "\n\t" + k + ', '
              y.each do |z|
                if z[:range]
                  print z[:range] + ', '
                elsif z[:ocn]
                  print z[:ocn] + ', '
                else p 'error'
                end
              end
            end
          end
        end
      end
    end
  end
end