Class: SiSU_Get_Init::GetInit

Inherits:
SiSU_Info_Sys_Gen::InfoSystemGen show all
Defined in:
lib/sisu/se_get_init.rb

Overview

se_info_system.rb

Direct Known Subclasses

SiSU_Env::GetInit

Constant Summary collapse

@@noyaml =
false
@@ad =
{ promo: nil, promo_list: nil, flag_promo: false }
@@sdmd =
nil

Constants inherited from SiSU_Info_Sys_Gen::InfoSystemGen

SiSU_Info_Sys_Gen::InfoSystemGen::BUNDLE, SiSU_Info_Sys_Gen::InfoSystemGen::CONCORD_MAX, SiSU_Info_Sys_Gen::InfoSystemGen::DEFAULT_DIR, SiSU_Info_Sys_Gen::InfoSystemGen::DIGEST, SiSU_Info_Sys_Gen::InfoSystemGen::IMAGES, SiSU_Info_Sys_Gen::InfoSystemGen::IMAGE_LOCAL, SiSU_Info_Sys_Gen::InfoSystemGen::IMAGE_STUB, SiSU_Info_Sys_Gen::InfoSystemGen::MULTILINGUAL, SiSU_Info_Sys_Gen::InfoSystemGen::OUTPUT_LOCAL, SiSU_Info_Sys_Gen::InfoSystemGen::PAPERSIZE, SiSU_Info_Sys_Gen::InfoSystemGen::POSTGRESQL_PORT, SiSU_Info_Sys_Gen::InfoSystemGen::POSTGRESQL_USER, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_AO, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_DIR, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_DIR_TMP_ROOT, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_ENCODING, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_GIT, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_LATEX, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_LOUT, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_PATH, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_PATH_TMP_BASE, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_POSTGRESQL, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_SQLITE, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_TEXINFO, SiSU_Info_Sys_Gen::InfoSystemGen::PROCESSING_TUNE, SiSU_Info_Sys_Gen::InfoSystemGen::SAMPLE_DATA_PATH, SiSU_Info_Sys_Gen::InfoSystemGen::SISU_ETC, SiSU_Info_Sys_Gen::InfoSystemGen::SISU_SHARE, SiSU_Info_Sys_Gen::InfoSystemGen::SQLITE_PATH, SiSU_Info_Sys_Gen::InfoSystemGen::SQLITE_PORT, SiSU_Info_Sys_Gen::InfoSystemGen::SQLITE_USER, SiSU_Info_Sys_Gen::InfoSystemGen::STYLESHEET_STUB, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_CGI, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_HOST_CGI, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_MAN, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_PATH, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_PHP, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_PORT_CGI, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_RSS, SiSU_Info_Sys_Gen::InfoSystemGen::WEBSERV_SQLITE

Instance Attribute Summary collapse

Attributes inherited from SiSU_Info_Sys_Gen::InfoSystemGen

#ad_path, #arch, #default_dir, #dir_arch, #dir_bin, #dir_sitearch, #home, #host, #hostname, #locale, #pwd, #rbver, #user, #webserv_host_cgi, #webserv_path, #webserv_port_cgi

Instance Method Summary collapse

Constructor Details

#initializeGetInit

Returns a new instance of GetInit.



66
67
68
69
70
71
72
73
74
# File 'lib/sisu/se_get_init.rb', line 66

def initialize
  super()
    @markup_dir_changed_=if @@sdmd==$sisu_document_markup_directory
      false
    else
      @@sdmd=$sisu_document_markup_directory
      true
    end
end

Instance Attribute Details

#yamlObject

Returns the value of attribute yaml.



65
66
67
# File 'lib/sisu/se_get_init.rb', line 65

def yaml
  @yaml
end

Instance Method Details

#adsObject

WORK AREA



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
# File 'lib/sisu/se_get_init.rb', line 176

def ads #WORK AREA
  tell_no_yaml='WARNING - YAML loading switched off, to enable delete the file:'
  if @markup_dir_changed_
    @ad_path=[
      "#{$sisu_document_markup_directory_base_fixed_path}/.sisu/skin/yml",
      "#{$sisu_document_markup_directory_base_fixed_path}/_sisu/skin/yml",
      "#{@@home}/.sisu/skin/yml",
      "#{@@sisu_etc}/skin/yml",
    ]
    @ad_path.each do |v|
      if @@noyaml \
      or FileTest.exist?("#{v}/noyaml")
        puts tell_no_yaml + "\n\t#{v}/noyaml\n" unless @@noyaml
        @@noyaml=true
        break
      else
        if FileTest.exist?("#{v}/list.yml")
          unless @@ad[:promo_list]
            begin
              require 'yaml'
            rescue LoadError
              SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
                error('yaml NOT FOUND (LoadError)')
            end
            @@ad[:promo_list] ||= YAML::load(File::open("#{v}/list.yml"))
          end
          @@ad[:flag_promo]=true
          break
        end
        @@ad[:flag_promo]=false
      end
    end
    @ad_path.each do |v|
      if @@noyaml \
      or FileTest.exist?("#{v}/noyaml")
        puts tell_no_yaml + "\n\t#{v}/noyaml\n" unless @@noyaml
        @@noyaml=true
        break
      else
        if FileTest.exist?("#{v}/promo.yml")
          unless @@ad[:promo]
            begin
              require 'yaml'
            rescue LoadError
              SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
                error('yaml NOT FOUND (LoadError)')
            end
            @@ad[:promo] ||= YAML::load(File::open("#{v}/promo.yml"))
          end
          @@ad[:flag_promo]=true
          break
        end
        @@ad[:flag_promo]=false
      end
    end
  end
  @@ad
end

#makefileObject



107
108
109
110
111
112
113
114
115
116
117
# File 'lib/sisu/se_get_init.rb', line 107

def makefile
  rc_path_options.each do |v|
    if FileTest.exist?("#{v}/#{makefile_name}")
      @sisu_make_path=v
      break
    end
  end
  @sisu_make_file_path=@sisu_make_path \
  ? "#{@sisu_make_path}/#{makefile_name}"
  : nil
end

#makefile_nameObject



104
105
106
# File 'lib/sisu/se_get_init.rb', line 104

def makefile_name
  S_CONF[:header_make]
end

#makefile_readObject



118
119
120
121
122
123
124
# File 'lib/sisu/se_get_init.rb', line 118

def makefile_read
  if makefile
    sisu_doc_makefile=IO.read(makefile, mode: 'r:utf-8')
    @sisu_doc_makefile=sisu_doc_makefile.split(/\s*\n\s*\n/m)
  end
  @sisu_doc_makefile
end

#rcObject



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
168
169
# File 'lib/sisu/se_get_init.rb', line 128

def rc
  if @markup_dir_changed_
    rc_path_options.each do |v|
      if @@noyaml \
      or FileTest.exist?("#{v}/noyaml")
        STDERR.puts "WARNING - YAML loading switched off, to enable delete the file:\n\t#{v}/noyaml\n\n" unless @@noyaml
        @@noyaml=true
        break
      else
        f=S_CONF[:rc_yml]
        p_f="#{v}/#{f}"
        if FileTest.exist?(p_f)
          begin
            require 'yaml'
          rescue LoadError
            SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
              error('yaml NOT FOUND (LoadError)')
          end
          @@sisurc_path=v
          @@rc=YAML::load(File::open(p_f))
          break
        end
        unless @@rc
          f='sisurc.yaml'
          p_f="#{v}/#{f}"
          if FileTest.exist?(p_f)
            begin
              require 'yaml'
            rescue LoadError
              SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
                error('yaml NOT FOUND (LoadError)')
            end
            @@sisurc_path=v
            @@rc=YAML::load(File::open(p_f))
            break
          end
        end
      end
    end
  end
  @@rc
end

#rc_pathObject



170
171
172
173
# File 'lib/sisu/se_get_init.rb', line 170

def rc_path
  rc
  @@sisurc_path
end

#rc_path_optionsObject



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/sisu/se_get_init.rb', line 79

def rc_path_options
  v=SiSU_Env::InfoVersion.instance.get_version
  [
    $sisu_document_markup_directory_base_fixed_path \
    + '/.sisu/v' \
    + v.version_major,
    $sisu_document_markup_directory_base_fixed_path \
    + '/.sisu',
    $sisu_document_markup_directory_base_fixed_path \
    + '/_sisu/v' \
    + v.version_major,
    $sisu_document_markup_directory_base_fixed_path \
    + '/_sisu',
    @@home \
    + '/.sisu/v' \
    + v.version_major,
    @@home \
    + '/.sisu', \
    @@sisu_etc \
    + '/v' \
    + v.version_major,
    @@sisu_etc,
  ]
end

#sisu_document_makeObject



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/sisu/se_get_init.rb', line 103

def sisu_document_make
  def makefile_name
    S_CONF[:header_make]
  end
  def makefile
    rc_path_options.each do |v|
      if FileTest.exist?("#{v}/#{makefile_name}")
        @sisu_make_path=v
        break
      end
    end
    @sisu_make_file_path=@sisu_make_path \
    ? "#{@sisu_make_path}/#{makefile_name}"
    : nil
  end
  def makefile_read
    if makefile
      sisu_doc_makefile=IO.read(makefile, mode: 'r:utf-8')
      @sisu_doc_makefile=sisu_doc_makefile.split(/\s*\n\s*\n/m)
    end
    @sisu_doc_makefile
  end
  self
end

#sisu_yamlObject



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
168
169
170
171
172
173
174
175
# File 'lib/sisu/se_get_init.rb', line 127

def sisu_yaml
  def rc
    if @markup_dir_changed_
      rc_path_options.each do |v|
        if @@noyaml \
        or FileTest.exist?("#{v}/noyaml")
          STDERR.puts "WARNING - YAML loading switched off, to enable delete the file:\n\t#{v}/noyaml\n\n" unless @@noyaml
          @@noyaml=true
          break
        else
          f=S_CONF[:rc_yml]
          p_f="#{v}/#{f}"
          if FileTest.exist?(p_f)
            begin
              require 'yaml'
            rescue LoadError
              SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
                error('yaml NOT FOUND (LoadError)')
            end
            @@sisurc_path=v
            @@rc=YAML::load(File::open(p_f))
            break
          end
          unless @@rc
            f='sisurc.yaml'
            p_f="#{v}/#{f}"
            if FileTest.exist?(p_f)
              begin
                require 'yaml'
              rescue LoadError
                SiSU_Utils::CodeMarker.new(__LINE__,__FILE__,:fuchsia).
                  error('yaml NOT FOUND (LoadError)')
              end
              @@sisurc_path=v
              @@rc=YAML::load(File::open(p_f))
              break
            end
          end
        end
      end
    end
    @@rc
  end
  def rc_path
    rc
    @@sisurc_path
  end
  self
end

#texObject



75
76
77
78
# File 'lib/sisu/se_get_init.rb', line 75

def tex
  require_relative 'texpdf_parts'                        # texpdf_parts.rb
  @@tx ||=SiSU_Parts_TeXpdf::TeX.new
end