* [domain] Define Hashes in domain package
* [filesystem] Load and parse any .thorp.cache files found
* [filesystem] Use cached file data when available and up-to-date
* [lib] FileScanner refactoring
* [filesystem] scan sub-dirs first to minimise time cache is on heap
* [filesystem] Write new cache data to temp file
* [lib] replace cache file when finished updating
* [filesystem] AppendLines to correct file with new lines
* [domain] decode HashType from String
* [filesystem] Store last modified time as epoch milliseconds
* [filesystem] parse lastmodified as a long
* [filesystem] use all hash values in cache
* [lib] FileScanner rearrange code
* [lib] Create and use a single cache file per source
* [storage-aws] Use ETag hash from cache when available
* [filesystem] Merge file data together correctly
* [filesystem] Handle exceptions thrown by Files.mode correctly
* [readme] Add section on caching
* [changelog] updated
* [changelog] add pending dependencies notes
* [lib] Filters should not name methods after their defining object
* [lib] Fix up test
* [changelog] updated
* [readme] updated
* [core] ConfigQuery added sources()
* [cli] ParseArgs allow specifying multiple sources
* [domain,core,cli] Source datatype changed to Path
* [domain] Sources added to hold multiple paths in order
* [domain] Config sources change datatype to Sources
* [core] Scan sources for .thorp.config and include any sources listed
This allows the inclusion of a `.thorp.config` file in a source with a
single line `source = ....` that causes that other source to also be
synched into the same remote prefix as the current source.
* [core] ConfigurationBuilderTest add more pending tests
* [[core] ConfigurationBuilderTest rewrite using loan-pattern for fixtures
* [core] ConfigOptionTest use TemporaryFolder
* [core] ConfigOptionTest remove unused fields
* [cli] ParseArgsTest don't use get on an Option
* [core] ConfigurationBuilderTest don't use get on Either
* [core] TemporaryFolder Move import to top of file
* [core] TemporaryFolder use Try over try-finally
* [core] ConfigurationBuilderTest don't use get on Either
* [core] TemporaryFolders.withDirectory propogate errors
* [core] TemporaryFolders add writeFile and createFile
* [core] PlanBuilderTest create a plan with two sources with unique files in both
* [core] ActionGenerator only upload file by name in first source
create a plan
two sources
same filename in both
- only upload file in first source
* [domain] LastModified with no params is now()
* [core] PlanBuilderTest 2 sources w/remote only in 2nd src do nothing
* [core] PlanBuilderTest 2 sources w/remote only in 2nd src do nothing
* [domain] RemoteKey map to a file when prefix is empty
* [domain] S3ObjectData defaults to empty
* [core] KeyGenerator Avoid delimiter when empty prefix key
* [core] PlanBuilderTest when remote not in sources delete from remote
* [core] PlanBuilderTest extract helper md5Hash()
* [core] PlanBuilderTest one source a file no matching remote key
* [core] PlanBuildingTest file with matching key and hash do nothing
* [core] PlanBuilderTest file w/matching remote key and different hash
* [core] PlanBuilderTest a remote key with and without local file
* [core] DummyStorageService Use wildcards when selecting more than 6 elements
* [changelog] Updated
* [readme] Updated
* [domain] Config Add batch-mode flag
* [core] ConfigOption Add BatchMode option
* [core] ConfigQuery Add batchMode query
Also replaced verbose exists case clauses with a simple contains.
* [core] ConfigOptions added to replace Seq[ConfigOption]
* [core] Syncronise rename method to createPlan
* [cli] Program rename apply as run
* [storage-aws] S3StorageServiceBuilder stop using IO to create object
* [storage-aws] S3StorageServiceBuilder make default service lazy
* [storage-aws] Rename S3ClientCopier => Copier
* [storage-aws] Rename S3ClientDeleter => Deleter
* [storage-aws] Rename S3ClientObjectLister => Lister
* [storage-aws] Only attach upload listener when in batch mode
Only detects batch mode when selected as a command line option
* [core] Synchronise use leftMap rather than swap.map.swap
* [cli] ParseArgs add `-B` and `--batch` options to enable batch mode
* [core] ThorpArchive logs file uploaded when in batch mode
* [aws-lib] Uploader provide request with the already calculated md5 hash
* [aws-lib] remove unused accepts method
* [aws-lib] Uploader refactoring
* [domain] Config remove unused threshold and max retries items
* [core] Show upload errors in summary
* [domain] LocalFile add helper to explicitly compare by hash value
Looking to add an optional field to MD5Hash but we want to do our
checks here only on the hash value, not whether a digest is available
or not.
* [core] Sync refactoring
* [core] SyncSuite invoke subject inside it method and after declaring expectations
* [core] SyncSuite use the localfile hash rather than something arbitrary
* [cli] Add `--no-global` and `--no-user` options
* [core] LocalFileStream refactoring
* [core] SyncSuite: ignore user and global configuration files
* [domain] MD5Hash now can optionally store the base64 encoded hash
* [core] MD5HashGenerator pass the digest to MD5Hash
* [aws-lib] Uploader use the base64 encoded hash
* [changelog] updated
* [Filter => Exclude] rename class
* [Config] rename filters field as excludes
* [readme,ParseArgs] change commandline arg f to x and filters to excludes
* [SyncSuite] rename val
* [ExcludeSuite] rename vars
* [SyncLogging] Update message
* Support multiple filters
* Clean up imports
* [S3ClientLogging] log the remote key value
* Update changelog, readme and long arg name
* [SyncSuite] update test
* [sync] move thunks to s3client to bottom of class
Also, use the thunk methods from within run rather than accessing the
s3client object directly.
* Layout tweaks to put each parameter on own line
* [syncsuite] value renames and move sync.run outside it() call
Future tests will be evaluating the result of that call, so this
avoids repeatedly calling it.
* Add first pass at copy methods and some delete stubs
* [Bucket] Convert from type alias for String to a case class
* [SyncSuite] mark new tests as pending
* [RemoteKey] Convert from type alias for String to a case class
* [MD5Hash] Convert from type alias for String to a case class
* [LastModified] Convert from type alias for String to a case class
* [LocalFile] Revert to using a normal File
* [Sync] Use a for-comprehension and restructure S3MetaData
The for-comprehension will make it easier to generate multiple actions
out of the stream of enriched metadata. The restructured S3MetaData
avoids the need to wrap it in an Either in some cases.
* [ToUpload] Add an wrapper to indicate action required on File
* [S3Action] Stub actions for IO events
* [S3Action] Use UploadS3Action
* [Sync] Fix formating when echoing parameters
* [logging] Change log level down to 4 for listing every file considered
* [Sync] Use a case class to hold counters
* [HashModified] Add case class to replace MD5Hash, LastModified tuples
* [logging] Move file considered logging to source of files
Rather than logging this where adding meta data, move to where the
files are being initially identified.
* [logging] Log all final counters
* Pass Config and HashLookup as implicit parameters
* [LocalFileStream] rename method as findFiles
* [S3MetaDataEnricher] rename method as getMetadata
* Rename selection filter and uploader trait and methods
* [MD5HashGenerator] Extract as trait
* [Action] Convert ToUpload into an Action sealed trait
* [ActionGenerator] refactored and removed logging
* fix up tests
* [LocalFileStream] adjust logging
* [RemoteMetaData] Added
* [ActionGenerator] remove redundant braces
* [LocalFile] Added as wrapper for File
* [Sync] run: remove redundant braces
* [Sync] run: rename HashLookup as S3ObjectsData
* WIP - toward copy action
* Extract S3ObjectsByHash for grouping
* extract internal wrapper for S3CatsIOClient
Remove some boiler plate from the middle of a test
* Explicitly name the Map parameters in extected result
* All lastModified are the same to avoid confusion
We aren't testing this field, just that the keys and hash values are correct.
* Rename variable
* space out object cxreation
* Fix test - error in expected result
Code has been working for ages!
* [readme] condense and simplify behaviour table, adding option delete
Reduce the complexity by only noting the distinct attributes leading
to each action.
Add the action of delete when a local file is missing.
* [S3MetaDataEnricherSuite] rename tests and note missing tests
* [ActionGeneratorSuite] rename tests and note missing tests
* Note unwritten tests as such
* [ActionGenerator] #2 local exists, remote is missing, other matches
* [S3ClientSuite] fix tests
* [S3MetaDataEnricherSuite] #2a local exists, remote is missing, remote matches, other matches - copy
* [S3MetaDataEnricherSuite] drop 'remote is missing, remote matches'
Impossible to represent this combination
* [S3MetaDataEnricherSuite] #3 local exists, remote is missing, remote no match, other no matches - upload
* [S3MetaDataEnricherSuite] Tests #1-3 rename variables consistantly
* [S3MetadataEnricherSuite] #4 local exists, remote exists, remote no match, other matches - copy
* [S3MetadataEnricherSuite] #5 local exists, remote exists, remote no match, other no matches - upload
* [S3MetadataEnricherSuite] drop test #6 - no way to make request
* [ActionGeneratorSuite] standardise tests 2-4
* [ActionGeneratorSuite] #1 local exists, remote exists, remote matches - do nothing
* [ActionGeneratorSuite] Comment expected outcome
* [ActionGeneratorSuite] #5 local exists, remote exists, remote no match, other no matches - upload
* [Action] Add ToDelete case class
* Use ToDelete and fix up return types for DeleteS3Action
* [ActionGenerator] Add explicit case for #1
* [ActionGenerator] Add explicit check for local exists in #2
* [ActionGenerator] match case against #3
* [ActionGenerator] simplify case and match against #5
* [ActionGenerator] Add case for #4
* [ActionGenerator] Remote explicit checks for file existing
If we are called with a LocalFile parameter then we assume the file exists.
* [ActionGenerator] Avoid #1 matching condition #5
* [ActionGeneratorSuite] enable tests
* [test] remove stray println
* [SyncSuite] Add test helper RecordingSync
* [SyncSuite] Use RecordingSync
* [SyncSuite] enable rename test - excluding delete test
* [Sync] log and increment counters for copy and delete
* [Sync] Use case matched RemoteKey in log message
* [Sync] Reorder actioins to do copy then upload then delete
* [S3Action] Drop Move as a distinct action
Can be implemented as a Copy followed by a Delete.
* [S3Action] Actions are ordered Copy, Upload then Delete
This allows sequencing of actions so that all the quick to accomplish
copies take place before bandwidth/time costly updates or destructive
deletes. Deletes come last after they have had the opportunity to b
used as the source for any copies.
* [Sync] Use S3Action's default sorting
* [Sync] extract logging of activity
* [SyncLogging] Extract logging out of Sync
Single Responsibility principle - Sync knows nothing about how it
logs, it just delegates to SyncLogging.
* [Sync] Rename variables and extract sort into private def
* [SyncLogging] Use IO context
* [SyncLogging] Remove moved counter
* [SyncLogging] Clean up an log start of run config info
* Verify that IO actions are evaluated before the program terminates
* [Sync] ensure logging runs
* [ActionGenerator] Don't upload files every time
* [ActionGenerator] fix remote hash for #5
* [SyncSuite] Add tests for delete and delete after rename
* [RemoteKey] Add asFile and isMissingLocally helpers
* [Sync] Generate delete actions
* Remove old extensions upon MD5HashGenerator
* [MD5Hash] prevent confusion by never allowing quotes
This means we need to filter quotes from md5hash values at source
* [Sync] ensure start log message is run
* [ThorpS3Client] Fix passing parameters for source key
* [ThorpS3Client] reformat byKey for clarity
* [S3Client] Add level 5 logging around s3 sdk calls
* fix up tests
* [config,parseargs] Accept v/verbose command line argument
* [parseargs] lowercase program name
* [logging] Log messages based on command line argument
* [readme] update usage