Module: JSON::LD::Compact
Constant Summary collapse
- CONTAINER_MAPPING_LANGUAGE_INDEX_ID_TYPE =
The following constant is used to reduce object allocations in #compact below
Set.new(%w[@language @index @id @type]).freeze
- EXPANDED_PROPERTY_DIRECTION_INDEX_LANGUAGE_VALUE =
%w[@direction @index @language @value].freeze
Instance Method Summary collapse
-
#compact(element, base: nil, property: nil, log_depth: nil) ⇒ Array, Hash
This algorithm compacts a JSON-LD document, such that the given context is applied.
Methods included from Utils
#add_value, #as_array, #as_resource, #blank_node?, #compare_values, #graph?, #has_value?, #index?, #list?, #node?, #node_or_ref?, #node_reference?, #property?, #simple_graph?, #value?
Instance Method Details
#compact(element, base: nil, property: nil, log_depth: nil) ⇒ Array, Hash
This algorithm compacts a JSON-LD document, such that the given context is applied. This must result in shortening any applicable IRIs to terms or compact IRIs, any applicable keywords to keyword aliases, and any applicable JSON-LD values expressed in expanded form to simple values such as strings or numbers.
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 |
# File 'lib/json/ld/compact.rb', line 21 def compact(element, base: nil, property: nil, log_depth: nil) # log_debug("compact", depth: log_depth.to_i) {"element: #{element.inspect}, ec: #{context.inspect}"} # If the term definition for active property itself contains a context, use that for compacting values. input_context = context case element when Array # log_debug("") {"Array #{element.inspect}"} result = element.map do |item| compact(item, base: base, property: property, log_depth: log_depth.to_i + 1) end.compact # If element has a single member and the active property has no # @container mapping to @list or @set, the compacted value is that # member; otherwise the compacted value is element if result.length == 1 && !context.as_array?(property) && @options[:compactArrays] # log_debug("=> extract single element", depth: log_depth.to_i) {result.first.inspect} result.first else # log_debug("=> array result", depth: log_depth.to_i) {result.inspect} result end when Hash # Otherwise element is a JSON object. # @null objects are used in framing return nil if element.key?('@null') # Revert any previously type-scoped (non-preserved) context if context.previous_context && !element.key?('@value') && element.keys != %w[@id] # log_debug("revert ec", depth: log_depth.to_i) {"previous context: #{context.previous_context.inspect}"} self.context = context.previous_context end # Look up term definintions from property using the original type-scoped context, if it exists, but apply them to the now current previous context td = input_context.term_definitions[property] if property if td && !td.context.nil? self.context = context.parse(td.context, override_protected: true) # log_debug("prop-scoped", depth: log_depth.to_i) {"context: #{self.context.inspect}"} end if (element.key?('@id') || element.key?('@value')) && !element.key?('@annotation') result = context.compact_value(property, element, base: @options[:base]) if !result.is_a?(Hash) || context.coerce(property) == '@json' # log_debug("", depth: log_depth.to_i) {"=> scalar result: #{result.inspect}"} return result end end # If expanded property is @list and we're contained within a list container, recursively compact this item to an array if list?(element) && context.container(property).include?('@list') return compact(element['@list'], base: base, property: property, log_depth: log_depth.to_i + 1) end inside_reverse = property == '@reverse' result = {} nest_result = nil # Apply any context defined on an alias of @type # If key is @type and any compacted value is a term having a local context, overlay that context. Array(element['@type']) .map { || context.compact_iri(, vocab: true) } .sort .each do |term| term_context = input_context.term_definitions[term].context if input_context.term_definitions[term] self.context = context.parse(term_context, propagate: false) unless term_context.nil? # log_debug("type-scoped", depth: log_depth.to_i) {"context: #{self.context.inspect}"} end element.keys.opt_sort(ordered: @options[:ordered]).each do || = element[] # log_debug("", depth: log_depth.to_i) {"#{expanded_property}: #{expanded_value.inspect}"} if == '@id' compacted_value = as_array().map do || if node?() && @options[:rdfstar] # This can only really happen for valid RDF-star compact(, base: base, property: '@id', log_depth: log_depth.to_i + 1) else context.compact_iri(, base: @options[:base]) end end kw_alias = context.compact_iri('@id', vocab: true) as_array = compacted_value.length > 1 compacted_value = compacted_value.first unless as_array result[kw_alias] = compacted_value next end if == '@type' compacted_value = Array().map do || input_context.compact_iri(, vocab: true) end kw_alias = context.compact_iri('@type', vocab: true) as_array = compacted_value.length > 1 || (context.as_array?(kw_alias) && !value?(element) && context.processingMode('json-ld-1.1')) add_value(result, kw_alias, compacted_value, property_is_array: as_array) next end if == '@reverse' compacted_value = compact(, base: base, property: '@reverse', log_depth: log_depth.to_i + 1) # log_debug("@reverse", depth: log_depth.to_i) {"compacted_value: #{compacted_value.inspect}"} # handle double-reversed properties compacted_value.each do |prop, value| next unless context.reverse?(prop) add_value(result, prop, value, property_is_array: context.as_array?(prop) || !@options[:compactArrays]) compacted_value.delete(prop) end unless compacted_value.empty? al = context.compact_iri('@reverse', vocab: true) # log_debug("", depth: log_depth.to_i) {"remainder: #{al} => #{compacted_value.inspect}"} result[al] = compacted_value end next end if == '@preserve' # Compact using `property` compacted_value = compact(, base: base, property: property, log_depth: log_depth.to_i + 1) # log_debug("@preserve", depth: log_depth.to_i) {"compacted_value: #{compacted_value.inspect}"} result['@preserve'] = compacted_value unless compacted_value.is_a?(Array) && compacted_value.empty? next end if == '@index' && context.container(property).include?('@index') # log_debug("@index", depth: log_depth.to_i) {"drop @index"} next end # Otherwise, if expanded property is @direction, @index, @value, or @language: if EXPANDED_PROPERTY_DIRECTION_INDEX_LANGUAGE_VALUE.include?() al = context.compact_iri(, vocab: true) # log_debug(expanded_property, depth: log_depth.to_i) {"#{al} => #{expanded_value.inspect}"} result[al] = next end if .empty? item_active_property = context.compact_iri(, value: , vocab: true, reverse: inside_reverse) if (nest_prop = context.nest(item_active_property)) result[nest_prop] ||= {} add_value(result[nest_prop], item_active_property, [], property_is_array: true) else add_value(result, item_active_property, [], property_is_array: true) end end # At this point, expanded value must be an array due to the Expansion algorithm. .each do || item_active_property = context.compact_iri(, value: , vocab: true, reverse: inside_reverse) nest_result = if (nest_prop = context.nest(item_active_property)) # FIXME??: It's possible that nest_prop will be used both for nesting, and for values of @nest result[nest_prop] ||= {} else result end container = context.container(item_active_property) as_array = !@options[:compactArrays] || context.as_array?(item_active_property) value = if list?() ['@list'] elsif graph?() ['@graph'] else end compacted_item = compact(value, base: base, property: item_active_property, log_depth: log_depth.to_i + 1) # log_debug("", depth: log_depth.to_i) {" => compacted key: #{item_active_property.inspect} for #{compacted_item.inspect}"} # handle @list if list?() compacted_item = as_array(compacted_item) if container.include?('@list') add_value(nest_result, item_active_property, compacted_item, value_is_array: true, allow_duplicate: true) next else al = context.compact_iri('@list', vocab: true) compacted_item = { al => compacted_item } if .key?('@index') key = context.compact_iri('@index', vocab: true) compacted_item[key] = ['@index'] end end end # Graph object compaction cases: if graph?() if container.include?('@graph') && (container.include?('@id') || (container.include?('@index') && simple_graph?())) # container includes @graph and @id map_object = nest_result[item_active_property] ||= {} # If there is no @id, create a blank node identifier to use as an index map_key = if container.include?('@id') && ['@id'] context.compact_iri(['@id'], base: @options[:base]) elsif container.include?('@index') && ['@index'] context.compact_iri(['@index'], vocab: true) else context.compact_iri('@none', vocab: true) end add_value(map_object, map_key, compacted_item, property_is_array: as_array) elsif container.include?('@graph') && simple_graph?() # container includes @graph but not @id or @index and value is a simple graph object if compacted_item.is_a?(Array) && compacted_item.length > 1 # Mutple objects in the same graph can't be represented directly, as they would be interpreted as two different graphs. Need to wrap in @included. included_key = context.compact_iri('@included', vocab: true) compacted_item = { included_key => compacted_item } end # Drop through, where compacted_item will be added add_value(nest_result, item_active_property, compacted_item, property_is_array: as_array) else # container does not include @graph or otherwise does not match one of the previous cases, redo compacted_item al = context.compact_iri('@graph', vocab: true) compacted_item = { al => compacted_item } if ['@id'] al = context.compact_iri('@id', vocab: true) compacted_item[al] = context.compact_iri(['@id'], vocab: false) end if .key?('@index') key = context.compact_iri('@index', vocab: true) compacted_item[key] = ['@index'] end add_value(nest_result, item_active_property, compacted_item, property_is_array: as_array) end elsif container.intersect?(CONTAINER_MAPPING_LANGUAGE_INDEX_ID_TYPE) && !container.include?('@graph') map_object = nest_result[item_active_property] ||= {} c = container.first container_key = context.compact_iri(c, vocab: true) compacted_item = if container.include?('@id') map_key = compacted_item[container_key] compacted_item.delete(container_key) compacted_item elsif container.include?('@index') index_key = context.term_definitions[item_active_property].index || '@index' if index_key == '@index' map_key = ['@index'] else index_key = context.(index_key, vocab: true) container_key = context.compact_iri(index_key, vocab: true) map_key, *others = Array(compacted_item.is_a?(Hash) && compacted_item[container_key]) if map_key.is_a?(String) case others.length when 0 then compacted_item.delete(container_key) if compacted_item.is_a?(Hash) when 1 then compacted_item[container_key] = others.first else compacted_item[container_key] = others end else map_key = context.compact_iri('@none', vocab: true) end end # Note, if compacted_item is a node reference and key is @id-valued, then this could be compacted further. compacted_item elsif container.include?('@language') map_key = ['@language'] value?() ? ['@value'] : compacted_item elsif container.include?('@type') map_key, *types = Array(compacted_item.is_a?(Hash) && compacted_item[container_key]) case types.length when 0 then compacted_item.delete(container_key) if compacted_item.is_a?(Hash) when 1 then compacted_item[container_key] = types.first else compacted_item[container_key] = types end # if compacted_item contains a single entry who's key maps to @id, then recompact the item without @type if compacted_item.is_a?(Hash) && compacted_item.keys.length == 1 && .key?('@id') compacted_item = compact({ '@id' => ['@id'] }, base: base, property: item_active_property, log_depth: log_depth.to_i + 1) end compacted_item end map_key ||= context.compact_iri('@none', vocab: true) add_value(map_object, map_key, compacted_item, property_is_array: as_array) else add_value(nest_result, item_active_property, compacted_item, property_is_array: as_array) end end end result else # For other types, the compacted value is the element value # log_debug("compact", depth: log_depth.to_i) {element.class.to_s} element end ensure self.context = input_context end |