perl/ext/Sys-Hostname/Hostname.xs

74 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-05-14 02:40:32 +08:00
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#if defined(I_UNISTD) && defined(HAS_GETHOSTNAME)
# include <unistd.h>
#endif
/* a reasonable default */
#ifndef MAXHOSTNAMELEN
# define MAXHOSTNAMELEN 256
#endif
#ifdef I_SYSUTSNAME
# include <sys/utsname.h>
#endif
MODULE = Sys::Hostname PACKAGE = Sys::Hostname
PROTOTYPES: DISABLE
void
ghname()
PREINIT:
IV retval = -1;
SV *sv;
PPCODE:
EXTEND(SP, 1);
#ifdef HAS_GETHOSTNAME
{
char tmps[MAXHOSTNAMELEN];
retval = PerlSock_gethostname(tmps, sizeof(tmps));
sv = newSVpv(tmps, 0);
}
#else
# ifdef HAS_PHOSTNAME
{
PerlIO *io;
char tmps[MAXHOSTNAMELEN];
char *p = tmps;
char c;
io = PerlProc_popen(PHOSTNAME, "r");
if (!io)
goto check_out;
while (PerlIO_read(io, &c, sizeof(c)) == 1) {
if (isSPACE(c) || p - tmps >= sizeof(tmps))
break;
*p++ = c;
}
PerlProc_pclose(io);
retval = 0;
sv = newSVpvn(tmps, p - tmps);
}
# else
# ifdef HAS_UNAME
{
struct utsname u;
if (PerlEnv_uname(&u) == -1)
goto check_out;
sv = newSVpv(u.nodename, 0);
retval = 0;
}
# endif
# endif
#endif
#ifndef HAS_GETHOSTNAME
check_out:
#endif
if (retval == -1)
XSRETURN_UNDEF;
else
PUSHs(sv_2mortal(sv));