From: Karsten Blees <karsten.blees@gmail.com>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: Erik Faye-Lund <kusmabite@gmail.com>,
Duy Nguyen <pclouds@gmail.com>, Stepan Kasal <kasal@ucw.cz>,
GIT Mailing-list <git@vger.kernel.org>,
Thomas Braun <thomas.braun@virtuell-zuhause.de>,
msysGit <msysgit@googlegroups.com>
Subject: Re: Re: [PATCH] Add a Windows-specific fallback to getenv("HOME");
Date: Thu, 05 Jun 2014 16:33:58 +0200 [thread overview]
Message-ID: <53907FD6.4060609@gmail.com> (raw)
In-Reply-To: <alpine.DEB.1.00.1406051354000.14982@s15462909.onlinehome-server.info>
Am 05.06.2014 14:03, schrieb Johannes Schindelin:
> Hi Karsten,
>
> On Thu, 5 Jun 2014, Karsten Blees wrote:
>
>> After a bit of digging in the history and the old googlegroups issue
>> tracker, I think this patch is completely unrelated to the non-ASCII
>> problems.
>
> Actually, the non-ASCII problems were the trigger for my patch.
The commit message explicitly claims that it fixes issue 482, which is: 'git config --global' in the portable version fails with "fatal: $HOME not set" (not "unable to access '...'", which you would get for a mangled path that doesn't exist).
As outlined in the previous mail (analysis 1.), the non-ASCII problem is caused by a bug in msys.dll, and it is in fact impossible to fix in git (even if that was your intention).
>
>> In summary, this patch fixes 'git config' for the portable version only,
>> and it only does so partially.
>
> Care to elaborate?
>
See previous mail analysis 3. In short: it doesn't work with disconnected home share (issue 259), and it doesn't setenv("HOME") (so child processes such as git-gui will most likely fail).
>> Am 04.06.2014 17:46, schrieb Johannes Schindelin:
>>
>>> I would be strongly in favor of fixing the problem by the root:
>>> avoiding to have Git rely on the HOME environment variable to be set,
>>> but instead add a clean API call that even says what it is supposed to
>>> do: gimme the user's home directory's path. And that is exactly what
>>> the patch does.
>>
>> By that argument we'd have to introduce API abstractions for every
>> environment variable that could possibly resemble a path (PATH, TMPDIR,
>> GIT_DIR, GIT_WORK_DIR, GIT_TRACE* etc.).
>
> But of course you are mixing things here. GIT_* are purely Git-specific
> constructs, so there is no possibility for confusion. PATH and TMPDIR need
> to be handled specially (as does HOME) because we are reusing environment
> variable concepts that pose their own set of problems on Windows because
> of the separator, the path separator and the encoding problems.
>
> I understand that it is easy to confuse my want for a API function for the
> home variable with handling for other environment variables. But that HOME
> is an environment variable is not the point at all! It just *happens* to
> be an environment variable on Linux/Unix.
>
>> We already have similar fallback logic for TMPDIR that is completely
>> non-intrusive to core git code (fully encapsulated in mingw.c, see
>> mingw_getenv (upstream) or mingw_startup (msysgit)). IMO such a solution
>> would be hugely preferable over adding an additional
>> get_home_directory() API (and continuously checking that no new upstream
>> code accidentally introduces another 'getenv("HOME")').
>
> Well, since you mention that TMPDIR hack: this is a hack. We are bending
> over in order for upstream not having to accomodate non-POSIX operating
> systems.
Exactly. In order to support different platforms, we need to agree on a common abstraction layer to access platform-specific functionality. For the git project, this common abstraction layer happens to be the POSIX standard (actually: the subset of the standard that is used by core git code). And compat/mingw.c implements that abstraction layer for the native Windows platform.
There are cases where conforming to the standard is simply not feasible, e.g. fork() (we don't want to build another cygwin). So we sometimes need special handling for certain functionality in core-git (see run-command.c in case of fork()).
However, getenv("HOME"), getenv("TMPDIR") and getenv("PATH") are all fully POSIX compliant, including the standardised variable names. In this particular case, conforming to the standard (via special handling in mingw_getenv or mingw_startup) is actually even _simpler_ than inventing a new, non-standard, undocumented get_home_directory() API.
> But how much cleaner would it be if there was an API call with
> varargs. After all, by the reasoning "TMPDIR is a standard on Unix" you
> would also have to special case "/tmp/" in all the open/opendir/etc
> functions because the temporary directory is /tmp/ on Linux/Unix, right?
No, POSIX doesn't specify path names. The standard way to get the temp directory is 'getenv("TMPDIR")'. A hardcoded "/tmp" in core git code would be a bug.
--
--
*** Please reply-to-all at all times ***
*** (do not pretend to know who is subscribed and who is not) ***
*** Please avoid top-posting. ***
The msysGit Wiki is here: https://github.com/msysgit/msysgit/wiki - Github accounts are free.
You received this message because you are subscribed to the Google
Groups "msysGit" group.
To post to this group, send email to msysgit@googlegroups.com
To unsubscribe from this group, send email to
msysgit+unsubscribe@googlegroups.com
For more options, and view previous threads, visit this group at
http://groups.google.com/group/msysgit?hl=en_US?hl=en
---
You received this message because you are subscribed to the Google Groups "msysGit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to msysgit+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
next prev parent reply other threads:[~2014-06-05 14:33 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-04 11:47 [PATCH] Add a Windows-specific fallback to getenv("HOME"); Stepan Kasal
2014-06-04 13:47 ` Duy Nguyen
2014-06-04 14:05 ` Erik Faye-Lund
2014-06-04 14:55 ` Karsten Blees
2014-06-04 15:14 ` Johannes Schindelin
2014-06-04 15:18 ` Erik Faye-Lund
2014-06-04 15:27 ` Johannes Schindelin
2014-06-04 15:45 ` Stepan Kasal
2014-06-04 15:56 ` [msysGit] " Johannes Schindelin
2014-06-04 16:16 ` Stepan Kasal
2014-06-04 17:49 ` [msysGit] " Johannes Schindelin
2014-06-06 9:12 ` Git for Windows SDK Philip Oakley
2014-06-04 23:10 ` Re: [PATCH] Add a Windows-specific fallback to getenv("HOME"); Duy Nguyen
2014-06-06 19:26 ` Sebastian Schuberth
2014-06-04 15:46 ` Johannes Schindelin
2014-06-05 1:42 ` Karsten Blees
2014-06-05 8:03 ` [PATCH v2] " Stepan Kasal
2014-06-05 8:32 ` [msysGit] " Torsten Bögershausen
2014-06-05 10:23 ` [PATCH v3] " Stepan Kasal
2014-06-05 9:40 ` [PATCH v2] " Karsten Blees
2014-06-05 9:58 ` Erik Faye-Lund
2014-06-05 21:44 ` Karsten Blees
2014-06-06 8:03 ` Stepan Kasal
2014-06-05 11:23 ` Stepan Kasal
2014-06-05 13:39 ` Johannes Schindelin
2014-06-05 20:03 ` Karsten Blees
2014-06-05 12:03 ` Re: [PATCH] " Johannes Schindelin
2014-06-05 12:15 ` [msysGit] " Stepan Kasal
2014-06-05 14:33 ` Karsten Blees [this message]
2014-06-04 14:53 ` Stepan Kasal
2014-06-04 15:13 ` Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53907FD6.4060609@gmail.com \
--to=karsten.blees@gmail.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=kasal@ucw.cz \
--cc=kusmabite@gmail.com \
--cc=msysgit@googlegroups.com \
--cc=pclouds@gmail.com \
--cc=thomas.braun@virtuell-zuhause.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).