Class: JSON::LD::Format
- Inherits:
-
RDF::Format
- Object
- RDF::Format
- JSON::LD::Format
- Defined in:
- lib/json/ld/format.rb
Overview
JSON-LD format specification.
Class Method Summary collapse
-
.cli_commands ⇒ Hash{Symbol => Hash}
Hash of CLI commands appropriate for this format.
-
.detect(sample) ⇒ Boolean
Sample detection to see if it matches JSON-LD.
-
.name ⇒ Object
Override normal format name.
-
.to_sym ⇒ Object
Override normal symbol generation.
Class Method Details
.cli_commands ⇒ Hash{Symbol => Hash}
Hash of CLI commands appropriate for this format
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 |
# File 'lib/json/ld/format.rb', line 50 def self.cli_commands { expand: { description: "Expand JSON-LD or parsed RDF", parse: false, help: "expand [--context <context-file>] files ...", filter: {output_format: :jsonld}, # Only shows output format set lambda: ->(files, **) do out = [:output] || $stdout out.set_encoding(Encoding::UTF_8) if RUBY_PLATFORM == "java" = .merge(expandContext: .delete(:context)) if .has_key?(:context) if [:format] == :jsonld if files.empty? # If files are empty, either use options[:execute] input = [:evaluate] ? StringIO.new([:evaluate]) : STDIN input.set_encoding(.fetch(:encoding, Encoding::UTF_8)) JSON::LD::API.(input, validate: false, **) do || out.puts .to_json(JSON::LD::JSON_STATE) end else files.each do |file| JSON::LD::API.(file, validate: false, **) do || out.puts .to_json(JSON::LD::JSON_STATE) end end end else # Turn RDF into JSON-LD first RDF::CLI.parse(files, **) do |reader| JSON::LD::API.fromRdf(reader) do || out.puts .to_json(JSON::LD::JSON_STATE) end end end end, option_use: {context: :removed} }, compact: { description: "Compact JSON-LD or parsed RDF", parse: false, filter: {output_format: :jsonld}, # Only shows output format set help: "compact --context <context-file> files ...", lambda: ->(files, **) do raise ArgumentError, "Compacting requires a context" unless [:context] out = [:output] || $stdout out.set_encoding(Encoding::UTF_8) if RUBY_PLATFORM == "java" if [:format] == :jsonld if files.empty? # If files are empty, either use options[:execute] input = [:evaluate] ? StringIO.new([:evaluate]) : STDIN input.set_encoding(.fetch(:encoding, Encoding::UTF_8)) JSON::LD::API.compact(input, [:context], **) do |compacted| out.puts compacted.to_json(JSON::LD::JSON_STATE) end else files.each do |file| JSON::LD::API.compact(file, [:context], **) do |compacted| out.puts compacted.to_json(JSON::LD::JSON_STATE) end end end else # Turn RDF into JSON-LD first RDF::CLI.parse(files, **) do |reader| JSON::LD::API.fromRdf(reader) do || JSON::LD::API.compact(, [:context], **) do |compacted| out.puts compacted.to_json(JSON::LD::JSON_STATE) end end end end end, options: [ RDF::CLI::Option.new( symbol: :context, datatype: RDF::URI, control: :url2, use: :required, on: ["--context CONTEXT"], description: "Context to use when compacting.") {|arg| RDF::URI(arg)}, ] }, flatten: { description: "Flatten JSON-LD or parsed RDF", parse: false, help: "flatten [--context <context-file>] files ...", filter: {output_format: :jsonld}, # Only shows output format set lambda: ->(files, **) do out = [:output] || $stdout out.set_encoding(Encoding::UTF_8) if RUBY_PLATFORM == "java" if [:format] == :jsonld if files.empty? # If files are empty, either use options[:execute] input = [:evaluate] ? StringIO.new([:evaluate]) : STDIN input.set_encoding(.fetch(:encoding, Encoding::UTF_8)) JSON::LD::API.flatten(input, [:context], **) do |flattened| out.puts flattened.to_json(JSON::LD::JSON_STATE) end else files.each do |file| JSON::LD::API.flatten(file, [:context], **) do |flattened| out.puts flattened.to_json(JSON::LD::JSON_STATE) end end end else # Turn RDF into JSON-LD first RDF::CLI.parse(files, **) do |reader| JSON::LD::API.fromRdf(reader) do || JSON::LD::API.flatten(, [:context], **) do |flattened| out.puts flattened.to_json(JSON::LD::JSON_STATE) end end end end end }, frame: { description: "Frame JSON-LD or parsed RDF", parse: false, help: "frame --frame <frame-file> files ...", filter: {output_format: :jsonld}, # Only shows output format set lambda: ->(files, **) do raise ArgumentError, "Framing requires a frame" unless [:frame] out = [:output] || $stdout out.set_encoding(Encoding::UTF_8) if RUBY_PLATFORM == "java" if [:format] == :jsonld if files.empty? # If files are empty, either use options[:execute] input = [:evaluate] ? StringIO.new([:evaluate]) : STDIN input.set_encoding(.fetch(:encoding, Encoding::UTF_8)) JSON::LD::API.frame(input, [:frame], **) do |framed| out.puts framed.to_json(JSON::LD::JSON_STATE) end else files.each do |file| JSON::LD::API.frame(file, [:frame], **) do |framed| out.puts framed.to_json(JSON::LD::JSON_STATE) end end end else # Turn RDF into JSON-LD first RDF::CLI.parse(files, **) do |reader| JSON::LD::API.fromRdf(reader) do || JSON::LD::API.frame(, [:frame], **) do |framed| out.puts framed.to_json(JSON::LD::JSON_STATE) end end end end end, option_use: {context: :removed}, options: [ RDF::CLI::Option.new( symbol: :frame, datatype: RDF::URI, control: :url2, use: :required, on: ["--frame FRAME"], description: "Frame to use when serializing.") {|arg| RDF::URI(arg)} ] }, } end |
.detect(sample) ⇒ Boolean
Sample detection to see if it matches JSON-LD
Use a text sample to detect the format of an input file. Sub-classes implement a matcher sufficient to detect probably format matches, including disambiguating between other similar formats.
41 42 43 44 45 |
# File 'lib/json/ld/format.rb', line 41 def self.detect(sample) !!sample.match(/\{\s*"@(id|context|type)"/m) && # Exclude CSVW metadata !sample.include?("http://www.w3.org/ns/csvw") end |
.name ⇒ Object
Override normal format name
224 225 226 |
# File 'lib/json/ld/format.rb', line 224 def self.name "JSON-LD" end |
.to_sym ⇒ Object
Override normal symbol generation
218 219 220 |
# File 'lib/json/ld/format.rb', line 218 def self.to_sym :jsonld end |