Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Writing Files - Ryan Mulligan
Search
Las Vegas Ruby Group
May 21, 2014
100
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Writing Files - Ryan Mulligan
Las Vegas Ruby Group
May 21, 2014
More Decks by Las Vegas Ruby Group
See All by Las Vegas Ruby Group
Ruby ISO Standard - David Grayson
lvrug
0
180
Windows Automation - Howard Feldman
lvrug
0
110
Separating Your Application from Rails - Brian Hughes
lvrug
0
170
SWIG and Ruby - David Grayson
lvrug
0
110
Practical Object-Oriented Design in Ruby - Charles Jackson
lvrug
3
150
The Hamster Gem - Ryan Mulligan
lvrug
1
130
Varnish+Redis - Russ Smith
lvrug
1
150
Lambdas and Pops - Jan Hettich
lvrug
0
120
Making Good Use of Fonts - Russ Smith
lvrug
1
120
Featured
See All Featured
Chasing Engaging Ingredients in Design
codingconduct
0
220
A Tale of Four Properties
chriscoyier
163
24k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
600
How to Grow Your eCommerce with AI & Automation
katarinadahlin
PRO
1
210
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
120k
JAMstack: Web Apps at Ludicrous Speed - All Things Open 2022
reverentgeek
1
470
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
65
56k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
300
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.2k
Documentation Writing (for coders)
carmenintech
77
5.4k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
390
Are puppies a ranking factor?
jonoalderson
1
3.6k
Transcript
writing files ryantm.com https://github.com/ryantm/lvrug_atomic
File.write('atomic1.txt', 'Hello world') atomic1.rb
strace (Linux) $ strace ruby atomic1.rb try dtruss on OS
X
$ strace ruby atomic1.rb …. open("atomic1.txt", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 7
fcntl(7, F_GETFD) = 0x1 (flags FD_CLOEXEC) fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffcafe2b60) = -1 ENOTT Y (Inappropriate ioctl for device) write(7, "Hello world", 11) = 11 close(7) = 0 ...
between open and write reading might read nothing (truncated) writes
to file erased
File.open('atomic2.txt', 'w') do |f| 1111.times do f.write 'Hello world' end
end atomic2.rb
$ strace ruby atomic2.rb open("atomic2.txt", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 7 fcntl(7,
F_GETFD) = 0x1 (flags FD_CLOEXEC) fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff12593520) = -1 ENOTT Y (Inappropriate ioctl for device) write(7, "Hello worldHello worldHello worl"..., 8184) = 8184 write(7, "Hello world", 11) = 11 write(7, "Hello worldHello worldHello worl"..., 4026) = 4026 close(7)
between write and write reader reads partial (corrupted?) data other
writers - truncation - interleaving
solutions use temporary files - simple use journaling - used
by most databases transactional file systems - NTFS has but deprecated - otherwise academic
require 'fileutils' File.write('temp.txt', 'hello world') FileUtils.mv('temp.txt', "atomic5.txt") atomic5.rb
$ strace ruby atomic5.rb open("temp.txt", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 7 …
write(7, "hello world", 11) = 11 close(7) = 0 stat("atomic5.txt", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0 stat("temp.txt", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0 stat("atomic5.txt", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0 stat("temp.txt", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0 stat("atomic5.txt", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0 rename("temp.txt", "atomic5.txt") = 0
requirements no one read temp file only one writer of
temp file only one file updater (file write locking)
further research how a rollback journal works http://www.sqlite.org/atomiccommit.html
further research how a rollback journal works http://www.sqlite.org/atomiccommit.html references.txt in
https://github.com/ryantm/lvrug_atomic
questions ryantm.com https://github.com/ryantm/lvrug_atomic