Class: RDF::Writer Abstract

Inherits:
Object
  • Object
show all
Extended by:
Enumerable, Util::Aliasing::LateBound
Includes:
Writable
Defined in:
lib/rdf/writer.rb

Overview

This class is abstract.

The base class for RDF serializers.

Examples:

Loading an RDF writer implementation

require 'rdf/ntriples'

Iterating over known RDF writer classes

RDF::Writer.each { |klass| puts klass.name }

Obtaining an RDF writer class

RDF::Writer.for(:ntriples)     #=> RDF::NTriples::Writer
RDF::Writer.for("spec/data/output.nt")
RDF::Writer.for(:file_name      => "spec/data/output.nt")
RDF::Writer.for(:file_extension => "nt")
RDF::Writer.for(:content_type   => "text/plain")

Instantiating an RDF writer class

RDF::Writer.for(:ntriples).new($stdout) { |writer| ... }

Serializing RDF statements into a file

RDF::Writer.open("spec/data/output.nt") do |writer|
  graph.each_statement do |statement|
    writer << statement
  end
end

Serializing RDF statements into a string

RDF::Writer.for(:ntriples).buffer do |writer|
  graph.each_statement do |statement|
    writer << statement
  end
end

See Also:

Direct Known Subclasses

NTriples::Writer

Instance Attribute Summary (collapse)

Class Method Summary (collapse)

Instance Method Summary (collapse)

Methods included from Util::Aliasing::LateBound

alias_method

Methods included from Writable

#<<, #insert, #insert_graph, #insert_reader, #insert_statements, #writable?

Constructor Details

- (Writer) initialize(output = $stdout, options = {}) {|writer| ... }

Initializes the writer.

Parameters:

  • output (IO, File) (defaults to: $stdout)

    the output stream

  • options (Hash{Symbol => Object}) (defaults to: {})

    any additional options

Options Hash (options):

  • :encoding (Encoding, String, Symbol)

    the encoding to use on the output stream (Ruby 1.9+). Defaults to the format associated with content_encoding.

  • :canonicalize (Boolean) — default: false

    whether to canonicalize literals when serializing

  • :prefixes (Hash) — default: Hash.new

    the prefix mappings to use (not supported by all writers)

  • :base_uri (#to_s) — default: nil

    the base URI to use when constructing relative URIs (not supported by all writers)

Yields:

  • (writer)

    self

Yield Parameters:

Yield Returns:

  • (void)


210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/rdf/writer.rb', line 210

def initialize(output = $stdout, options = {}, &block)
  @output, @options = output, options.dup
  @nodes, @node_id  = {}, 0

  if block_given?
    write_prologue
    case block.arity
      when 1 then block.call(self)
      else instance_eval(&block)
    end
    write_epilogue
  end
end

Instance Attribute Details

- (Hash) options (readonly)

Any additional options for this writer.

Returns:

  • (Hash)

Since:

  • 0.2.2



229
230
231
# File 'lib/rdf/writer.rb', line 229

def options
  @options
end

Class Method Details

+ (String) buffer(*args) {|writer| ... }

Buffers output into a string buffer.

Yields:

  • (writer)

Yield Parameters:

Yield Returns:

  • (void)

Returns:

  • (String)

Raises:

  • (ArgumentError)

    if no block is provided



145
146
147
148
149
150
151
152
153
154
# File 'lib/rdf/writer.rb', line 145

def self.buffer(*args, &block)
  options = args.last.is_a?(Hash) ? args.last : {}
  raise ArgumentError, "block expected" unless block_given?

  StringIO.open do |buffer|
    buffer.set_encoding(options[:encoding]) if buffer.respond_to?(:set_encoding) && options[:encoding]
    self.new(buffer, *args) { |writer| block.call(writer) }
    buffer.string
  end
end

+ dump(data, io = nil, options = {})

This method returns an undefined value.

Parameters:

  • data (RDF::Enumerable, #each)

    the graph or repository to dump

  • io (IO, File, String) (defaults to: nil)

    the output stream or file to write to

  • options (Hash{Symbol => Object}) (defaults to: {})

    passed to #initialize or buffer



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/rdf/writer.rb', line 113

def self.dump(data, io = nil, options = {})
  if io.is_a?(String)
    io = File.open(io, 'w')
  elsif io.respond_to?(:external_encoding) && io.external_encoding
    options = {:encoding => io.external_encoding}.merge(options)
  end
  io.set_encoding(options[:encoding]) if io.respond_to?(:set_encoding) && options[:encoding]
  method = data.respond_to?(:each_statement) ? :each_statement : :each
  if io
    new(io, options) do |writer|
      data.send(method) do |statement|
        writer << statement
      end
      writer.flush
    end
  else
    buffer(options) do |writer|
      data.send(method) do |statement|
        writer << statement
      end
    end
  end
end

+ (Enumerator) each {|klass| ... }

Enumerates known RDF writer classes.

Yields:

  • (klass)

Yield Parameters:

  • klass (Class)

Yield Returns:

  • (void)

    ignored

Returns:



50
51
52
# File 'lib/rdf/writer.rb', line 50

def self.each(&block)
  @@subclasses.each(&block)
end

+ (Class) for(format) + (Class) for(filename) + (Class) for(options = {})

Finds an RDF writer class based on the given criteria.

Overloads:

  • + (Class) for(format)

    Finds an RDF writer class based on a symbolic name.

    Parameters:

    • format (Symbol)

    Returns:

    • (Class)
  • + (Class) for(filename)

    Finds an RDF writer class based on a file name.

    Parameters:

    • filename (String)

    Returns:

    • (Class)
  • + (Class) for(options = {})

    Finds an RDF writer class based on various options.

    Parameters:

    • options (Hash{Symbol => Object}) (defaults to: {})

    Options Hash (options):

    • :file_name (String, #to_s) — default: nil
    • :file_extension (Symbol, #to_sym) — default: nil
    • :content_type (String, #to_s) — default: nil

    Returns:

    • (Class)

Returns:

  • (Class)


79
80
81
82
83
84
# File 'lib/rdf/writer.rb', line 79

def self.for(options = {})
  options = options.merge(:has_writer => true) if options.is_a?(Hash)
  if format = self.format || Format.for(options)
    format.writer
  end
end

+ (Class) format(klass = nil) Also known as: format_class

Retrieves the RDF serialization format class for this writer class.

Returns:

  • (Class)


90
91
92
93
94
95
96
97
98
99
# File 'lib/rdf/writer.rb', line 90

def self.format(klass = nil)
  if klass.nil?
    Format.each do |format|
      if format.writer == self
        return format
      end
    end
    nil # not found
  end
end

+ (RDF::Writer) open(filename, options = {}, &block)

Writes output to the given filename.

Parameters:

  • filename (String, #to_s)
  • options (Hash{Symbol => Object}) (defaults to: {})

    any additional options (see #initialize and Format.for)

Options Hash (options):

  • :format (Symbol) — default: nil

Returns:



164
165
166
167
168
169
170
171
# File 'lib/rdf/writer.rb', line 164

def self.open(filename, options = {}, &block)
  File.open(filename, 'wb') do |file|
    file.set_encoding(options[:encoding]) if file.respond_to?(:set_encoding) && options[:encoding]
    format_options = options.dup
    format_options[:file_name] ||= filename
    self.for(options[:format] || format_options).new(file, options, &block)
  end
end

+ (Symbol) to_sym

Returns a symbol appropriate to use with RDF::Writer.for()

Returns:

  • (Symbol)


176
177
178
179
180
181
# File 'lib/rdf/writer.rb', line 176

def self.to_sym
  elements = self.to_s.split("::")
  sym = elements.pop
  sym = elements.pop if sym == 'Writer'
  sym.downcase.to_s.to_sym
end

Instance Method Details

- (Hash{Symbol => RDF::URI}) base_uri

Returns the base URI used for this writer.

Examples:

writer.prefixes[:dc]  #=> RDF::URI('http://purl.org/dc/terms/')

Returns:

Since:

  • 0.3.4



239
240
241
# File 'lib/rdf/writer.rb', line 239

def base_uri
  @options[:base_uri]
end

- (Encoding) encoding

Returns the encoding of the output stream.

Note: this method requires Ruby 1.9 or newer.

Returns:

  • (Encoding)


299
300
301
302
303
304
305
306
307
308
309
# File 'lib/rdf/writer.rb', line 299

def encoding
  return nil unless "".respond_to?(:force_encoding)
  case @options[:encoding]
  when String, Symbol
    Encoding.find(@options[:encoding].to_s)
  when Encoding
    @options[:encoding]
  else
    @options[:encoding] ||= Encoding.find(self.class.format.content_encoding.to_s)
  end
end

- (String) escaped(string) (protected)

Parameters:

  • string (String)

Returns:

  • (String)


476
477
478
479
480
481
482
483
484
# File 'lib/rdf/writer.rb', line 476

def escaped(string)
  string.gsub('\\', '\\\\').
         gsub("\b", '\\b').
         gsub("\f", '\\f').
         gsub("\t", '\\t').
         gsub("\n", '\\n').
         gsub("\r", '\\r').
         gsub('"', '\\"')
end

- flush Also known as: flush!

This method returns an undefined value.

Flushes the underlying output buffer.



315
316
317
318
# File 'lib/rdf/writer.rb', line 315

def flush
  @output.flush if @output.respond_to?(:flush)
  self
end

- (String) format_list(value, options = {})

This method is abstract.

Parameters:

  • value (RDF::List)
  • options (Hash{Symbol => Object}) (defaults to: {})

Returns:

  • (String)

Since:

  • 0.2.3



441
442
443
# File 'lib/rdf/writer.rb', line 441

def format_list(value, options = {})
  format_term(value.subject, options)
end

- (String) format_literal(value, options = {})

This method is abstract.

Parameters:

  • value (RDF::Literal, String, #to_s)
  • options (Hash{Symbol => Object}) (defaults to: {})

Returns:

  • (String)

Raises:

  • (NotImplementedError)

    unless implemented in subclass



431
432
433
# File 'lib/rdf/writer.rb', line 431

def format_literal(value, options = {})
  raise NotImplementedError.new("#{self.class}#format_literal") # override in subclasses
end

- (String) format_node(value, options = {})

This method is abstract.

Parameters:

  • value (RDF::Node)
  • options (Hash{Symbol => Object}) (defaults to: {})

Returns:

  • (String)

Raises:

  • (NotImplementedError)

    unless implemented in subclass



411
412
413
# File 'lib/rdf/writer.rb', line 411

def format_node(value, options = {})
  raise NotImplementedError.new("#{self.class}#format_node") # override in subclasses
end

- (String) format_term(term, options = {}) Also known as: format_value

Parameters:

Returns:

  • (String)

Since:

  • 0.3.0



393
394
395
396
397
398
399
400
401
402
# File 'lib/rdf/writer.rb', line 393

def format_term(term, options = {})
  case term
    when String       then format_literal(RDF::Literal(term, options), options)
    when RDF::List    then format_list(term, options)
    when RDF::Literal then format_literal(term, options)
    when RDF::URI     then format_uri(term, options)
    when RDF::Node    then format_node(term, options)
    else nil
  end
end

- (String) format_uri(value, options = {})

This method is abstract.

Parameters:

  • value (RDF::URI)
  • options (Hash{Symbol => Object}) (defaults to: {})

Returns:

  • (String)

Raises:

  • (NotImplementedError)

    unless implemented in subclass



421
422
423
# File 'lib/rdf/writer.rb', line 421

def format_uri(value, options = {})
  raise NotImplementedError.new("#{self.class}#format_uri") # override in subclasses
end

- (String) node_id (protected)

Returns:

  • (String)


469
470
471
# File 'lib/rdf/writer.rb', line 469

def node_id
  "_:n#{@node_id += 1}"
end

- (RDF::URI) prefix(name, uri) - (RDF::URI) prefix(name) Also known as: prefix!

Defines the given named URI prefix for this writer.

Examples:

Defining a URI prefix

writer.prefix :dc, RDF::URI('http://purl.org/dc/terms/')

Returning a URI prefix

writer.prefix(:dc)    #=> RDF::URI('http://purl.org/dc/terms/')

Overloads:

  • - (RDF::URI) prefix(name, uri)

    Parameters:

    • name (Symbol, #to_s)
    • uri (RDF::URI, #to_s)
  • - (RDF::URI) prefix(name)

    Parameters:

    • name (Symbol, #to_s)

Returns:



287
288
289
290
# File 'lib/rdf/writer.rb', line 287

def prefix(name, uri = nil)
  name = name.to_s.empty? ? nil : (name.respond_to?(:to_sym) ? name.to_sym : name.to_s.to_sym)
  uri.nil? ? prefixes[name] : prefixes[name] = uri
end

- (Hash{Symbol => RDF::URI}) prefixes

Returns the URI prefixes currently defined for this writer.

Examples:

writer.prefixes[:dc]  #=> RDF::URI('http://purl.org/dc/terms/')

Returns:

Since:

  • 0.2.2



251
252
253
# File 'lib/rdf/writer.rb', line 251

def prefixes
  @options[:prefixes] ||= {}
end

- (Hash{Symbol => RDF::URI}) prefixes=(prefixes)

Defines the given URI prefixes for this writer.

Examples:

writer.prefixes = {
  :dc => RDF::URI('http://purl.org/dc/terms/'),
}

Parameters:

Returns:

Since:

  • 0.3.0



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

def prefixes=(prefixes)
  @options[:prefixes] = prefixes
end

- puts(*args) (protected)

This method returns an undefined value.



449
450
451
# File 'lib/rdf/writer.rb', line 449

def puts(*args)
  @output.puts(*args.map {|s| s.respond_to?(:force_encoding) ? s.force_encoding(encoding) : s})
end

- (String) quoted(string) (protected)

Parameters:

  • string (String)

Returns:

  • (String)


489
490
491
# File 'lib/rdf/writer.rb', line 489

def quoted(string)
  "\"#{string}\""
end

- (Symbol) to_sym

Returns a symbol appropriate to use with RDF::Writer.for()

Returns:

  • (Symbol)


186
187
188
# File 'lib/rdf/writer.rb', line 186

def to_sym
  self.class.to_sym
end

- (String) uri_for(uriref) (protected)

Parameters:

Returns:

  • (String)


456
457
458
459
460
461
462
463
464
465
# File 'lib/rdf/writer.rb', line 456

def uri_for(uriref)
  case
    when uriref.is_a?(RDF::Node)
      @nodes[uriref]
    when uriref.respond_to?(:to_uri)
      uriref.to_uri.to_s
    else
      uriref.to_s
  end
end

- write_comment(text)

This method is abstract.

This method returns an undefined value.

self

Parameters:

  • text (String)


339
340
341
# File 'lib/rdf/writer.rb', line 339

def write_comment(text)
  self
end

- write_epilogue

This method is abstract.

This method returns an undefined value.

self



331
332
333
# File 'lib/rdf/writer.rb', line 331

def write_epilogue
  self
end

- write_graph(graph)

Deprecated.

replace by RDF::Writable#insert_graph

This method returns an undefined value.

self

Parameters:



347
348
349
350
# File 'lib/rdf/writer.rb', line 347

def write_graph(graph)
  graph.each_triple { |*triple| write_triple(*triple) }
  self
end

- write_prologue

This method is abstract.

This method returns an undefined value.

self



324
325
326
# File 'lib/rdf/writer.rb', line 324

def write_prologue
  self
end

- write_statement(statement) Also known as: insert_statement

This method returns an undefined value.

self

Parameters:



364
365
366
367
# File 'lib/rdf/writer.rb', line 364

def write_statement(statement)
  write_triple(*statement.to_triple)
  self
end

- write_statements(*statements)

Deprecated.

replace by RDF::Writable#insert_statements

This method returns an undefined value.

self

Parameters:



356
357
358
359
# File 'lib/rdf/writer.rb', line 356

def write_statements(*statements)
  statements.flatten.each { |statement| write_statement(statement) }
  self
end

- write_triple(subject, predicate, object)

This method is abstract.

This method returns an undefined value.

self

Parameters:

Raises:

  • (NotImplementedError)

    unless implemented in subclass



385
386
387
# File 'lib/rdf/writer.rb', line 385

def write_triple(subject, predicate, object)
  raise NotImplementedError.new("#{self.class}#write_triple") # override in subclasses
end

- write_triples(*triples)

This method returns an undefined value.

self

Parameters:



373
374
375
376
# File 'lib/rdf/writer.rb', line 373

def write_triples(*triples)
  triples.each { |triple| write_triple(*triple) }
  self
end