Class: Properties

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

Overview

Parse properties file.

Instance Method Summary collapse

Constructor Details

#initializeProperties

Returns a new instance of Properties.



7
8
9
# File 'lib/xproperties.rb', line 7

def initialize
  @properties = { }
end

Instance Method Details

#[](key) ⇒ String

Getting the value of a property.

Parameters:

  • key

    Property name.

Returns:

  • (String)


25
26
27
# File 'lib/xproperties.rb', line 25

def [](key)
  get_property key
end

#[]=(key, value) ⇒ NilClass

Setting the value of a property.

Parameters:

  • key

    Property name.

  • value

    Value to set for the property.

Returns:

  • (NilClass)


16
17
18
19
# File 'lib/xproperties.rb', line 16

def []=(key, value)
  set_property key, value
  nil?
end

#clearNilClass

Remove all properties

Returns:

  • (NilClass)


238
239
240
# File 'lib/xproperties.rb', line 238

def clear
  @properties.clear
end

#contains?(key) ⇒ Boolean

Returns a value whether the key exists.

Returns:

  • (Boolean)


273
274
275
# File 'lib/xproperties.rb', line 273

def contains?(key)
  @properties.key? key
end

#countInteger

Get the number of properties.

Returns:

  • (Integer)


266
267
268
# File 'lib/xproperties.rb', line 266

def count
  @properties.count
end

#delete_property(key) ⇒ NilClass

Deleting the value of a property.

Parameters:

  • key

    Property name.

Returns:

  • (NilClass)

Raises:

  • KeyError When property does not exist.



231
232
233
# File 'lib/xproperties.rb', line 231

def delete_property(key)
  @properties.delete key
end

#eachArray

Get an iterator object.

Returns:

  • (Array)


32
33
34
35
36
# File 'lib/xproperties.rb', line 32

def each
  items.each do |item|
    yield item
  end
end

#equals?(other) ⇒ Boolean

Returns a value whether two object instances are equal.

Parameters:

  • other

    Other object to compare.

Returns:

  • (Boolean)


281
282
283
# File 'lib/xproperties.rb', line 281

def equals?(other)
  self == other
end

#get_property(key, default = "") ⇒ String

Getting the value of a property.

Parameters:

  • key

    Property name.

  • default (defaults to: "")

    Default value if property does not exist.

Returns:

  • (String)

Raises:

  • KeyError When property does not exist.



219
220
221
222
223
224
# File 'lib/xproperties.rb', line 219

def get_property(key, default = "")
  if @properties.key? key
    return @properties[key]
  end
  default
end

#itemsArray

Getting the list of properties key-value pair.

Returns:

  • (Array)


259
260
261
# File 'lib/xproperties.rb', line 259

def items
  @properties.keys.zip @properties.values
end

#keysArray

Getting the list of properties name.

Returns:

  • (Array)


245
246
247
# File 'lib/xproperties.rb', line 245

def keys
  @properties.keys
end

#load(file_name) ⇒ void

This method returns an undefined value.

Loads a property list(key and element pairs) from the .properties file. The file is assumed to use the ISO-8859-1(Latin1) character encoding.

Parameters:

  • file_name

    .properties file name.

Raises:

  • IOError When an error occurs while reading the file.

  • ArgumentError When the file contains a malformed Unicode escape sequence.



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/xproperties.rb', line 53

def load(file_name)
  temp = File.read file_name, :encoding => "iso-8859-1"
  temp = temp.gsub /^[ \t]*[#!].*[\r\n\f]+/, ""
  temp = temp.gsub /(?<!\\)\\[ \t]*[\r\n\f]+[ \t]*/, ""
  raw_data = temp.split /[\r\n\f]+/
  raw_data.each do |i|
    pair = i.split /(?<!\\)[ \t]*(?<!\\)[=:][ \t]*/, 2
    if pair[0] != nil and pair[0].strip != ""
      key = load_convert pair[0], :is_convert_key => true
      if pair.length == 2
        value = load_convert pair[1]
        @properties[key] = value
      else
        @properties[key] = ""
      end
    end
  end
  nil?
end

#load_convert(value, is_convert_key = false) ⇒ String

Converts escape sequences to chars.

Parameters:

  • value

    String to convert.

Returns:

  • (String)

Raises:

  • ArgumentError When the file contains a malformed Unicode escape sequence.



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
# File 'lib/xproperties.rb', line 148

def load_convert(value, is_convert_key = false)
  if is_convert_key
    value = value.gsub /\\ /, " "
    value = value.gsub /\\=/, "="
    value = value.gsub /\\:/, ":"
  end
  value = value.gsub /\\\\/, "\\"
  value = value.gsub /\\t/, "\t"
  value = value.gsub /\\r/, "\r"
  value = value.gsub /\\n/, "\n"
  value = value.gsub /\\f/, "\f"
  escapes = value.scan(/\\u[A-F0-9]{4}/)
  escapes.each do |escape|
    temp = 0
    escape.chars[2..].each do |i|
      if "0123456789".include? i
        temp = (temp << 4) + i.ord - "0".ord
      elsif "abcdef".include? i
        temp = (temp << 4) + 10 + i.ord - "a".ord
      elsif "ABCDEF".include? i
        temp = (temp << 4) + 10 + i.ord - "A".ord
      else
        raise ArgumentError "Malformed \\uxxxx encoding."
      end
    end
    char = temp.chr "utf-8"
    value = value.gsub escape, char
  end
  value
end

#load_from_xml(file_name) ⇒ NilClass

Loads a property list(key and element pairs) from the .xml file.

The XML document will have the following DOCTYPE declaration: <!DOCTYPE properties SYSTEM “java.sun.com/dtd/properties.dtd”>

Parameters:

  • file_name

    .xml file name.

Returns:

  • (NilClass)

Raises:

  • IOError When an error occurs while reading the file.

  • ParseException When the XML file is malformed.



100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/xproperties.rb', line 100

def load_from_xml(file_name)
  raw = File.read file_name, :encoding => "utf-8"
  doc = REXML::Document.new raw
  pairs = doc.root.elements
  pairs.each "entry" do |pair|
    if pair.attributes.key? "key"
      key = pair.attributes["key"]
      value = pair.text
      @properties[key] = value
    else
      raise ParseException "Malformed XML format."
    end
  end
end

#save(file_name) ⇒ NilClass

Saves a property list(key and element pairs) to the .properties file. The file will be written in ISO-8859-1(Latin1) character encoding.

Parameters:

  • file_name

    .properties file name.

Returns:

  • (NilClass)

Raises:

  • IOError When an error occurs while writing the file.



79
80
81
82
83
84
85
86
87
88
89
# File 'lib/xproperties.rb', line 79

def save(file_name)
  file = File.open file_name, "w", :encoding => "iso-8859-1"
  @properties.each_pair do |k, v|
    key = save_convert k, :is_convert_key => true
    value = save_convert v
    pair = key + "=" + value
    file.write pair + "\n"
  end
  file.close
  nil?
end

#save_convert(value, is_convert_key = false) ⇒ String

Converts chars to escape sequences.

Parameters:

  • value

    String to convert.

Returns:

  • (String)


183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'lib/xproperties.rb', line 183

def save_convert(value, is_convert_key = false)
  buffer = []
  if is_convert_key
    value = value.gsub /[ ]/, "\\ "
    value = value.gsub /[=]/, "\\="
    value = value.gsub /:/, "\\:"
  end
  value = value.gsub /\\/, "\\\\"
  value = value.gsub /\t/, "\\t"
  value = value.gsub /\r/, "\\r"
  value = value.gsub /\n/, "\\n"
  value = value.gsub /\f/, "\\f"
  value.chars.each do |char|
    if char.ord < 0x20 or char.ord > 0x7e
      char = "\\u" + "%04x" % char.ord
    end
    buffer.append char
  end
  buffer.join
end

#save_to_xml(file_name) ⇒ NilClass

Saves a property list(key and element pairs) from the .xml file.

The XML document will have the following DOCTYPE declaration: <!DOCTYPE properties SYSTEM “java.sun.com/dtd/properties.dtd”>

Parameters:

  • file_name

    .xml file name.

Returns:

  • (NilClass)

Raises:

  • IOError When an error occurs while writing the file.



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/xproperties.rb', line 123

def save_to_xml(file_name)
  xml_declaration = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
  doctype = "<!DOCTYPE properties SYSTEM " +
            "\"http://java.sun.com/dtd/properties.dtd\">\n"
  root = REXML::Element.new "properties"
  @properties.each do |k, v|
    entry = REXML::Element.new "entry"
    entry.add_attribute "key", k
    entry.text = v
    root.add_element entry
  end
  file = File.open file_name, "w", :encoding => "utf-8"
  file.write xml_declaration
  file.write doctype
  doc = REXML::Document.new
  doc.add_element root
  doc.write file, 2, :encoding => "utf-8"
end

#set_property(key, value) ⇒ NilClass

Setting the value of a property.

Parameters:

  • key

    Property name.

  • value

    Value to set for the property.

Returns:

  • (NilClass)


209
210
211
# File 'lib/xproperties.rb', line 209

def set_property(key, value)
  @properties[key] = value
end

#to_sString

Convert the current object to string.

Returns:

  • (String)


41
42
43
# File 'lib/xproperties.rb', line 41

def to_s
  to_string
end

#to_stringString

Convert the current object to string.

Returns:

  • (String)


288
289
290
# File 'lib/xproperties.rb', line 288

def to_string
  JSON.dump @properties
end

#valuesArray

Getting the list of properties value.

Returns:

  • (Array)


252
253
254
# File 'lib/xproperties.rb', line 252

def values
  @properties.values
end