From: Dmitry Potapov <dpotapov@gmail.com>
To: Johannes Sixt <johannes.sixt@telecom.at>
Cc: git@vger.kernel.org, Junio C Hamano <gitster@pobox.com>,
"Shawn O. Pearce" <spearce@spearce.org>,
Alex Riesen <raa.lkml@gmail.com>, Marcus Griep <marcus@griep.us>
Subject: Re: [PATCH 3/4] mingw: move common functionality to win32.h
Date: Sun, 28 Sep 2008 01:51:02 +0400 [thread overview]
Message-ID: <20080927215102.GF21650@dpotapov.dyndns.org> (raw)
In-Reply-To: <200809272034.04931.johannes.sixt@telecom.at>
On Sat, Sep 27, 2008 at 08:34:04PM +0200, Johannes Sixt wrote:
> On Samstag, 27. September 2008, Dmitry Potapov wrote:
> > +static inline int get_file_attr(const char *fname,
> > WIN32_FILE_ATTRIBUTE_DATA *fdata) +{
> > + if (GetFileAttributesExA(fname, GetFileExInfoStandard, fdata))
> > + return 0;
> > +
> > + switch (GetLastError()) {
> > + case ERROR_ACCESS_DENIED:
> > + case ERROR_SHARING_VIOLATION:
> > + case ERROR_LOCK_VIOLATION:
> > + case ERROR_SHARING_BUFFER_EXCEEDED:
> > + return EACCES;
> > + case ERROR_BUFFER_OVERFLOW:
> > + return ENAMETOOLONG;
> > + case ERROR_NOT_ENOUGH_MEMORY:
> > + return ENOMEM;
> > + default:
> > + return ENOENT;
> > + }
> > +}
>
> I've long wished for a function that translates Win32 error codes to errno
> codes. It would be useful in a number of other places, too.
>
> Here you introduce a new function get_file_attr() that is nothing but
> GetFileAttributesExA() followed by such an error code translation.
>
> I suggest that we leave the original call to GetFileAttributesExA() alone and
> have a function win32_to_errno(void) that is just the switch statement above.
win32_to_errno was the first thing that implemented but then released
that translation of Win32 errors to errno cannot be in general case.
For instance, ERROR_BUFFER_OVERFLOW means ENAMETOOLONG here, but it
can be translated to ETOOSMALL in other cases. How do you propose to
deal with that?
So I have not found a better solution than to add get_file_attr(), which
calls GetFileAttributesExA() and translates Win32 error.
Dmitry
next prev parent reply other threads:[~2008-09-27 21:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-27 8:43 [PATCH 3/4] mingw: move common functionality to win32.h Dmitry Potapov
2008-09-27 18:34 ` Johannes Sixt
2008-09-27 21:51 ` Dmitry Potapov [this message]
2008-09-28 9:10 ` Johannes Sixt
2008-09-29 18:37 ` Dmitry Potapov
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=20080927215102.GF21650@dpotapov.dyndns.org \
--to=dpotapov@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johannes.sixt@telecom.at \
--cc=marcus@griep.us \
--cc=raa.lkml@gmail.com \
--cc=spearce@spearce.org \
/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).