Skip to content

briancampbell-es/lockchart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

lockchart

Utility for verifying OS X file access synchronisation primitives against local and remote filesystems.

Locking on local filesystem

$ lockchart file file
           \     sharemode 
sharemode   \    Attempted mode
Current mode \   exclusive | shared        | none
                 R   W  RW |   R   W  RW   | R   W  RW
exclusive    R   x   x   x     x   x   x     .   .   .   
             W   x   x   x     x   x   x     .   .   .   
             RW  x   x   x     x   x   x     .   .   .   
----------
shared       R   x   x   x     .   .   .     .   .   .   
             W   x   x   x     .   .   .     .   .   .   
             RW  x   x   x     .   .   .     .   .   .   
----------
none         R   .   .   .     .   .   .     .   .   .   
             W   .   .   .     .   .   .     .   .   .   
             RW  .   .   .     .   .   .     .   .   .   

x = open failed
. = open succeeded

Locking on mounted AFP filesytem

$ lockchart /Volumes/afp/file /Volumes/afp/file 
           \     sharemode 
sharemode   \    Attempted mode
Current mode \   exclusive   | shared      | none
                 R   W  RW   | R   W  RW   | R   W  RW
exclusive    R   x   x   x     x   x   x     x   x   x   
             W   x   x   x     x   x   x     x   x   x   
             RW  x   x   x     x   x   x     x   x   x   
----------
shared       R   x   x   x     .   x   x     .   x   x   
             W   x   x   x     x   x   x     .   x   x   
             RW  x   x   x     x   x   x     .   x   x   
----------
none         R   x   x   x     .   .   .     .   .   .   
             W   x   x   x     x   x   x     .   .   .   
             RW  x   x   x     x   x   x     .   .   .   

x = open failed
. = open succeeded

Locking on mounted SMB filesytem

$ lockchart /Volumes/smb/file1 /Volumes/smb/file
           \     sharemode 
sharemode   \    Attempted mode
Current mode \   exclusive   | shared      | none
                 R   W  RW   | R   W  RW   | R   W  RW
exclusive    R   x   x   x     x   x   x     x   x   x   
             W   x   x   x     x   x   x     x   x   x   
             RW  x   x   x     x   x   x     x   x   x   
----------
shared       R   x   x   x     .   x   x     .   x   x   
             W   x   x   x     x   x   x     .   x   x   
             RW  x   x   x     x   x   x     .   x   x   
----------
none         R   x   x   x     .   .   .     .   .   .   
             W   x   x   x     x   x   x     .   .   .   
             RW  x   x   x     x   x   x     .   .   .   

x = open failed
. = open succeeded

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%