Class: Library

Inherits:
Object
  • Object
show all
Defined in:
lib/propane/library.rb

Overview

This class knows where to find propane libraries

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Library

Returns a new instance of Library.



11
12
13
14
# File 'lib/propane/library.rb', line 11

def initialize(name)
  @name = name
  @ruby = true
end

Instance Attribute Details

#dirObject (readonly)

Returns the value of attribute dir.



9
10
11
# File 'lib/propane/library.rb', line 9

def dir
  @dir
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/propane/library.rb', line 9

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



9
10
11
# File 'lib/propane/library.rb', line 9

def path
  @path
end

#ppathObject (readonly)

Returns the value of attribute ppath.



9
10
11
# File 'lib/propane/library.rb', line 9

def ppath
  @ppath
end

Instance Method Details

#add_binaries_to_classpathObject



68
69
70
71
72
# File 'lib/propane/library.rb', line 68

def add_binaries_to_classpath
  native_loader = NativeLoader.new
  native_loader.add_native_path(ppath)
  true
end

#exist?Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/propane/library.rb', line 47

def exist?
  path.exist?
end

#load_jarsObject



51
52
53
54
55
56
57
58
# File 'lib/propane/library.rb', line 51

def load_jars
  Dir.glob("#{dir}/*.jar").sort.each do |jar|
    require jar
  end
  return true unless native_binaries?

  add_binaries_to_classpath
end

#locateObject



16
17
18
19
20
21
22
23
24
25
# File 'lib/propane/library.rb', line 16

def locate
  return if (@path = Pathname.new(
    File.join(Propane::SKETCH_ROOT, 'library', name, "#{name}.rb")
  )).exist?
  return if (@path = Pathname.new(
    File.join(PROPANE_ROOT, 'library', name, "#{name}.rb")
  )).exist?

  locate_java
end

#locate_installed_javaObject



34
35
36
37
38
39
40
41
# File 'lib/propane/library.rb', line 34

def locate_installed_java
  unless dir.directory?
    @dir = Pathname.new(
      File.join(ENV['HOME'], '.propane', 'libraries', name, 'library')
    )
  end
  @path = dir.join(Pathname.new("#{name}.jar"))
end

#locate_javaObject



27
28
29
30
31
32
# File 'lib/propane/library.rb', line 27

def locate_java
  @dir = Pathname.new(
    File.join(Propane::SKETCH_ROOT, 'library', name)
  )
  locate_installed_java
end

#native_binaries?Boolean

Returns:

  • (Boolean)


60
61
62
63
64
65
66
# File 'lib/propane/library.rb', line 60

def native_binaries?
  native_folder = NativeFolder.new
  native = native_folder.name
  @ppath = File.join(dir, native)
  File.directory?(ppath) &&
    !Dir.glob(File.join(ppath, native_folder.extension)).empty?
end

#ruby?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/propane/library.rb', line 43

def ruby?
  path.extname == '.rb'
end