On unix everything is a file approach of function read(), write(), close() is not supported on Win32.

I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2.

//returns 1 if `sock` is network socket, 
//        0 if `sock` is file desriptor (including stdio, stderr, stdout), ...
//       -1 in none of above
int is_net_socket(int sock)
{
    // ...?
}

This should work as in :

int mysock  = socket(PF_INET, SOCK_STREAM, 0);
int myfd    = _open("my_file.txt", _O_RDONLY);

printf("1: %d    2: %d    3: %d    4:%d\n",
       is_net_socket(mysock),   //1
       is_net_socket(myfd),     //0
       is_net_socket(stdin),    //0
       is_net_socket(stderr));  //0

// should print "1: 1    2: 0    3: 0    4:0"

How to implement is_net_socket in order to use it as in:

int my_close(int sock)
{
#if ON_WINDOWS
    switch( is_net_socket(sock) ) {
        case 1: return closesocket(sock);
        case 0: return _close(sock);
        default: //handle error...
    }
#else
    return close(sock);
#endif
}
link|improve this question

78% accept rate
Anyone used _fstat()? – DinGODzilla Jun 28 '11 at 16:18
feedback

4 Answers

Not sure where you're getting the idea that Windows won't allow you to use SOCKET handles as files - as clearly stated on the Socket Handles page:

A socket handle can optionally be a file handle in Windows Sockets 2. A socket handle from a Winsock provider can be used with other non-Winsock functions such as ReadFile, WriteFile, ReadFileEx, and WriteFileEx.

Anyways, as to how to distinguish between them on Windows, see the function NtQueryObject, which will return a handle name of \Device\Tcp if the handle passed to it is an open SOCKET. Read the "Remarks" section for the structure returned by this call.

Note that this approach only works XP and up, and will fail on Windows 2000 (which I'm assuming is old enough that it doesn't affect you.)

link|improve this answer
feedback

I suppose you can use select to query the status of a socket.

http://msdn.microsoft.com/en-us/library/ms740141%28VS.85%29.aspx

I would recommend grouping your file desc and sockets in a single struct. You can declare an enum to tell if the descriptor is a file or socket. I know this might not be as dynamic as you want, but generally when you create portable applications, its best to abstract those details away.

Example:

enum type { SOCKET, FILE };

typedef struct
{
    unsigned int id;
    type dataType;
} descriptor_t;

int close(descriptor_t sock)
{
#if WIN32
    if (sock.dataType == SOCKET)
        return closesocket(sock.id);
    else
        return _close(sock.id);
#else
    return close(sock.id);
#endif
}
link|improve this answer
feedback

I suspect... but I am not sure, that fds and sockets on Windows use separate namespaces. Therefore the number for a socket and a file could be the same, and it is impossible to know which one you are talking about when you call is_net_socket.

Try printing out socket and fd numbers to see if they are ever the same as each other at the same time.

link|improve this answer
feedback

If the Windows 'C' library has dup() you could try to dup it, which should fail for a socket but succeed for a file fd. So:

int is_net_socket(fd)
{
  return close(dup(fd)) != 0;
}

Warning: untested theory with untested dependency ;-) Note that this would return misleading results if you run out of fd's. Another side effect is that if it is a file it will be flushed and its directory entry updated. All in all it probably sucks frankly. I might even downvote it myself.

link|improve this answer
+1: Creative abuse of the i/o system fundamentals! – wallyk Jun 24 '11 at 7:07
It's good alas I really want it to be side-effect free. No other ideas? This was good begining :) – DinGODzilla Jun 25 '11 at 15:27
This should not have side effects. Only closing the last open file descriptor for an open file, not any file descriptor for it, should have side effects. Actually I think this solution is rather good. – R.. Jun 28 '11 at 18:51
@R.. It does have side effects. The ones I mentioned occur on Windows. – EJP Jun 29 '11 at 0:13
Wow that's really broken... BTW I don't think you can downvote your own answers. – R.. Jun 29 '11 at 1:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.