Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanishqjasoria/file_tracking
Coding Task: File Tracking for in-toto
https://github.com/tanishqjasoria/file_tracking
Last synced: 13 days ago
JSON representation
Coding Task: File Tracking for in-toto
- Host: GitHub
- URL: https://github.com/tanishqjasoria/file_tracking
- Owner: tanishqjasoria
- Created: 2019-01-30T21:25:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T20:55:23.000Z (almost 6 years ago)
- Last Synced: 2024-11-05T22:44:07.169Z (2 months ago)
- Language: Python
- Homepage:
- Size: 4.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# File Tracking
##### Coding Task: File Tracking for in-totoGiven two "snapshots" of a file structure -- 'before' and 'after' -- determine which files have been added, which have been removed, which have been modified, and which have remained unchanged.
The 'before' and 'after' metadata is provided as Python dictionaries. The keys in the dictionary are filepaths, and the values are hexadecimal strings representing the hashes of the corresponding files. The output should be in the form of four lists of filepaths: 'unchanged', 'modified', 'added', and 'removed'.
Your code should be readable and roughly follow these lab guidelines. Don't worry too much about style, but write code that is easy to read: provide comments that explain why things were done one way or another -- comments that focus on 'why' more than 'what'. I'll judge the code based on whether or not it works for some sample sets, and whether or not it makes sense, is well organized, and is well commented. You can send me the code in response, or provide it on GitHub.
Input Example:
before = {
'one.tgz': '1234567890abcdef',
'foo/two.tgz': '0000001111112222',
'three.txt': '1111222233334444'
'bar/bat/four.tgz': '6677889900112233'
}
after = {
'five.txt': '5555555555555555',
'one.tgz': '1234567890abcdef',
'foo/two.tgz': 'ffffffffffffffff',
'bar/bat/four.tgz': '6677889900112233',
'baz/six.tgz': '6666666666666666'
}
Output Example:
unchanged = ['one.tgz', 'bar/bat/four.tgz']
modified = ['foo/two.tgz']
added = ['five.txt', 'baz/six.tgz']
removed = ['three.txt']
Bonus : You can write your code to optionally take a before and an after archive (zip, tar.gz, etc. -- your choice) and calculate the 'before' and 'after' metadata yourself by calculating hashes of the files provided.