1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# This file is part of the ruby-dbus project
# Copyright (C) 2019 Martin Vidner
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License, version 2.1 as published by the Free Software Foundation.
# See the file "COPYING" for the exact licensing terms.
module DBus
# A {::String} that validates at initialization time
class ObjectPath < String
# @raise Error if not a valid object path
def initialize(s)
unless self.class.valid?(s)
raise DBus::Error, "Invalid object path #{s.inspect}"
end
super
end
def self.valid?(s)
s == "/" || s =~ %r{\A(/[A-Za-z0-9_]+)+\z}
end
end
end
|