Everything
is a
F
ile
UNIX
But!
What's a FILE?
Data?
Bytes?
Lots of Bytes...
Stream Bytes
Technically,
How does UNIX handle these so called "files"...?
File Descriptors
Basically each file is only identified by its file descriptor aka an int which has the id of the file.
So is it really true?
Not really...
"Everything is a stream of bytes, and everything that's not a stream of bytes is a process."
- Lots of smart people :P
But what's so special about it?
Well for starters the world becomes very simple.
What's everything?
Files [-]
Directories [d]
Symlinks [l]
Special Files (Devices) [c]
Sockets [s]
Named Pipes [p]
So now all our abstractions for one of these work for all of them...
`read()` works with all of them too
`write()` does too
links can point to other files means they can point to anything else even other links..... lol
you can do everything you can with one file that you can with another without any concern for its type which makes life of a user much simpler.
GOALS?
Consistency
consistent APIs make for happy programmers
Efficient IPC
efficiency is the gold standard of life
Robust I/O
you have device files which allow for pseudo, character, block devices
Thank You...
Swarnim Arun
@swarnimarun
swarnimarun11@gmail.com
Made with Slides.com