log src/org/tmatesoft/hg/repo/HgDataFile.java @ 713:661e77dc88ba tip

age author description
2013-08-05 Artem Tikhomirov Speed up (a) file rename history to minimize file reads; (b) file.isCopy(int) to read metadata for few revisions at once (use pattern assumes earlier revisions are likely to be queried, too); (c) HgIgnore.isIgnored by caching matched initial fragments (to substitute more expensive Matcher.matches with cheaper HashMap.contains)
2013-07-27 Artem Tikhomirov Issue 44: Renames/copies other than for the very first revision of a file are not recognized
2013-07-03 Artem Tikhomirov 1) Console push tool. 2) Pass class to blame into FileUtils
2013-06-11 Artem Tikhomirov Deprecated code removed
2013-05-30 Artem Tikhomirov Progress/cancel for HgDiffCommand. Renamed execute method v1.1rc2
2013-05-22 Artem Tikhomirov Diff/blame methods as command, their residence in HgDataFile was a mistake
2013-05-22 Artem Tikhomirov Explicit HgRuntimeException to facilitate easy switch from runtime to checked exceptions
2013-05-21 Artem Tikhomirov Refactor internals of blame support, tests
2013-05-18 Artem Tikhomirov RevlogStream: be aware of existence (not HgDataFile), facilitate use of an added HgDataFile over a commit; Rollback: be more sensitive about file changes (file size is not enough: write/rollback leaves it intact); tests
2013-05-17 Artem Tikhomirov Close FIS, not FileChannel, to clear both references to FileDescriptor right away
2013-05-07 Artem Tikhomirov Clean, organize and resolve some TODOs and FIXMEs: minor refactorings and comments
2013-05-06 Artem Tikhomirov Refactor HgBlameFacility: relevant action methods moved to proper home (HgDataFile), as facility doesn't provide anything but packaging of relevant methods/interfaces
2013-05-06 Artem Tikhomirov Refactor metadata parsing in HgDataFile, moved to standalone class
2013-05-03 Artem Tikhomirov Utilize RevisionLookup to speed-up getRevisionIndex of both manifest and changelog
2013-04-11 Artem Tikhomirov Let session context control creation of Path instances
2012-10-19 Artem Tikhomirov Do not use exception when only metadata processing is needed. For hg4j repo, status 0:-1 changed from 500 to 60 ms
2012-08-16 Artem Tikhomirov Refactoring: move HgRepository's implementation aspects to Internals (which is now its imlementation counterpart and primary repository class to be used by other parts of the library)
2012-06-18 Artem Tikhomirov Refactor LogFacility and SessionContext, better API for both
2012-04-17 Artem Tikhomirov Better argument names
2012-03-28 Artem Tikhomirov HgManifest#getFileRevisions refactored into #walkFileRevisions to match pattern throught rest of the library
2012-03-28 Artem Tikhomirov FIXMEs: exceptions, javadoc
2012-03-28 Artem Tikhomirov Deprecated code removed
2012-03-23 Artem Tikhomirov Major refactoring of exception handling. Low-level API uses RuntimeExceptions, while checked are left for higher level
2012-03-22 Artem Tikhomirov Respect long offsets in revlogs
2012-03-22 Artem Tikhomirov New and better name for HgFileInformer - HgChangesetFileSneaker. Explain (comments) ties between HgManifest, HgDataFile, HgChangesetFileSneaker and reasons for method placement
2012-03-22 Artem Tikhomirov Better names - non-confusing and aligned with the rest of API
2012-03-22 Artem Tikhomirov Explicit constant for regular file flags, access to flags for a given file revision
2012-02-27 Artem Tikhomirov Support WORKING_COPY constant for dataFile.length() operation
2012-02-23 Artem Tikhomirov Straighten out exceptions thrown when file access failed - three is too much
2012-02-15 Artem Tikhomirov Work on FIXME: correct HgDataFile#workingCopy with tests; BasicSessionContext with property override; platform-specific options to internals
2012-02-13 Artem Tikhomirov Few comments
2012-02-09 Artem Tikhomirov Comments/javadoc
2011-12-16 Artem Tikhomirov Update Javadoc with 'revision index'
2011-12-16 Artem Tikhomirov Use 'revision index' instead of the vague 'local revision number' concept in the API
2011-12-16 Artem Tikhomirov Use exceptions to expose errors reading mercurial data
2011-12-06 Artem Tikhomirov Newline filter shall respect whole stream when deciding whether to process line terminators, hence added stream preview functionality
2011-12-01 Artem Tikhomirov Propagate errors with exceptions up to a end client
2011-11-22 Artem Tikhomirov Add specific IAE subclass to handle wrong (e.g. outdated after rollback) revisions
2011-10-05 Artem Tikhomirov Move file tree history to upper API level
2011-09-30 Artem Tikhomirov Exception when analyzing metadata of an empty renamed file
2011-09-30 Artem Tikhomirov Propagate command's CancelSupport to low-level API. CancelSupport from context got priority over one from command
2011-09-29 Artem Tikhomirov Rework file history build approach to match rest of the API
2011-09-22 Artem Tikhomirov Experimental code to build file history, handy access to changeset added
2011-09-22 Artem Tikhomirov Experimental code to build file history
2011-09-17 Artem Tikhomirov Share range check code
2011-09-16 Artem Tikhomirov Issue 11: Error log facility. SessionContext to share common facilities
2011-08-29 Artem Tikhomirov Favor delegation over generalization
2011-08-29 Artem Tikhomirov Tailored Map implementation with int keys
2011-08-25 Artem Tikhomirov Issue 10: Report file content length with respect of metadata. Respect dirstate parents for WC's status. Exceptions to keep useful attributes of the location
2011-07-14 Artem Tikhomirov Avoid sorting revision range twice
2011-06-23 Artem Tikhomirov Improved reading of sparse revisions from a revlog
2011-06-23 Artem Tikhomirov Do not expect file history to be ordered
2011-06-10 Artem Tikhomirov Allow access to working copy content through HgDataFile. Give access to repository's working dir
2011-06-03 Artem Tikhomirov Optimize file history walk not to iterat over whole changelog for sparse and distant revisions
2011-05-16 Artem Tikhomirov Issue 5: Facilities for progress and cancellation. More specific exceptions. Exceptions from callbacks as RuntimeException
2011-03-10 Artem Tikhomirov Record reasons for slow status for future reference
2011-03-09 Artem Tikhomirov Integer offsets and file length explictly, rather than casts throughout code. Inflater may benefit from total length hint, but shall calculate it by its own if needed
2011-03-09 Artem Tikhomirov Merged branch wrap-data-access into default for resource-friendly data access. Updated API to promote that friendliness to clients (channels, not byte[]). More exceptions base src/com/tmate/hgkit/ll/HgDataFile.java@76b5a92dde43
2011-02-23 Artem Tikhomirov Exceptions, javadoc. Initial cancel and progress support
2011-02-16 Artem Tikhomirov explicit op name instead math op to get last rev number
2011-02-16 Artem Tikhomirov Keep record if we tried and found no metadata for a given revision
2011-02-16 Artem Tikhomirov core.Path to util.Path as it's not Hg repo dependant
2011-02-16 Artem Tikhomirov core.Cset renamed to HgChangeset; repo.Changeset moved into HgChangelog
2011-02-04 Artem Tikhomirov Conditionally apply filters to file content
2011-02-03 Artem Tikhomirov Introduced channels to pipeline (and easily filter) data streams
2011-01-28 Artem Tikhomirov Updated contact address to support@hg4j.com
2011-01-26 Artem Tikhomirov Status between two revisions to recognize copy/rename
2011-01-25 Artem Tikhomirov TreeMap are more effective when keys are unique
2011-01-25 Artem Tikhomirov Skip metadata in the beginning of a file content. Parse metadata, recognize copies/renames
2011-01-24 Artem Tikhomirov Moved RevlogStream implementation into .internal
2011-01-24 Artem Tikhomirov Complete refactoring to org.tmatesoft base src/com/tmate/hgkit/ll/HgDataFile.java@0097136ff41f