Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add locking and traps for gtags_update.sh, and really do locking #361

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

smemsh
Copy link

@smemsh smemsh commented Jun 7, 2024

gtags-cscope currently has no update script trap, like ctags and cscope have, which does a partial-file cleanup on [premature] exit. if any zero-byte gtags files exist, they will be treated as a prior run by forthcoming gtags, which will be confused that the file is apparently corrupted.

The attached add a trap and do cleanup in gtags, like ctags.

Also, there was no locking in gtags, so this patch adds naive locking, same as the other scripts (ie ctags) have already.

Locking was also fixed in all the update scripts. There was a bug that existence of a lockfile was ignored. The noclobber option needs to be set in the shell, in order for 'set -e' to force an exit if the file exists already on redirect. There is a patch included to fix this. While it should be fixed, it may result in more user reports of apparent update script failure, since locking did not work before, and simultaneous attempt was never noticed.

It might be better to ignore some sources of error and exit 0 anyways so the simultaneous access is not a reported issue. But if we did this, it could hide a previous aborted attempt leaving files, and then never be able to start again. Some warning might be in order.

The changes should work both with and without g:gutentags_cache_dir. In this patch, the lock files are kept alongside the tags files. The other option would have been to put them in the scanned directory.

Fixes #319

Locking is good to have for all the user's databases, not just ctags.
We already have this with ctags, should have it for gtags too.
This argument is a path where tags should go (ie g:gutentags_cache_dir,
or the directory to scan if not set) and would need to be quoted if it
had spaces or other characters meaningful to the shell.  The variable
gets assessed by 'eval' before being used to invoke gtags, so we want to
embed the escapes within the string.

While we do this for correctness, note that unix cscope cannot handle
directories with spaces in the path to the tags file, because it puts
the directory name in the database and uses spaces to delimit records in
the first line (the filename, and also dash-prefixed options cscope had
when constructing the database, so there's no way to know for sure where
the filename ends).

Vim cannot handle spaces either.  The limitation does not exist for
gtags, but vim's ":cs add" (src/if_cscope.c::cs_add()), typically
invoked from gutentags_plus, does not handle spaces correctly itself.
It uses spaces in the arguments to break apart into significant
subwords, to distinguish other arguments to ':cs'.

Lastly the cscope command used by vim in src/if_cscope.c
cs_create_connection() does not properly quote the filename when it
passes to /bin/sh -c "exec cscope -dl -f %s" so that wouldn't handle
spaces either.

For now we can live with the limitation that we can't ever use cscope
functionality in paths with spaces in them.
The shell default is for clobber to be set, so "echo $$ > $LOCKFILE"
will succeed no matter how many times it's run.  In other words, this
wasn't acting as a lockfile at all, unless the user had set 'noclobber'
in their shell's non-interactive profile.

In each of these scripts, a trap exists that does cleanup, so the lock
files should get removed at script exit no matter what.  If the computer
crashed or lost power in between though, the stale lock file would be
left and have to be manually removed.  This is not unlike any other
stale lock file issue.

However we could check if the pid exists, since it's written to the
file.  That sounds invasive and non-portable... maybe later.
If we try to establish the lock first before EXIT trap is established,
we can exit without removing the lock file of the previous instance.
Otherwise we'll correctly exit, but then remove the temp file out from
under the already-running instance.  Next collision avoidance test will
pass and we'll clobber previous instance.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Quitting in the middle of gtags generating raises an error
1 participant