Sha256: 510f722bef5c633a95286b7b436c1ca255fd8bbece8edc0a529a35749f69eae6
Contents?: true
Size: 939 Bytes
Versions: 2
Compression:
Stored size: 939 Bytes
Contents
# Copyright (C) 2013-2014, Eric Wong <e@80x24.org> and all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require 'yaml' require 'tempfile' class DTAS::StateFile # :nodoc: attr_reader :path def initialize(path, do_fsync = false) @path = path @do_fsync = do_fsync end def tryload YAML.load(IO.binread(@path)) if File.readable?(@path) end def dump(obj, force_fsync = false) yaml = obj.to_hsh.to_yaml.b # do not replace existing state file if there are no changes # this will be racy if we ever do async dumps or shared state # files, but we don't do that... return if File.readable?(@path) && IO.binread(@path) == yaml dir = File.dirname(@path) Tempfile.open(%w(player.state .tmp), dir) do |tmp| tmp.binmode tmp.write(yaml) tmp.flush tmp.fsync if @do_fsync || force_fsync File.rename(tmp.path, @path) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dtas-0.9.0 | lib/dtas/state_file.rb |
dtas-0.8.0 | lib/dtas/state_file.rb |