mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.pposix: Bind isatty(3)
Useful for disabling certain behavior, ANSI colors etc when not connected to a terminal.
This commit is contained in:
parent
6f60a98b16
commit
b93398ce79
2 changed files with 11 additions and 0 deletions
|
@ -98,6 +98,8 @@ local record pposix
|
||||||
|
|
||||||
atomic_append : function (f : FILE, s : string) : boolean, string, integer
|
atomic_append : function (f : FILE, s : string) : boolean, string, integer
|
||||||
|
|
||||||
|
isatty : function(FILE) : boolean
|
||||||
|
|
||||||
ENOENT : integer
|
ENOENT : integer
|
||||||
_NAME : string
|
_NAME : string
|
||||||
_VESRION : string
|
_VESRION : string
|
||||||
|
|
|
@ -812,6 +812,13 @@ static int lc_atomic_append(lua_State *L) {
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int lc_isatty(lua_State *L) {
|
||||||
|
FILE *f = *(FILE **) luaL_checkudata(L, 1, LUA_FILEHANDLE);
|
||||||
|
const int fd = fileno(f);
|
||||||
|
lua_pushboolean(L, isatty(fd));
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* Register functions */
|
/* Register functions */
|
||||||
|
|
||||||
int luaopen_util_pposix(lua_State *L) {
|
int luaopen_util_pposix(lua_State *L) {
|
||||||
|
@ -853,6 +860,8 @@ int luaopen_util_pposix(lua_State *L) {
|
||||||
|
|
||||||
{ "atomic_append", lc_atomic_append },
|
{ "atomic_append", lc_atomic_append },
|
||||||
|
|
||||||
|
{ "isatty", lc_isatty },
|
||||||
|
|
||||||
{ NULL, NULL }
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue