FilesDB: Διαφορά μεταξύ των αναθεωρήσεων
Dds (συζήτηση | συνεισφορές) (→Data: Add owner, path) |
Dds (συζήτηση | συνεισφορές) (→Commands: Add rescan command) |
||
| (Μία ενδιάμεση αναθεώρηση από τον ίδιο χρήστη δεν εμφανίζεται) | |||
| Γραμμή 12: | Γραμμή 12: | ||
* extension | * extension | ||
* dirname | * dirname | ||
* Scan identifier | |||
Less useful data that can also be stored: | Less useful data that can also be stored: | ||
| Γραμμή 45: | Γραμμή 46: | ||
;sc|scan | ;sc|scan | ||
: scan a location and add to the database | : scan a location and add to the database | ||
;rs|rescan | |||
: rescan a location and update the database according to added, changed, and removed files | |||
;qs|quickscan | ;qs|quickscan | ||
: quick-scan a location (ignore hashes) and add to the DB | : quick-scan a location (ignore hashes) and add to the DB | ||
;f|find|s|search | ;f|find|s|search | ||
: search for a file, according to criteria | : search for a file, according to criteria | ||
== Storage == | == Storage == | ||
Τελευταία αναθεώρηση της 17:12, 15 Φεβρουαρίου 2019
FilesDB — utilities to handle file metadata
Data
The following data should be stored for each file:
- path
- size
- full path (relative to scan point)
- a number of hashes (md5, sha-1, xxh32, xxh64, git-sha, ssdeep, sdhash, ...)
- basename
- extension
- dirname
- Scan identifier
Less useful data that can also be stored:
- permissions
- dates (creation, modification, access)
- owner
Each database should also keep track of all the commands (scans) that were used to add content.
The data model should be extensible (for example, more hashes may be added in later versions), so the data storage should take this parameter into account.
Commands
The exact set of commands will be determined later.
However, the following should give a reasonable first approach.
The commands can be implemented as subcommands, like in git.
- h|help
- provide help
- v|version
- display the software version
- l|list
- list all scans in a database
- st|stats
- display statistics about the DB contents
- sc|scan
- scan a location and add to the database
- rs|rescan
- rescan a location and update the database according to added, changed, and removed files
- qs|quickscan
- quick-scan a location (ignore hashes) and add to the DB
- f|find|s|search
- search for a file, according to criteria
Storage
All the information is stored into an SQL database.
Individual SQLite files seem to be the perfect point between functionality and complexity, allowing all operations on data and easy transfer between systems.
All the command-line utilities should accept a "-d|--database <arg>" to specify the location of this file.