1 2 3 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 114 115 116 117 118 119 120 121 122 123 124 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 168 169 170 171 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 352 353
|
# Copyright (C) 2005-2024 Ruby-GNOME Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require 'pathname'
require 'English'
require 'thread'
require 'glib2/deprecatable'
module GLib
module_function
def check_binding_version?(major, minor, micro)
BINDING_VERSION[0] > major ||
(BINDING_VERSION[0] == major &&
BINDING_VERSION[1] > minor) ||
(BINDING_VERSION[0] == major &&
BINDING_VERSION[1] == minor &&
BINDING_VERSION[2] >= micro)
end
def exit_application(exception, status)
msg = exception.message || exception.to_s
msg = exception.class.to_s if msg == ""
backtrace = exception.backtrace || []
first_line = backtrace.shift
if first_line
$stderr.puts("#{first_line}: #{msg}")
else
$stderr.puts(msg)
end
backtrace.each do |v|
$stderr.puts("\t from #{v}")
end
exit(status)
end
def __add_one_arg_setter(klass)
# for Instance methods.
method_names = klass.instance_methods(false)
method_names.each do |method_name|
next if /\Aset_/ !~ method_name
property_name = $POSTMATCH
next if klass.method_defined?("#{property_name}=")
next if klass.instance_method(method_name).arity != 1
begin
klass.module_eval("def #{property_name}=(val); set_#{property_name}(val); val; end\n")
rescue SyntaxError
if $DEBUG
$stderr.puts "Couldn't create #{klass}\##{property_name}=(v)."
end
end
end
# for Class methods/Module functions.
if klass.method(:methods).arity == -1
method_names = klass.methods(false)
else
method_names = klass.methods
end
singleton_klass = (class << klass; self; end)
method_names.each do |method_name|
next if /\Aset_/ !~ method_name
property_name = $POSTMATCH
next if singleton_klass.method_defined?("#{property_name}=")
next if klass.method(method_name).arity != 1
begin
klass.module_eval("def self.#{property_name}=(val); set_#{property_name}(val); val; end\n")
rescue SyntaxError
if $DEBUG
$stderr.puts "Couldn't create #{klass}.#{property_name}=(v)."
end
end
end
end
def prepend_path_to_environment_variable(path, environment_name)
path = Pathname(path) unless path.is_a?(Pathname)
return unless path.exist?
dir = path.to_s
dir = dir.gsub(/\//, ::File::ALT_SEPARATOR) if ::File::ALT_SEPARATOR
separator = ::File::PATH_SEPARATOR
paths = (ENV[environment_name] || '').split(separator)
unless paths.include?(dir)
paths = [dir] + paths
ENV[environment_name] = paths.join(separator)
end
end
def prepend_dll_path(path)
path = Pathname(path) unless path.is_a?(Pathname)
return unless path.exist?
begin
require "ruby_installer/runtime"
rescue LoadError
else
RubyInstaller::Runtime.add_dll_directory(path.to_s)
end
prepend_path_to_environment_variable(path, "PATH")
end
end
require "glib2.so"
module GLib
SIGNAL_HANDLER_PREFIX = "signal_do_"
VIRTUAL_FUNCTION_IMPLEMENTATION_PREFIX = "virtual_do_"
module MetaSignal
class << self
def signal_callback(klass, name)
lambda do |instance, *args|
method_name = "#{SIGNAL_HANDLER_PREFIX}#{name}"
klass.instance_method(method_name).bind(instance).call(*args)
end
end
end
end
class Instantiatable
class << self
def method_added(name)
result = super
check_new_method(name)
result
end
def include(*modules, &block)
result = super
modules.each do |mod|
next if mod.is_a?(Interface)
mod.public_instance_methods(false).each do |name|
check_new_method(name)
end
mod.protected_instance_methods(false).each do |name|
check_new_method(name)
end
mod.private_instance_methods(false).each do |name|
check_new_method(name)
end
end
result
end
private
def check_new_method(name)
case name.to_s
when /\A#{Regexp.escape(SIGNAL_HANDLER_PREFIX)}/o
signal_name = $POSTMATCH
begin
signal_ = signal(signal_name)
rescue NoSignalError
return
end
return unless signal_.class != self
signal_handler_attach(signal_, name.to_s) do |instance, *args|
instance.__send__(name, *args)
end
when /\A#{Regexp.escape(VIRTUAL_FUNCTION_IMPLEMENTATION_PREFIX)}/o
ancestors.each do |klass|
next unless klass.respond_to?(:implement_virtual_function)
return if klass.implement_virtual_function(self, name)
end
end
end
end
private
def create_signal_handler(signal_name, callback)
callback
end
end
class Type
def descendants
[self] + children.map{|t| t.descendants }.flatten
end
def ancestors
# ([self] + interfaces + (parent ? parent.ancestors : [])).reverse.uniq.reverse
[self] + (parent ? parent.ancestors : [])
end
end
class Enum
class << self
def try_convert(value)
if value.is_a?(self)
value
else
find(value)
end
end
def _load(obj)
new(Marshal.load(obj))
end
end
def _dump(limit)
Marshal.dump(to_i, limit)
end
end
class Flags
class << self
def try_convert(value)
case value
when self
value
when Integer, String, Symbol, Array
begin
new(value)
rescue ArgumentError
nil
end
else
nil
end
end
def _load(obj)
new(Marshal.load(obj))
end
end
def _dump(limit)
Marshal.dump(to_i, limit)
end
# FIXME
def inspect
values = self.class.values
if values.find{|x| x == self }
body = nick
else
a = values.select{|x| self >= x }
a = a.reject{|x| a.find{|y| y > x } }
body = a.empty? ? '{}' : a.map{|x| x.nick }.join('|')
end
format('#<%s %s>', self.class.inspect, body)
end
end
module Log
DOMAIN = "Ruby/GLib"
LEVELS = {
LEVEL_ERROR => "ERROR",
LEVEL_CRITICAL => "CRITICAL",
LEVEL_WARNING => "WARNING",
LEVEL_MESSAGE => "MESSAGE",
LEVEL_INFO => "INFO",
LEVEL_DEBUG => "DEBUG"
}
module_function
def error(str)
log(DOMAIN, LEVEL_ERROR, caller(1)[0] << ": " << str)
end
def message(str)
log(DOMAIN, LEVEL_MESSAGE, caller(1)[0] << ": " << str)
end
def critical(str)
log(DOMAIN, LEVEL_CRITICAL, caller(1)[0] << ": " << str)
end
def warning(str)
log(DOMAIN, LEVEL_WARNING, caller(1)[0] << ": " << str)
end
def set_log_domain(domain)
level =
FLAG_RECURSION |
FLAG_FATAL |
LEVEL_ERROR |
LEVEL_CRITICAL |
LEVEL_WARNING
if $VERBOSE or $DEBUG
level |=
LEVEL_MESSAGE |
LEVEL_INFO
end
if $DEBUG
level |= LEVEL_DEBUG
end
GLib::Log.set_handler(domain, level)
end
end
if const_defined?(:UserDirectory)
class UserDirectory
constants.each do |name|
if /\ADIRECTORY_/ =~ name
const_set($POSTMATCH, const_get(name))
end
end
end
end
LOG_DOMAIN = "GLib"
class Object
LOG_DOMAIN = "GLib-GObject"
end
class Thread
LOG_DOMAIN = "GThread"
end
module Module
LOG_DOMAIN = "GModule"
end
end
GLib::Log.set_log_domain(nil)
GLib::Log.set_log_domain(GLib::LOG_DOMAIN)
GLib::Log.set_log_domain(GLib::Object::LOG_DOMAIN)
GLib::Log.set_log_domain(GLib::Thread::LOG_DOMAIN)
GLib::Log.set_log_domain(GLib::Module::LOG_DOMAIN)
require "glib2/version"
require "glib2/deprecated"
require "glib2/date-time"
require "glib2/regex"
require "glib2/time-zone"
require "glib2/variant"
=begin
Don't we need this?
ObjectSpace.define_finalizer(GLib) {
GLib::Log.cancel_handler
puts "GLib::Log.cancel_handler was called." if $DEBUG
}
=end
|