summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Move crlf conversion into buf_textautocrlf-fixesRussell Belfer2013-03-257-64/+111
| | | | | | | | | | | | | | This adds crlf/lf conversion functions into buf_text with more efficient implementations that bypass the high level buffer functions. They attempt to minimize the number of reallocations done and they directly write the buffer data as needed if they know that there is enough memory allocated to memcpy data. Tests are added for these new functions. The crlf.c code is updated to use the new functions. Removed the include of buf_text.h from filter.h and just include it more narrowly in the places that need it.
* don't convert CRLF to CRCRLFEdward Thomson2013-03-251-4/+9
|
* Add has_cr_in_index check to CRLF filterRussell Belfer2013-03-252-10/+63
| | | | | | | | | | | | This adds a check to the drop_crlf filter path to check it the file in the index already has a CR in it, in which case this will not drop the CRs from the workdir file contents. This uncovered a "bug" in `git_blob_create_fromworkdir` where the full path to the file was passed to look up the attributes instead of the relative path from the working directory root. This meant that the check in the index for a pre-existing entry of the same name was failing.
* oid: Do not parse OIDs longer than 40Vicent Marti2013-03-251-1/+1
|
* Merge pull request #1428 from xavier-l/nul-terminated-oidVicent Martí2013-03-251-0/+5
|\ | | | | Nul terminated oid
| * git_oid_fromstrn already sets a maximum on the length of the stringXavier L2013-03-211-1/+1
| |
| * Added an oid function that accepts nul-terminated stringsXavier L2013-03-211-0/+5
| |
* | graph: make the ahead-behind docs clearerCarlos Martín Nieto2013-03-221-8/+8
|/ | | | | Explain it in local-upstream branch terms so it's easier to grasp than with the `one` and `two` naming from the merge-base code.
* Three submodule status bug fixesRussell Belfer2013-03-184-8/+26
| | | | | | | | | | | | | | | | 1. Fix sort order problem with submodules where "mod" was sorting after "mod-plus" because they were being sorted as "mod/" and "mod-plus/". This involved pushing the "contains a .git entry" test significantly lower in the stack. 2. Reinstate behavior that a directory which contains a .git entry will be treated as a submodule during iteration even if it is not yet added to the .gitmodules. 3. Now that any directory containing .git is reported as submodule, we have to be more careful checking for GIT_EEXISTS when we do a submodule lookup, because that is the error code that is returned by git_submodule_lookup when you try to look up a directory containing .git that has no record in gitmodules or the index.
* Merge pull request #1417 from arrbee/opts-for-pathsVicent Martí2013-03-1817-224/+512
|\ | | | | Implement opts interface for global/system file search paths
| * Fixes and cleanupsRussell Belfer2013-03-184-73/+28
| | | | | | | | | | Get rid of some dead code, tighten things up a bit, and fix a bug with core::env test.
| * Switch search paths to classic delimited stringsRussell Belfer2013-03-187-112/+162
| | | | | | | | | | | | | | | | | | | | | | | | This switches the APIs for setting and getting the global/system search paths from using git_strarray to using a simple string with GIT_PATH_LIST_SEPARATOR delimited paths, just as the environment PATH variable would contain. This makes it simpler to get and set the value. I also added code to expand "$PATH" when setting a new value to embed the old value of the path. This means that I no longer require separate actions to PREPEND to the value.
| * Implement global/system file search pathsRussell Belfer2013-03-1516-225/+508
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this work is to expose the search logic for "global", "system", and "xdg" files through the git_libgit2_opts() interface. Behind the scenes, I changed the logic for finding files to have a notion of a git_strarray that represents a search path and to store a separate search path for each of the three tiers of config file. For each tier, I implemented a function to initialize it to default values (generally based on environment variables), and then general interfaces to get it, set it, reset it, and prepend new directories to it. Next, I exposed these interfaces through the git_libgit2_opts interface, reusing the GIT_CONFIG_LEVEL_SYSTEM, etc., constants for the user to control which search path they were modifying. There are alternative designs for the opts interface / argument ordering, so I'm putting this phase out for discussion. Additionally, I ended up doing a little bit of clean up regarding attr.h and attr_file.h, adding a new attrcache.h so the other two files wouldn't have to be included in so many places.
* | Merge pull request #1420 from KindDragon/static-code-analyzer-warningsVicent Martí2013-03-1820-47/+61
|\ \ | | | | | | Several warnings detected by static code analyzer fixed
| * | Several warnings detected by static code analyzer fixedArkadiy Shapkin2013-03-1820-47/+61
| |/ | | | | | | | | | | | | Implicit type conversion argument of function to size_t type Suspicious sequence of types castings: size_t -> int -> size_t Consider reviewing the expression of the 'A = B == C' kind. The expression is calculated as following: 'A = (B == C)' Unsigned type is never < 0
* | Merge pull request #1080 from carlosmn/config-set-nullVicent Martí2013-03-181-0/+5
|\ \ | |/ |/| Failing config related test
| * config: don't allow passing NULL as a value to setCarlos Martín Nieto2013-03-091-0/+5
| | | | | | | | | | | | Passing NULL is non-sensical. The error message leaves to be desired, though, as it leaks internal implementation details. Catch it at the `git_config_set_string` level and set an appropriate error message.
* | odb_pack: Unused functionsVicent Marti2013-03-151-20/+0
| |
* | pool: Internal struct nameVicent Marti2013-03-151-6/+5
| |
* | Merge pull request #1413 from arrbee/more-iterator-refactorVicent Martí2013-03-159-262/+245
|\ \ | | | | | | Further tree_iterator refactoring
| * | Added pool freelist struct for readabilityRussell Belfer2013-03-141-7/+15
| | | | | | | | | | | | | | | | | | This adds a git_pool_freelist_item struct that makes it a little easier to follow what's going on with the pool free list block management code. It is functionally neutral.
| * | Fix valgrind issues (and mmap fallback for diff)Russell Belfer2013-03-143-21/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a number of issues identified by valgrind - mostly missed free calls. Inside valgrind, mmap() may fail which causes some of the diff tests to fail. This adds a fallback code path to diff_output.c:get_workdir_content() where is the mmap() fails the code will now try to read the file data directly into allocated memory (which is what it would do if the data needed to be filtered anyhow).
| * | Improved tree iterator internalsRussell Belfer2013-03-146-240/+201
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This updates the tree iterator internals to be more efficient. The tree_iterator_entry objects are now kept as pointers that are allocated from a git_pool, so that we may use git__tsort_r for sorting (which is better than qsort, given that the tree is likely mostly ordered already). Those tree_iterator_entry objects now keep direct pointers to the data they refer to instead of keeping indirect index values. This simplifies a lot of the data structure traversal code. This also adds bsearch to find the start item position for range- limited tree iterators, and is more explicit about using git_path_cmp instead of reimplementing it. The git_path_cmp changed a bit to make it easier for tree_iterators to use it (but it was barely being used previously, so not a big deal). This adds a git_pool_free_array function that efficiently frees a list of pool allocated pointers (which the tree_iterator keeps). Also, added new tests for the git_pool free list functionality that was not previously being tested (or used).
* | | Fix various build warningsRussell Belfer2013-03-142-22/+22
|/ / | | | | | | This fixes various build warnings on Mac and Windows (64-bit).
* | Fix workdir iterator bugsRussell Belfer2013-03-131-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes two bugs with the workdir iterator depth check: first that the depth was not being decremented and second that empty directories were counting against the depth even though a frame was not being created for them. This also fixes a bug with the ENOTFOUND return code for workdir iterators when you attempt to advance_into an empty directory. Actually, that works correctly, but it was incorrectly being propogated into regular advance() calls in some circumstances. Added new tests for the above that create a huge hierarchy on the fly and try using the workdir iterator to traverse it.
* | MSVC: What could possibly be the size of a void*?Vicent Marti2013-03-121-1/+2
| |
* | Style: Reverse lhs and rhs of == comparisonsPhilip Kelley2013-03-121-2/+2
| |
* | Advertise and support side-band-64k when calling receive-packPhilip Kelley2013-03-123-36/+120
| |
* | Merge pull request #1408 from arrbee/refactor-iteratorsVicent Martí2013-03-1215-726/+875
|\ \ | | | | | | Refactor iterators
| * | Sorting function cleanup and MinGW fixRussell Belfer2013-03-113-15/+39
| | | | | | | | | | | | | | | | | | | | | Clean up some sorting function stuff including fixing qsort_r on MinGW, common function pointer type for comparison, and basic insertion sort implementation (which we, regrettably, fall back on for MinGW).
| * | Stabilize order for equiv tree iterator entriesRussell Belfer2013-03-111-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Given a group of case-insensitively equivalent tree iterator entries, this ensures that the case-sensitively first trees will be used as the representative items. I.e. if you have conflicting entries "A/B/x", "a/b/x", and "A/b/x", this change ensures that the earliest entry "A/B/x" will be returned. The actual choice is not that important, but it is nice to have it stable and to have it been either the first or last item, as opposed to a random item from within the equivalent span.
| * | Fix tree iterator advance using wrong name compareRussell Belfer2013-03-111-39/+43
| | | | | | | | | | | | | | | | | | | | | Tree iterator advance was moving forward without taking the filemode of the entries into account, equating "a" and "a/". This makes the tree entry comparison code more easily reusable and fixes the problem.
| * | Fix tree iterator path for tree issue + cleanupsRussell Belfer2013-03-111-60/+51
| | | | | | | | | | | | | | | | | | | | | This fixes an off by one error for generating full paths for tree entries in tree iterators when INCLUDE_TREES is set. Also, contains a bunch of small code cleanups with a couple of small utility functions and macro changes to eliminate redundant code.
| * | Use correct case path in icase tree iteratorRussell Belfer2013-03-101-30/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | If there are case-ambiguities in the path of a case insensitive tree iterator, it will now rewrite the entire path when it gives the path name to an entry, so a tree with "A/b/C/d.txt" and "a/B/c/E.txt" will give the true full paths (instead of case- folding them both to "A/B/C/d.txt" or "a/b/c/E.txt" or something like that.
| * | Make tree iterator handle icase equivalenceRussell Belfer2013-03-086-238/+308
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a serious bug in the previous tree iterator implementation. If case insensitivity resulted in member elements being equivalent to one another, and those member elements were trees, then the children of the colliding elements would be processed in sequence instead of in a single flattened list. This meant that the tree iterator was not truly acting like a case-insensitive list. This completely reworks the tree iterator to manage lists with case insensitive equivalence classes and advance through the items in a unified manner in a single sorted frame. It is possible that at a future date we might want to update this to separate the case insensitive and case sensitive tree iterators so that the case sensitive one could be a minimal amount of code and the insensitive one would always know what it needed to do without checking flags. But there would be so much shared code between the two, that I'm not sure it that's a win. For now, this gets what we need. More tests are needed, though.
| * | Add INCLUDE_TREES, DONT_AUTOEXPAND iterator flagsRussell Belfer2013-03-064-91/+308
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This standardizes iterator behavior across all three iterators (index, tree, and working directory). Previously the working directory iterator behaved differently from the other two. Each iterator can now operate in one of three modes: 1. *No tree results, auto expand trees* means that only non- tree items will be returned and when a tree/directory is encountered, we will automatically descend into it. 2. *Tree results, auto expand trees* means that results will be given for every item found, including trees, but you only need to call normal git_iterator_advance to yield every item (i.e. trees returned with pre-order iteration). 3. *Tree results, no auto expand* means that calling the normal git_iterator_advance when looking at a tree will not descend into the tree, but will skip over it to the next entry in the parent. Previously, behavior 1 was the only option for index and tree iterators, and behavior 3 was the only option for workdir. The main public API implications of this are that the `git_iterator_advance_into()` call is now valid for all iterators, not just working directory iterators, and all the existing uses of working directory iterators explicitly use the GIT_ITERATOR_DONT_AUTOEXPAND (for now). Interestingly, the majority of the implementation was in the index iterator, since there are no tree entries there and now have to fake them. The tree and working directory iterators only required small modifications.
| * | Retire spoolandsort iteratorRussell Belfer2013-03-064-188/+25
| | | | | | | | | | | | | | | Since the case sensitivity is moved into the respective iterators, this removes the spoolandsort iterator code.
| * | Make iterator APIs consistent with standardsRussell Belfer2013-03-068-273/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The iterator APIs are not currently consistent with the parameter ordering of the rest of the codebase. This rearranges the order of parameters, simplifies the naming of a number of functions, and makes somewhat better use of macros internally to clean up the iterator code. This also expands the test coverage of iterator functionality, making sure that case sensitive range-limited iteration works correctly.
| * | Add const to some buffer functionsRussell Belfer2013-03-061-6/+5
| | |
* | | Merge pull request #1406 from cpthamilton/local_pushVicent Martí2013-03-113-32/+242
|\ \ \ | | | | | | | | Implemented push on the local transport
| * | | Implemented push on the local transportabepern2013-03-113-32/+242
| | | |
* | | | handle small files in similarity metricsEdward Thomson2013-03-111-2/+24
|/ / /
* | | diff: allow asking for diffs with no contextCarlos Martín Nieto2013-03-092-2/+5
| |/ |/| | | | | | | | | | | | | | | Previously, 0 meant default. This is problematic, as asking for 0 context lines is a valid thing to do. Change GIT_DIFF_OPTIONS_INIT to default to three and stop treating 0 as a magic value. In case no options are provided, make sure the options in the diff object default to 3.
* | Merge pull request #1403 from ethomson/tracingVicent Martí2013-03-072-0/+95
|\ \ | | | | | | Optional tracing back to consumers
| * | optional tracingEdward Thomson2013-03-072-0/+95
| | |
* | | immutable references and a pluggable ref databaseEdward Thomson2013-03-0716-1402/+1606
|/ /
* | refs: explicitly catch leading slashesCarlos Martín Nieto2013-03-071-0/+3
|/ | | | | | | | | | It's somewhat common to try to write "/refs/tags/something". There is no easy way to catch it during the main body of the function, as there is no way to distinguish whether it's a leading slash or a double slash somewhere in the middle. Catch this at the beginning so we don't trigger the assert in is_all_caps_and_underscore().
* added missing free for git_note in clar testsNico von Geyso2013-03-061-1/+1
|
* fixed minor issues with new note iteratorNico von Geyso2013-03-062-51/+37
| | | | | * fixed style issues * use new iterator functions for git_note_foreach()
* use git_note_iterator type instead of non-public git_iterator oneNico von Geyso2013-03-061-4/+13
|