summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Git binary check compat testsrb/update-4k-to-8kRussell Belfer2014-05-161-0/+114
| | | | | A variety of data patterns for diffs verified to match the behavior of binary detection with Git on the command line.
* Increase binary detection len to 8kRussell Belfer2014-05-163-2/+11
|
* Merge pull request #2357 from libgit2/cmn/pack-cache-initRussell Belfer2014-05-151-8/+7
|\ | | | | pack: init the cache on packfile alloc
| * pack: init the cache on packfile alloccmn/pack-cache-initCarlos Martín Nieto2014-05-151-8/+7
| | | | | | | | | | | | | | | | When running multithreaded, it is not enough to check for the offmap allocation. Move the call to cache_init() to packfile allocation so we can be sure it is always allocated free of races. This fixes #2355.
* | Merge pull request #2356 from libgit2/rb/restore-search-pathsVicent Marti2014-05-158-66/+54
|\ \ | |/ |/| Better global search path sandboxing in tests
| * Better search path sandboxingrb/restore-search-pathsRussell Belfer2014-05-158-66/+54
|/ | | | | | | There are a number of tests that modify the global or system search paths during the tests. This adds a helper function to make it easier to restore those paths and makes sure that they are getting restored in a manner that preserves test isolation.
* Fix mutex init/free in config_file.cPhilip Kelley2014-05-151-1/+4
|
* Merge pull request #2351 from linquize/init-varVicent Marti2014-05-141-1/+1
|\ | | | | Initialize local variable
| * Initialize local variableLinquize2014-05-131-1/+1
| |
* | Merge pull request #2349 from libgit2/rb/coverity-fixesVicent Marti2014-05-1411-73/+93
|\ \ | | | | | | Increase config snapshot usage
| * | Increase use of config snapshotsrb/coverity-fixesRussell Belfer2014-05-137-53/+69
| | | | | | | | | | | | And decrease extra reload checks of config data.
| * | Some coverity inspired cleanupsRussell Belfer2014-05-134-20/+24
| |/
* | Merge pull request #2348 from stewid/add-link-R-bindingsVicent Marti2014-05-141-0/+2
|\ \ | |/ |/| Add R bindings to the README
| * Add R bindings to the READMEStefan Widgren2014-05-131-0/+2
|/
* Merge pull request #2328 from libgit2/rb/how-broken-can-ignores-beVicent Marti2014-05-139-106/+220
|\ | | | | Improve checks for ignore containment
| * Improve checks for ignore containmentrb/how-broken-can-ignores-beRussell Belfer2014-05-069-106/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The diff code was using an "ignored_prefix" directory to track if a parent directory was ignored that contained untracked files alongside tracked files. Unfortunately, when negative ignore rules were used for directories inside ignored parents, the wrong rules were applied to untracked files inside the negatively ignored child directories. This commit moves the logic for ignore containment into the workdir iterator (which is a better place for it), so the ignored-ness of a directory is contained in the frame stack during traversal. This allows a child directory to override with a negative ignore and yet still restore the ignored state of the parent when we traverse out of the child. Along with this, there are some problems with "directory only" ignore rules on container directories. Given "a/*" and "!a/b/c/" (where the second rule is a directory rule but the first rule is just a generic prefix rule), then the directory only constraint was having "a/b/c/d/file" match the first rule and not the second. This was fixed by having ignore directory-only rules test a rule against the prefix of a file with LEADINGDIR enabled. Lastly, spot checks for ignores using `git_ignore_path_is_ignored` were tested from the top directory down to the bottom to deal with the containment problem, but this is wrong. We have to test bottom to top so that negative subdirectory rules will be checked before parent ignore rules. This does change the behavior of some existing tests, but it seems only to bring us more in line with core Git, so I think those changes are acceptable.
* | Merge pull request #2330 from libgit2/cmn/pack-unpack-loopVicent Marti2014-05-132-78/+211
|\ \ | | | | | | Make pack object lookup use loops
| * | pack: don't forget to cache the base objectcmn/pack-unpack-loopCarlos Martín Nieto2014-05-131-7/+8
| | | | | | | | | | | | | | | The base object is a good cache candidate, so we shouldn't forget to add it to the cache.
| * | pack: use stack allocation for smaller delta chainsCarlos Martín Nieto2014-05-131-16/+45
| | | | | | | | | | | | | | | | | | This avoid allocating the array on the heap for relatively small chains. The expected performance increase is sadly not really noticeable.
| * | pack: expose a cached delta base directlyCarlos Martín Nieto2014-05-132-97/+92
| | | | | | | | | | | | | | | Instead of going through a special entry in the chain, let's pass it as an output parameter.
| * | pack: simplify delta chain codeCarlos Martín Nieto2014-05-091-49/+51
| | | | | | | | | | | | | | | | | | | | | The switch makes the loop somewhat unwieldy. Let's assume it's fine and perform the check when we're accessing the data. This makes our code look a lot more like git's.
| * | pack: preallocate a 64-element chainCarlos Martín Nieto2014-05-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Dependency chains are often large and require a few reallocations. Allocate a 64-element chain before doing anything else to avoid allocations during the loop. This value comes from the stack-allocated one git uses. We still allocate this on the heap, but it does help performance a little bit.
| * | pack: make sure not to leak the dep chainCarlos Martín Nieto2014-05-091-8/+13
| | |
| * | pack: use a cache for delta bases when unpackingCarlos Martín Nieto2014-05-092-73/+77
| | | | | | | | | | | | | | | | | | Bring back the use of the delta base cache for unpacking objects. When generating the delta chain, we stop when we find a delta base in the pack's cache and use that as the starting point.
| * | pack: unpack using a loopCarlos Martín Nieto2014-05-092-25/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We currently make use of recursive function calls to unpack an object, resolving the deltas as we come back down the chain. This means that we have unbounded stack growth as we look up objects in a pack. This is now done in two steps: first we figure out what the dependency chain is by looking up the delta bases until we reach a non-delta object, pushing the information we need onto a stack and then we pop from that stack and apply the deltas until there are no more left. This version of the code does not make use of the delta base cache so it is slower than what's in the mainline. A later commit will reintroduce it.
| * | pack: do not repeat the same error message four timesCarlos Martín Nieto2014-05-091-4/+4
| | | | | | | | | | | | | | | | | | Repeating this error message makes it harder to find out where we actually are finding the error, and they don't really describe what we're trying to do.
| * | pack: remove misleading commentCarlos Martín Nieto2014-05-091-7/+0
| | |
* | | Merge pull request #2346 from kitbellew/fix2300Vicent Marti2014-05-131-0/+4
|\ \ \ | | | | | | | | Minor fix for previously merged netops code.
| * | | Win32 fix for #2300.Albert Meltzer2014-05-121-0/+4
|/ / / | | | | | | | | | The code doesn't use SSL and a test requires it.
* | | Merge pull request #2336 from libgit2/rb/unicode-branch-namesRussell Belfer2014-05-125-57/+124
|\ \ \ | | | | | | | | Pass unconverted Unicode path data when iconv doesn't like it
| * | | Don't always test composed-insensitive lookupsrb/unicode-branch-namesRussell Belfer2014-05-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Only on a filesystem that is composed/decomposed insensitive, should be testing that a branch can be looked up by the opposite form and still work correctly.
| * | | Allow cl_repo_get_bool to work with missing keyRussell Belfer2014-05-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | One of the test helpers provides a quick way for looking up a boolean key. But if the key way missing completely, the check would actually raise an error. Given the way we use this helper, if the key is missing, this should just return false, I think.
| * | | Pass unconverted data when iconv doesn't like itRussell Belfer2014-05-084-56/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using Iconv to convert unicode data and iconv doesn't like the source data (because it thinks that it's not actual UTF-8), instead of stopping the operation, just use the unconverted data. This will generally do the right thing on the filesystem, since that is the source of the non-UTF-8 path data anyhow. This adds some tests for creating and looking up branches with messy Unicode names. Also, this takes the helper function that was previously internal to `git_repository_init` and makes it into `git_path_does_fs_decompose_unicode` which is a useful in tests to understand what the expected results should be.
* | | | Merge pull request #2334 from libgit2/rb/fix-2333Russell Belfer2014-05-127-23/+46
|\ \ \ \ | | | | | | | | | | Be more careful with user-supplied buffers
| * | | | Be more careful with user-supplied buffersrb/fix-2333Russell Belfer2014-05-087-23/+46
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds in missing calls to `git_buf_sanitize` and fixes a number of places where `git_buf` APIs could inadvertently write NUL terminator bytes into invalid buffers. This also changes the behavior of `git_buf_sanitize` to NUL terminate a buffer if it can and of `git_buf_shorten` to do nothing if it can. Adds tests of filtering code with zeroed (i.e. unsanitized) buffer which was previously triggering a segfault.
* | | | Don't scale diff stat when not neededRussell Belfer2014-05-122-0/+6
| | | |
* | | | Minor fixes for warnings and error propagationRussell Belfer2014-05-124-12/+14
| | | |
* | | | Merge pull request #2300 from libgit2/cmn/match-host-testsRussell Belfer2014-05-123-9/+39
|\ \ \ \ | | | | | | | | | | Some improvements to the cert checking
| * | | | netops: catch the server not sending a certificatecmn/match-host-testsCarlos Martín Nieto2014-04-261-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's possible for an encrypted connection not have a certificate. In this case, SSL_get_verify_result() will return OK because no error happened (as it never even tried to validate anything). SSL_get_peer_certificate() will return NULL in this case so we need to catch that. On the upside, the current code would segfault in this situation instead of letting it through as a valid cert.
| * | | | netops: provide more specific error for cert failureCarlos Martín Nieto2014-04-261-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | Specify what we do not like about the certificate. In this case, we do not like the name.
| * | | | netops: unit-test the cert host-name pattern matchingCarlos Martín Nieto2014-04-263-4/+30
| | | | | | | | | | | | | | | | | | | | | | | | | This kind of stuff should have unit tests, even if it's just to show what we expect to match successfully.
* | | | | Merge pull request #2188 from libgit2/cmn/config-snapshotRussell Belfer2014-05-1215-266/+594
|\ \ \ \ \ | | | | | | | | | | | | Configuration snapshotting
| * | | | | repository: introduce a convenience config snapshot methodcmn/config-snapshotCarlos Martín Nieto2014-05-077-30/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Accessing the repository's config and immediately taking a snapshot of it is a common operation, so let's provide a convenience function for it.
| * | | | | config: share the strmap on snapshotCarlos Martín Nieto2014-04-181-54/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that our strmap is no longer modified but replaced, we can use the same strmap for the snapshot's values and it will be freed when we don't need it anymore.
| * | | | | config: refcount the values mapCarlos Martín Nieto2014-04-181-43/+131
| | | | | | | | | | | | | | | | | | | | | | | | This is mostly groundwork to let us re-use the map in the snapshots.
| * | | | | config: refresh on deleteCarlos Martín Nieto2014-04-182-54/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we delete an entry, we also want to refresh the configuration to catch any changes that happened externally. This allows us to simplify the logic, as we no longer need to delete these variables internally. The whole state will be refreshed and the deleted entries won't be there.
| * | | | | config: document the how long the pointers are valid forCarlos Martín Nieto2014-04-181-1/+14
| | | | | |
| * | | | | config: refresh before reading a valueCarlos Martín Nieto2014-04-184-15/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the isolation of complex reads, we can now try to refresh the on-disk file before reading a value from it. This changes the semantics a bit, as before we could be sure that a string we got from the configuration was valid until we wrote or refreshed. This is no longer the case, as a read can also invalidate the pointer.
| * | | | | config: refresh the values on writeCarlos Martín Nieto2014-04-182-83/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When writing out, parse the resulting file instead of adding or replacing the value locally. This has the effect of reading external changes as well.
| * | | | | config: use a snapshot for the iteratorCarlos Martín Nieto2014-04-181-3/+17
| | | | | |