summaryrefslogtreecommitdiff
path: root/LocationLog.hs
Commit message (Collapse)AuthorAge
* do not need to use Git.relative here (it is a no-op in this case anyway)Gravatar Joey Hess2010-11-28
|
* hlint tweaksGravatar Joey Hess2010-11-22
| | | | Remotes.hs next, and also Backend/* and Command/*
* trim exportsGravatar Joey Hess2010-11-15
|
* more Wall cleaningGravatar Joey Hess2010-10-31
|
* write to tmp fileGravatar Joey Hess2010-10-31
| | | | | | | Writing to a tmp file means no locking is needed, and it fixes a bug introduced by the last commit, which made log files be read lazily, so they could still be open when written, which breaks due to haskell's internal locking.
* more space saving by not locking location log for readGravatar Joey Hess2010-10-30
| | | | | | | | | | | | | | | | Actions that need to read all the location logs, like "git annex get .", were still using a lot of memory, and profiling pointed at the location log reading as the problem. Not locking them for read, and thus avoiding the strict reading fixes the problem, although I don't quite understand why. (Oddly, -sstderr profiling did not show the memory as used, though top showed dozens of MB being used.) Anyway, it's fine to not lock location logs for read, since the log format and parser should be safe if a partial read of a file being written happens. Note that that could easily happen anyway, if doing a git pull, etc, especially if git needs to union merge in changes from elsewhere. The worst that will happen is git-annex could get a bad or out of date idea about locations and refuse to eg, --drop something.
* syntax tweaksGravatar Joey Hess2010-10-28
|
* copyright statements0.02Gravatar Joey Hess2010-10-27
|
* use git command queueGravatar Joey Hess2010-10-26
|
* git annex move --from remote almost workingGravatar Joey Hess2010-10-25
|
* experimentally, removing all actual git committingGravatar Joey Hess2010-10-18
| | | | Idea is the user will commit when ready, just stage everything.
* remove some old todosGravatar Joey Hess2010-10-17
|
* tweaksGravatar Joey Hess2010-10-16
|
* more reorg, spiffed up state monadGravatar Joey Hess2010-10-14
|
* convert GitRepo to qualified importGravatar Joey Hess2010-10-14
|
* add module that only exports abstract typesGravatar Joey Hess2010-10-14
|
* almost able to get files from remotes now!Gravatar Joey Hess2010-10-13
|
* bugfixesGravatar Joey Hess2010-10-12
|
* now that a uuid is used, don't need to rejoinGravatar Joey Hess2010-10-12
|
* record annexed files in logGravatar Joey Hess2010-10-12
|
* locationlog will use uuidsGravatar Joey Hess2010-10-12
|
* explicit exportsGravatar Joey Hess2010-10-11
|
* split up TypesGravatar Joey Hess2010-10-11
|
* use Data.Time instead of Data.DateTimeGravatar Joey Hess2010-10-10
| | | | | The latter has shady rounding. The new module is a bit harder to use, but worth it, it adds subsecond timestamps too.
* updateGravatar Joey Hess2010-10-10
|
* convert GitRepo to struct with constructorGravatar Joey Hess2010-10-10
|
* updateGravatar Joey Hess2010-10-10
|
* updateGravatar Joey Hess2010-10-10
|
* log compactionGravatar Joey Hess2010-10-10
|
* fixed close after lockingGravatar Joey Hess2010-10-10
|
* strictness and handle closingGravatar Joey Hess2010-10-10
|
* robustness fixGravatar Joey Hess2010-10-10
| | | | avoid crash if the seconds field is not numeric
* robustnessGravatar Joey Hess2010-10-09
|
* adding file presence calculation codeGravatar Joey Hess2010-10-09
|
* add status field to logGravatar Joey Hess2010-10-09
|
* add logFileGravatar Joey Hess2010-10-09
|
* first moduleGravatar Joey Hess2010-10-09