Sha256: 57719aacc5a6187374bf4b4d8c4db021b7a742a6de8c8bbdb66bfdd8a3d6eef5

Contents?: true

Size: 1.18 KB

Versions: 6

Compression:

Stored size: 1.18 KB

Contents

module Nanoc::Int
  # @api private
  class ItemRepWriter
    TMP_TEXT_ITEMS_DIR = 'text_items'.freeze

    def write(item_rep, snapshot_name)
      raw_path = item_rep.raw_path(snapshot: snapshot_name)
      return unless raw_path

      # Create parent directory
      FileUtils.mkdir_p(File.dirname(raw_path))

      # Check if file will be created
      is_created = !File.file?(raw_path)

      # Notify
      Nanoc::Int::NotificationCenter.post(
        :will_write_rep, item_rep, raw_path
      )

      content = item_rep.snapshot_contents[snapshot_name]
      if content.binary?
        temp_path = content.filename
      else
        temp_path = temp_filename
        File.write(temp_path, content.string)
      end

      # Check whether content was modified
      is_modified = is_created || !FileUtils.identical?(raw_path, temp_path)

      # Write
      FileUtils.cp(temp_path, raw_path) if is_modified

      item_rep.modified = is_modified

      # Notify
      Nanoc::Int::NotificationCenter.post(
        :rep_written, item_rep, raw_path, is_created, is_modified
      )
    end

    def temp_filename
      Nanoc::Int::TempFilenameFactory.instance.create(TMP_TEXT_ITEMS_DIR)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nanoc-4.5.2 lib/nanoc/base/services/item_rep_writer.rb
nanoc-4.5.1 lib/nanoc/base/services/item_rep_writer.rb
nanoc-4.5.0 lib/nanoc/base/services/item_rep_writer.rb
nanoc-4.4.7 lib/nanoc/base/services/item_rep_writer.rb
nanoc-4.4.6 lib/nanoc/base/services/item_rep_writer.rb
nanoc-4.4.5 lib/nanoc/base/services/item_rep_writer.rb