Class: Pione::System::Init

Inherits:
Object
  • Object
show all
Defined in:
lib/pione/system/init.rb

Instance Method Summary collapse

Instance Method Details

#initObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/pione/system/init.rb', line 4

def init
  # turn on "abort on exception" mode
  Thread.abort_on_exception = true

  # load configration file for global system
  Global::Config.load(Global.config_path)

  # make temporary directories
  unless Global.temporary_directory.exist?
    Global.temporary_directory.mkdir(0777)
  end

  # setup default temporary path generator
  Temppath.update_basedir(Global.my_temporary_directory + "others_%s" % Util::UUID.generate)

  # make file cache directory
  unless Global.file_cache_directory.exist?
    Global.file_cache_directory.mkdir(0777)
  end

  # make my file cache directory
  unless Global.file_cache_directory.exist?
    Global.file_cache_directory.mkdir(0777)
  end

  # create system logger for starting on free context
  Global.system_logger
end