summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2020-12-28 18:04:52 -0800
committerKarl Williamson <khw@cpan.org>2021-01-17 09:18:15 -0700
commit1604cfb0273418ed479719f39def5ee559bffda2 (patch)
tree166a5ab935a029ab86cf6295d6f3cb77da22e559 /perlio.c
parent557ff1b2a4ecd18fe9229e7e0eb8fa123adc5670 (diff)
downloadperl-1604cfb0273418ed479719f39def5ee559bffda2.tar.gz
style: Detabify indentation of the C code maintained by the core.
This just detabifies to get rid of the mixed tab/space indentation. Applying consistent indentation and dealing with other tabs are another issue. Done with `expand -i`. * vutil.* left alone, it's part of version. * Left regen managed files alone for now.
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c4134
1 files changed, 2067 insertions, 2067 deletions
diff --git a/perlio.c b/perlio.c
index b3b4327491..aa85c16f8c 100644
--- a/perlio.c
+++ b/perlio.c
@@ -57,52 +57,52 @@
/* Call the callback or PerlIOBase, and return failure. */
#define Perl_PerlIO_or_Base(f, callback, base, failure, args) \
- if (PerlIOValid(f)) { \
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
- if (tab && tab->callback) \
- return (*tab->callback) args; \
- else \
- return PerlIOBase_ ## base args; \
- } \
- else \
- SETERRNO(EBADF, SS_IVCHAN); \
- return failure
+ if (PerlIOValid(f)) { \
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
+ if (tab && tab->callback) \
+ return (*tab->callback) args; \
+ else \
+ return PerlIOBase_ ## base args; \
+ } \
+ else \
+ SETERRNO(EBADF, SS_IVCHAN); \
+ return failure
/* Call the callback or fail, and return failure. */
#define Perl_PerlIO_or_fail(f, callback, failure, args) \
- if (PerlIOValid(f)) { \
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
- if (tab && tab->callback) \
- return (*tab->callback) args; \
- SETERRNO(EINVAL, LIB_INVARG); \
- } \
- else \
- SETERRNO(EBADF, SS_IVCHAN); \
- return failure
+ if (PerlIOValid(f)) { \
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
+ if (tab && tab->callback) \
+ return (*tab->callback) args; \
+ SETERRNO(EINVAL, LIB_INVARG); \
+ } \
+ else \
+ SETERRNO(EBADF, SS_IVCHAN); \
+ return failure
/* Call the callback or PerlIOBase, and be void. */
#define Perl_PerlIO_or_Base_void(f, callback, base, args) \
- if (PerlIOValid(f)) { \
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
- if (tab && tab->callback) \
- (*tab->callback) args; \
- else \
- PerlIOBase_ ## base args; \
- } \
- else \
- SETERRNO(EBADF, SS_IVCHAN)
+ if (PerlIOValid(f)) { \
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
+ if (tab && tab->callback) \
+ (*tab->callback) args; \
+ else \
+ PerlIOBase_ ## base args; \
+ } \
+ else \
+ SETERRNO(EBADF, SS_IVCHAN)
/* Call the callback or fail, and be void. */
#define Perl_PerlIO_or_fail_void(f, callback, args) \
- if (PerlIOValid(f)) { \
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
- if (tab && tab->callback) \
- (*tab->callback) args; \
- else \
- SETERRNO(EINVAL, LIB_INVARG); \
- } \
- else \
- SETERRNO(EBADF, SS_IVCHAN)
+ if (PerlIOValid(f)) { \
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
+ if (tab && tab->callback) \
+ (*tab->callback) args; \
+ else \
+ SETERRNO(EINVAL, LIB_INVARG); \
+ } \
+ else \
+ SETERRNO(EBADF, SS_IVCHAN)
#if defined(__osf__) && _XOPEN_SOURCE < 500
extern int fseeko(FILE *, off_t, int);
@@ -163,42 +163,42 @@ PerlIO_intmode2str(int rawmode, char *mode, int *writing)
int ptype;
switch (result) {
case O_RDONLY:
- ptype = IoTYPE_RDONLY;
- break;
+ ptype = IoTYPE_RDONLY;
+ break;
case O_WRONLY:
- ptype = IoTYPE_WRONLY;
- break;
+ ptype = IoTYPE_WRONLY;
+ break;
case O_RDWR:
default:
- ptype = IoTYPE_RDWR;
- break;
+ ptype = IoTYPE_RDWR;
+ break;
}
if (writing)
- *writing = (result != O_RDONLY);
+ *writing = (result != O_RDONLY);
if (result == O_RDONLY) {
- mode[ix++] = 'r';
+ mode[ix++] = 'r';
}
#ifdef O_APPEND
else if (rawmode & O_APPEND) {
- mode[ix++] = 'a';
- if (result != O_WRONLY)
- mode[ix++] = '+';
+ mode[ix++] = 'a';
+ if (result != O_WRONLY)
+ mode[ix++] = '+';
}
#endif
else {
- if (result == O_WRONLY)
- mode[ix++] = 'w';
- else {
- mode[ix++] = 'r';
- mode[ix++] = '+';
- }
+ if (result == O_WRONLY)
+ mode[ix++] = 'w';
+ else {
+ mode[ix++] = 'r';
+ mode[ix++] = '+';
+ }
}
#if O_BINARY != 0
/* Unless O_BINARY is different from zero, bit-and:ing
* with it won't do much good. */
if (rawmode & O_BINARY)
- mode[ix++] = 'b';
+ mode[ix++] = 'b';
#endif
mode[ix] = '\0';
return ptype;
@@ -213,7 +213,7 @@ PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names)
|| strEQ(names, ":raw")
|| strEQ(names, ":bytes")
) {
- return 0;
+ return 0;
}
Perl_croak(aTHX_ "Cannot apply \"%s\" in non-PerlIO perl", names);
/*
@@ -245,22 +245,22 @@ PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
return win32_fdupopen(f);
# else
if (f) {
- const int fd = PerlLIO_dup_cloexec(PerlIO_fileno(f));
- if (fd >= 0) {
- char mode[8];
+ const int fd = PerlLIO_dup_cloexec(PerlIO_fileno(f));
+ if (fd >= 0) {
+ char mode[8];
# ifdef DJGPP
- const int omode = djgpp_get_stream_mode(f);
+ const int omode = djgpp_get_stream_mode(f);
# else
- const int omode = fcntl(fd, F_GETFL);
+ const int omode = fcntl(fd, F_GETFL);
# endif
- PerlIO_intmode2str(omode,mode,NULL);
- /* the r+ is a hack */
- return PerlIO_fdopen(fd, mode);
- }
- return NULL;
+ PerlIO_intmode2str(omode,mode,NULL);
+ /* the r+ is a hack */
+ return PerlIO_fdopen(fd, mode);
+ }
+ return NULL;
}
else {
- SETERRNO(EBADF, SS_IVCHAN);
+ SETERRNO(EBADF, SS_IVCHAN);
}
# endif
return NULL;
@@ -274,35 +274,35 @@ PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
PerlIO *
PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd,
- int imode, int perm, PerlIO *old, int narg, SV **args)
+ int imode, int perm, PerlIO *old, int narg, SV **args)
{
if (narg) {
- if (narg > 1) {
- Perl_croak(aTHX_ "More than one argument to open");
- }
- if (*args == &PL_sv_undef)
- return PerlIO_tmpfile();
- else {
+ if (narg > 1) {
+ Perl_croak(aTHX_ "More than one argument to open");
+ }
+ if (*args == &PL_sv_undef)
+ return PerlIO_tmpfile();
+ else {
STRLEN len;
- const char *name = SvPV_const(*args, len);
+ const char *name = SvPV_const(*args, len);
if (!IS_SAFE_PATHNAME(name, len, "open"))
return NULL;
- if (*mode == IoTYPE_NUMERIC) {
- fd = PerlLIO_open3_cloexec(name, imode, perm);
- if (fd >= 0)
- return PerlIO_fdopen(fd, mode + 1);
- }
- else if (old) {
- return PerlIO_reopen(name, mode, old);
- }
- else {
- return PerlIO_open(name, mode);
- }
- }
+ if (*mode == IoTYPE_NUMERIC) {
+ fd = PerlLIO_open3_cloexec(name, imode, perm);
+ if (fd >= 0)
+ return PerlIO_fdopen(fd, mode + 1);
+ }
+ else if (old) {
+ return PerlIO_reopen(name, mode, old);
+ }
+ else {
+ return PerlIO_open(name, mode);
+ }
+ }
}
else {
- return PerlIO_fdopen(fd, (char *) mode);
+ return PerlIO_fdopen(fd, (char *) mode);
}
return NULL;
}
@@ -312,12 +312,12 @@ XS(XS_PerlIO__Layer__find)
{
dXSARGS;
if (items < 2)
- Perl_croak(aTHX_ "Usage class->find(name[,load])");
+ Perl_croak(aTHX_ "Usage class->find(name[,load])");
else {
- const char * const name = SvPV_nolen_const(ST(1));
- ST(0) = (strEQ(name, "crlf")
- || strEQ(name, "raw")) ? &PL_sv_yes : &PL_sv_undef;
- XSRETURN(1);
+ const char * const name = SvPV_nolen_const(ST(1));
+ ST(0) = (strEQ(name, "crlf")
+ || strEQ(name, "raw")) ? &PL_sv_yes : &PL_sv_undef;
+ XSRETURN(1);
}
}
@@ -350,27 +350,27 @@ PerlIO_debug(const char *fmt, ...)
va_start(ap, fmt);
if (!PL_perlio_debug_fd) {
- if (!TAINTING_get &&
- PerlProc_getuid() == PerlProc_geteuid() &&
- PerlProc_getgid() == PerlProc_getegid()) {
- const char * const s = PerlEnv_getenv("PERLIO_DEBUG");
- if (s && *s)
- PL_perlio_debug_fd = PerlLIO_open3_cloexec(s,
- O_WRONLY | O_CREAT | O_APPEND, 0666);
- else
- PL_perlio_debug_fd = PerlLIO_dup_cloexec(2); /* stderr */
- } else {
- /* tainting or set*id, so ignore the environment and send the
+ if (!TAINTING_get &&
+ PerlProc_getuid() == PerlProc_geteuid() &&
+ PerlProc_getgid() == PerlProc_getegid()) {
+ const char * const s = PerlEnv_getenv("PERLIO_DEBUG");
+ if (s && *s)
+ PL_perlio_debug_fd = PerlLIO_open3_cloexec(s,
+ O_WRONLY | O_CREAT | O_APPEND, 0666);
+ else
+ PL_perlio_debug_fd = PerlLIO_dup_cloexec(2); /* stderr */
+ } else {
+ /* tainting or set*id, so ignore the environment and send the
debug output to stderr, like other -D switches. */
- PL_perlio_debug_fd = PerlLIO_dup_cloexec(2); /* stderr */
- }
+ PL_perlio_debug_fd = PerlLIO_dup_cloexec(2); /* stderr */
+ }
}
if (PL_perlio_debug_fd > 0) {
#ifdef USE_ITHREADS
- const char * const s = CopFILE(PL_curcop);
- /* Use fixed buffer as sv_catpvf etc. needs SVs */
- char buffer[1024];
- const STRLEN len1 = my_snprintf(buffer, sizeof(buffer), "%.40s:%" IVdf " ", s ? s : "(none)", (IV) CopLINE(PL_curcop));
+ const char * const s = CopFILE(PL_curcop);
+ /* Use fixed buffer as sv_catpvf etc. needs SVs */
+ char buffer[1024];
+ const STRLEN len1 = my_snprintf(buffer, sizeof(buffer), "%.40s:%" IVdf " ", s ? s : "(none)", (IV) CopLINE(PL_curcop));
# ifdef USE_QUADMATH
# ifdef HAS_VSNPRINTF
/* my_vsnprintf() isn't available with quadmath, but the native vsnprintf()
@@ -382,19 +382,19 @@ PerlIO_debug(const char *fmt, ...)
STATIC_ASSERT_STMT(0);
# endif
# else
- const STRLEN len2 = my_vsnprintf(buffer + len1, sizeof(buffer) - len1, fmt, ap);
+ const STRLEN len2 = my_vsnprintf(buffer + len1, sizeof(buffer) - len1, fmt, ap);
# endif
- PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, buffer, len1 + len2));
+ PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, buffer, len1 + len2));
#else
- const char *s = CopFILE(PL_curcop);
- STRLEN len;
- SV * const sv = Perl_newSVpvf(aTHX_ "%s:%" IVdf " ", s ? s : "(none)",
- (IV) CopLINE(PL_curcop));
- Perl_sv_vcatpvf(aTHX_ sv, fmt, &ap);
-
- s = SvPV_const(sv, len);
- PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, s, len));
- SvREFCNT_dec(sv);
+ const char *s = CopFILE(PL_curcop);
+ STRLEN len;
+ SV * const sv = Perl_newSVpvf(aTHX_ "%s:%" IVdf " ", s ? s : "(none)",
+ (IV) CopLINE(PL_curcop));
+ Perl_sv_vcatpvf(aTHX_ sv, fmt, &ap);
+
+ s = SvPV_const(sv, len);
+ PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, s, len));
+ SvREFCNT_dec(sv);
#endif
}
va_end(ap);
@@ -419,14 +419,14 @@ PerlIO_verify_head(pTHX_ PerlIO *f)
PERL_UNUSED_CONTEXT;
# endif
if (!PerlIOValid(f))
- return;
+ return;
p = head = PerlIOBase(f)->head;
assert(p);
do {
- assert(p->head == head);
- if (p == (PerlIOl*)f)
- seen = 1;
- p = p->next;
+ assert(p->head == head);
+ if (p == (PerlIOl*)f)
+ seen = 1;
+ p = p->next;
} while (p);
assert(seen);
}
@@ -444,7 +444,7 @@ static void
PerlIO_init_table(pTHX)
{
if (PL_perlio)
- return;
+ return;
Newxz(PL_perlio, PERLIO_TABLE_SIZE, PerlIOl);
}
@@ -460,17 +460,17 @@ PerlIO_allocate(pTHX)
PerlIOl *f;
last = &PL_perlio;
while ((f = *last)) {
- int i;
- last = (PerlIOl **) (f);
- for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
- if (!((++f)->next)) {
- goto good_exit;
- }
- }
+ int i;
+ last = (PerlIOl **) (f);
+ for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
+ if (!((++f)->next)) {
+ goto good_exit;
+ }
+ }
}
Newxz(f,PERLIO_TABLE_SIZE,PerlIOl);
if (!f) {
- return NULL;
+ return NULL;
}
*last = (PerlIOl*) f++;
@@ -486,16 +486,16 @@ PerlIO *
PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
{
if (PerlIOValid(f)) {
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- DEBUG_i( PerlIO_debug("fdupopen f=%p param=%p\n",(void*)f,(void*)param) );
- if (tab && tab->Dup)
- return (*tab->Dup)(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
- else {
- return PerlIOBase_dup(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
- }
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ DEBUG_i( PerlIO_debug("fdupopen f=%p param=%p\n",(void*)f,(void*)param) );
+ if (tab && tab->Dup)
+ return (*tab->Dup)(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
+ else {
+ return PerlIOBase_dup(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
+ }
}
else
- SETERRNO(EBADF, SS_IVCHAN);
+ SETERRNO(EBADF, SS_IVCHAN);
return NULL;
}
@@ -505,16 +505,16 @@ PerlIO_cleantable(pTHX_ PerlIOl **tablep)
{
PerlIOl * const table = *tablep;
if (table) {
- int i;
- PerlIO_cleantable(aTHX_(PerlIOl **) & (table[0]));
- for (i = PERLIO_TABLE_SIZE - 1; i > 0; i--) {
- PerlIOl * const f = table + i;
- if (f->next) {
- PerlIO_close(&(f->next));
- }
- }
- Safefree(table);
- *tablep = NULL;
+ int i;
+ PerlIO_cleantable(aTHX_(PerlIOl **) & (table[0]));
+ for (i = PERLIO_TABLE_SIZE - 1; i > 0; i--) {
+ PerlIOl * const f = table + i;
+ if (f->next) {
+ PerlIO_close(&(f->next));
+ }
+ }
+ Safefree(table);
+ *tablep = NULL;
}
}
@@ -533,15 +533,15 @@ void
PerlIO_list_free(pTHX_ PerlIO_list_t *list)
{
if (list) {
- if (--list->refcnt == 0) {
- if (list->array) {
- IV i;
- for (i = 0; i < list->cur; i++)
- SvREFCNT_dec(list->array[i].arg);
- Safefree(list->array);
- }
- Safefree(list);
- }
+ if (--list->refcnt == 0) {
+ if (list->array) {
+ IV i;
+ for (i = 0; i < list->cur; i++)
+ SvREFCNT_dec(list->array[i].arg);
+ Safefree(list->array);
+ }
+ Safefree(list);
+ }
}
}
@@ -553,16 +553,16 @@ PerlIO_list_push(pTHX_ PerlIO_list_t *list, PerlIO_funcs *funcs, SV *arg)
if (list->cur >= list->len) {
const IV new_len = list->len + 8;
- if (list->array)
- Renew(list->array, new_len, PerlIO_pair_t);
- else
- Newx(list->array, new_len, PerlIO_pair_t);
- list->len = new_len;
+ if (list->array)
+ Renew(list->array, new_len, PerlIO_pair_t);
+ else
+ Newx(list->array, new_len, PerlIO_pair_t);
+ list->len = new_len;
}
p = &(list->array[list->cur++]);
p->funcs = funcs;
if ((p->arg = arg)) {
- SvREFCNT_inc_simple_void_NN(arg);
+ SvREFCNT_inc_simple_void_NN(arg);
}
}
@@ -571,18 +571,18 @@ PerlIO_clone_list(pTHX_ PerlIO_list_t *proto, CLONE_PARAMS *param)
{
PerlIO_list_t *list = NULL;
if (proto) {
- int i;
- list = PerlIO_list_alloc(aTHX);
- for (i=0; i < proto->cur; i++) {
- SV *arg = proto->array[i].arg;
+ int i;
+ list = PerlIO_list_alloc(aTHX);
+ for (i=0; i < proto->cur; i++) {
+ SV *arg = proto->array[i].arg;
#ifdef USE_ITHREADS
- if (arg && param)
- arg = sv_dup(arg, param);
+ if (arg && param)
+ arg = sv_dup(arg, param);
#else
- PERL_UNUSED_ARG(param);
+ PERL_UNUSED_ARG(param);
#endif
- PerlIO_list_push(aTHX_ list, proto->array[i].funcs, arg);
- }
+ PerlIO_list_push(aTHX_ list, proto->array[i].funcs, arg);
+ }
}
return list;
}
@@ -599,15 +599,15 @@ PerlIO_clone(pTHX_ PerlInterpreter *proto, CLONE_PARAMS *param)
PerlIO_init_table(aTHX);
DEBUG_i( PerlIO_debug("Clone %p from %p\n",(void*)aTHX,(void*)proto) );
while ((f = *table)) {
- int i;
- table = (PerlIOl **) (f++);
- for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
- if (f->next) {
- (void) fp_dup(&(f->next), 0, param);
- }
- f++;
- }
- }
+ int i;
+ table = (PerlIOl **) (f++);
+ for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
+ if (f->next) {
+ (void) fp_dup(&(f->next), 0, param);
+ }
+ f++;
+ }
+ }
#else
PERL_UNUSED_CONTEXT;
PERL_UNUSED_ARG(proto);
@@ -624,23 +624,23 @@ PerlIO_destruct(pTHX)
DEBUG_i( PerlIO_debug("Destruct %p\n",(void*)aTHX) );
#endif
while ((f = *table)) {
- int i;
- table = (PerlIOl **) (f++);
- for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
- PerlIO *x = &(f->next);
- const PerlIOl *l;
- while ((l = *x)) {
- if (l->tab && l->tab->kind & PERLIO_K_DESTRUCT) {
- DEBUG_i( PerlIO_debug("Destruct popping %s\n", l->tab->name) );
- PerlIO_flush(x);
- PerlIO_pop(aTHX_ x);
- }
- else {
- x = PerlIONext(x);
- }
- }
- f++;
- }
+ int i;
+ table = (PerlIOl **) (f++);
+ for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
+ PerlIO *x = &(f->next);
+ const PerlIOl *l;
+ while ((l = *x)) {
+ if (l->tab && l->tab->kind & PERLIO_K_DESTRUCT) {
+ DEBUG_i( PerlIO_debug("Destruct popping %s\n", l->tab->name) );
+ PerlIO_flush(x);
+ PerlIO_pop(aTHX_ x);
+ }
+ else {
+ x = PerlIONext(x);
+ }
+ }
+ f++;
+ }
}
}
@@ -650,26 +650,26 @@ PerlIO_pop(pTHX_ PerlIO *f)
const PerlIOl *l = *f;
VERIFY_HEAD(f);
if (l) {
- DEBUG_i( PerlIO_debug("PerlIO_pop f=%p %s\n", (void*)f,
+ DEBUG_i( PerlIO_debug("PerlIO_pop f=%p %s\n", (void*)f,
l->tab ? l->tab->name : "(Null)") );
- if (l->tab && l->tab->Popped) {
- /*
- * If popped returns non-zero do not free its layer structure
- * it has either done so itself, or it is shared and still in
- * use
- */
- if ((*l->tab->Popped) (aTHX_ f) != 0)
- return;
- }
- if (PerlIO_lockcnt(f)) {
- /* we're in use; defer freeing the structure */
- PerlIOBase(f)->flags = PERLIO_F_CLEARED;
- PerlIOBase(f)->tab = NULL;
- }
- else {
- *f = l->next;
- Safefree(l);
- }
+ if (l->tab && l->tab->Popped) {
+ /*
+ * If popped returns non-zero do not free its layer structure
+ * it has either done so itself, or it is shared and still in
+ * use
+ */
+ if ((*l->tab->Popped) (aTHX_ f) != 0)
+ return;
+ }
+ if (PerlIO_lockcnt(f)) {
+ /* we're in use; defer freeing the structure */
+ PerlIOBase(f)->flags = PERLIO_F_CLEARED;
+ PerlIOBase(f)->tab = NULL;
+ }
+ else {
+ *f = l->next;
+ Safefree(l);
+ }
}
}
@@ -686,23 +686,23 @@ PerlIO_get_layers(pTHX_ PerlIO *f)
AV * const av = newAV();
if (PerlIOValid(f)) {
- PerlIOl *l = PerlIOBase(f);
-
- while (l) {
- /* There is some collusion in the implementation of
- XS_PerlIO_get_layers - it knows that name and flags are
- generated as fresh SVs here, and takes advantage of that to
- "copy" them by taking a reference. If it changes here, it needs
- to change there too. */
- SV * const name = l->tab && l->tab->name ?
- newSVpv(l->tab->name, 0) : &PL_sv_undef;
- SV * const arg = l->tab && l->tab->Getarg ?
- (*l->tab->Getarg)(aTHX_ &l, 0, 0) : &PL_sv_undef;
- av_push(av, name);
- av_push(av, arg);
- av_push(av, newSViv((IV)l->flags));
- l = l->next;
- }
+ PerlIOl *l = PerlIOBase(f);
+
+ while (l) {
+ /* There is some collusion in the implementation of
+ XS_PerlIO_get_layers - it knows that name and flags are
+ generated as fresh SVs here, and takes advantage of that to
+ "copy" them by taking a reference. If it changes here, it needs
+ to change there too. */
+ SV * const name = l->tab && l->tab->name ?
+ newSVpv(l->tab->name, 0) : &PL_sv_undef;
+ SV * const arg = l->tab && l->tab->Getarg ?
+ (*l->tab->Getarg)(aTHX_ &l, 0, 0) : &PL_sv_undef;
+ av_push(av, name);
+ av_push(av, arg);
+ av_push(av, newSViv((IV)l->flags));
+ l = l->next;
+ }
}
return av;
@@ -719,38 +719,38 @@ PerlIO_find_layer(pTHX_ const char *name, STRLEN len, int load)
IV i;
if ((SSize_t) len <= 0)
- len = strlen(name);
+ len = strlen(name);
for (i = 0; i < PL_known_layers->cur; i++) {
- PerlIO_funcs * const f = PL_known_layers->array[i].funcs;
+ PerlIO_funcs * const f = PL_known_layers->array[i].funcs;
const STRLEN this_len = strlen(f->name);
if (this_len == len && memEQ(f->name, name, len)) {
- DEBUG_i( PerlIO_debug("%.*s => %p\n", (int) len, name, (void*)f) );
- return f;
- }
+ DEBUG_i( PerlIO_debug("%.*s => %p\n", (int) len, name, (void*)f) );
+ return f;
+ }
}
if (load && PL_subname && PL_def_layerlist
- && PL_def_layerlist->cur >= 2) {
- if (PL_in_load_module) {
- Perl_croak(aTHX_ "Recursive call to Perl_load_module in PerlIO_find_layer");
- return NULL;
- } else {
- SV * const pkgsv = newSVpvs("PerlIO");
- SV * const layer = newSVpvn(name, len);
- CV * const cv = get_cvs("PerlIO::Layer::NoWarnings", 0);
- ENTER;
- SAVEBOOL(PL_in_load_module);
- if (cv) {
- SAVEGENERICSV(PL_warnhook);
- PL_warnhook = MUTABLE_SV((SvREFCNT_inc_simple_NN(cv)));
- }
- PL_in_load_module = TRUE;
- /*
- * The two SVs are magically freed by load_module
- */
- Perl_load_module(aTHX_ 0, pkgsv, NULL, layer, NULL);
- LEAVE;
- return PerlIO_find_layer(aTHX_ name, len, 0);
- }
+ && PL_def_layerlist->cur >= 2) {
+ if (PL_in_load_module) {
+ Perl_croak(aTHX_ "Recursive call to Perl_load_module in PerlIO_find_layer");
+ return NULL;
+ } else {
+ SV * const pkgsv = newSVpvs("PerlIO");
+ SV * const layer = newSVpvn(name, len);
+ CV * const cv = get_cvs("PerlIO::Layer::NoWarnings", 0);
+ ENTER;
+ SAVEBOOL(PL_in_load_module);
+ if (cv) {
+ SAVEGENERICSV(PL_warnhook);
+ PL_warnhook = MUTABLE_SV((SvREFCNT_inc_simple_NN(cv)));
+ }
+ PL_in_load_module = TRUE;
+ /*
+ * The two SVs are magically freed by load_module
+ */
+ Perl_load_module(aTHX_ 0, pkgsv, NULL, layer, NULL);
+ LEAVE;
+ return PerlIO_find_layer(aTHX_ name, len, 0);
+ }
}
DEBUG_i( PerlIO_debug("Cannot find %.*s\n", (int) len, name) );
return NULL;
@@ -762,11 +762,11 @@ static int
perlio_mg_set(pTHX_ SV *sv, MAGIC *mg)
{
if (SvROK(sv)) {
- IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
- PerlIO * const ifp = IoIFP(io);
- PerlIO * const ofp = IoOFP(io);
- Perl_warn(aTHX_ "set %" SVf " %p %p %p",
- SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
+ IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
+ PerlIO * const ifp = IoIFP(io);
+ PerlIO * const ofp = IoOFP(io);
+ Perl_warn(aTHX_ "set %" SVf " %p %p %p",
+ SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
}
return 0;
}
@@ -775,11 +775,11 @@ static int
perlio_mg_get(pTHX_ SV *sv, MAGIC *mg)
{
if (SvROK(sv)) {
- IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
- PerlIO * const ifp = IoIFP(io);
- PerlIO * const ofp = IoOFP(io);
- Perl_warn(aTHX_ "get %" SVf " %p %p %p",
- SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
+ IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
+ PerlIO * const ifp = IoIFP(io);
+ PerlIO * const ofp = IoOFP(io);
+ Perl_warn(aTHX_ "get %" SVf " %p %p %p",
+ SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
}
return 0;
}
@@ -822,16 +822,16 @@ XS(XS_io_MODIFY_SCALAR_ATTRIBUTES)
mg_magical(sv);
Perl_warn(aTHX_ "attrib %" SVf, SVfARG(sv));
for (i = 2; i < items; i++) {
- STRLEN len;
- const char * const name = SvPV_const(ST(i), len);
- SV * const layer = PerlIO_find_layer(aTHX_ name, len, 1);
- if (layer) {
- av_push(av, SvREFCNT_inc_simple_NN(layer));
- }
- else {
- ST(count) = ST(i);
- count++;
- }
+ STRLEN len;
+ const char * const name = SvPV_const(ST(i), len);
+ SV * const layer = PerlIO_find_layer(aTHX_ name, len, 1);
+ if (layer) {
+ av_push(av, SvREFCNT_inc_simple_NN(layer));
+ }
+ else {
+ ST(count) = ST(i);
+ count++;
+ }
}
SvREFCNT_dec(av);
XSRETURN(count);
@@ -866,16 +866,16 @@ XS(XS_PerlIO__Layer__find)
{
dXSARGS;
if (items < 2)
- Perl_croak(aTHX_ "Usage class->find(name[,load])");
+ Perl_croak(aTHX_ "Usage class->find(name[,load])");
else {
- STRLEN len;
- const char * const name = SvPV_const(ST(1), len);
- const bool load = (items > 2) ? SvTRUE_NN(ST(2)) : 0;
- PerlIO_funcs * const layer = PerlIO_find_layer(aTHX_ name, len, load);
- ST(0) =
- (layer) ? sv_2mortal(PerlIO_tab_sv(aTHX_ layer)) :
- &PL_sv_undef;
- XSRETURN(1);
+ STRLEN len;
+ const char * const name = SvPV_const(ST(1), len);
+ const bool load = (items > 2) ? SvTRUE_NN(ST(2)) : 0;
+ PerlIO_funcs * const layer = PerlIO_find_layer(aTHX_ name, len, load);
+ ST(0) =
+ (layer) ? sv_2mortal(PerlIO_tab_sv(aTHX_ layer)) :
+ &PL_sv_undef;
+ XSRETURN(1);
}
}
@@ -883,7 +883,7 @@ void
PerlIO_define_layer(pTHX_ PerlIO_funcs *tab)
{
if (!PL_known_layers)
- PL_known_layers = PerlIO_list_alloc(aTHX);
+ PL_known_layers = PerlIO_list_alloc(aTHX);
PerlIO_list_push(aTHX_ PL_known_layers, tab, NULL);
DEBUG_i( PerlIO_debug("define %s %p\n", tab->name, (void*)tab) );
}
@@ -892,88 +892,88 @@ int
PerlIO_parse_layers(pTHX_ PerlIO_list_t *av, const char *names)
{
if (names) {
- const char *s = names;
- while (*s) {
- while (isSPACE(*s) || *s == ':')
- s++;
- if (*s) {
- STRLEN llen = 0;
- const char *e = s;
- const char *as = NULL;
- STRLEN alen = 0;
- if (!isIDFIRST(*s)) {
- /*
- * Message is consistent with how attribute lists are
- * passed. Even though this means "foo : : bar" is
- * seen as an invalid separator character.
- */
- const char q = ((*s == '\'') ? '"' : '\'');
- Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
- "Invalid separator character %c%c%c in PerlIO layer specification %s",
- q, *s, q, s);
- SETERRNO(EINVAL, LIB_INVARG);
- return -1;
- }
- do {
- e++;
- } while (isWORDCHAR(*e));
- llen = e - s;
- if (*e == '(') {
- int nesting = 1;
- as = ++e;
- while (nesting) {
- switch (*e++) {
- case ')':
- if (--nesting == 0)
- alen = (e - 1) - as;
- break;
- case '(':
- ++nesting;
- break;
- case '\\':
- /*
- * It's a nul terminated string, not allowed
- * to \ the terminating null. Anything other
- * character is passed over.
- */
- if (*e++) {
- break;
- }
+ const char *s = names;
+ while (*s) {
+ while (isSPACE(*s) || *s == ':')
+ s++;
+ if (*s) {
+ STRLEN llen = 0;
+ const char *e = s;
+ const char *as = NULL;
+ STRLEN alen = 0;
+ if (!isIDFIRST(*s)) {
+ /*
+ * Message is consistent with how attribute lists are
+ * passed. Even though this means "foo : : bar" is
+ * seen as an invalid separator character.
+ */
+ const char q = ((*s == '\'') ? '"' : '\'');
+ Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
+ "Invalid separator character %c%c%c in PerlIO layer specification %s",
+ q, *s, q, s);
+ SETERRNO(EINVAL, LIB_INVARG);
+ return -1;
+ }
+ do {
+ e++;
+ } while (isWORDCHAR(*e));
+ llen = e - s;
+ if (*e == '(') {
+ int nesting = 1;
+ as = ++e;
+ while (nesting) {
+ switch (*e++) {
+ case ')':
+ if (--nesting == 0)
+ alen = (e - 1) - as;
+ break;
+ case '(':
+ ++nesting;
+ break;
+ case '\\':
+ /*
+ * It's a nul terminated string, not allowed
+ * to \ the terminating null. Anything other
+ * character is passed over.
+ */
+ if (*e++) {
+ break;
+ }
/* Fall through */
- case '\0':
- e--;
- Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
- "Argument list not closed for PerlIO layer \"%.*s\"",
- (int) (e - s), s);
- return -1;
- default:
- /*
- * boring.
- */
- break;
- }
- }
- }
- if (e > s) {
- PerlIO_funcs * const layer =
- PerlIO_find_layer(aTHX_ s, llen, 1);
- if (layer) {
- SV *arg = NULL;
- if (as)
- arg = newSVpvn(as, alen);
- PerlIO_list_push(aTHX_ av, layer,
- (arg) ? arg : &PL_sv_undef);
- SvREFCNT_dec(arg);
- }
- else {
- Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"%.*s\"",
- (int) llen, s);
- return -1;
- }
- }
- s = e;
- }
- }
+ case '\0':
+ e--;
+ Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
+ "Argument list not closed for PerlIO layer \"%.*s\"",
+ (int) (e - s), s);
+ return -1;
+ default:
+ /*
+ * boring.
+ */
+ break;
+ }
+ }
+ }
+ if (e > s) {
+ PerlIO_funcs * const layer =
+ PerlIO_find_layer(aTHX_ s, llen, 1);
+ if (layer) {
+ SV *arg = NULL;
+ if (as)
+ arg = newSVpvn(as, alen);
+ PerlIO_list_push(aTHX_ av, layer,
+ (arg) ? arg : &PL_sv_undef);
+ SvREFCNT_dec(arg);
+ }
+ else {
+ Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"%.*s\"",
+ (int) llen, s);
+ return -1;
+ }
+ }
+ s = e;
+ }
+ }
}
return 0;
}
@@ -986,7 +986,7 @@ PerlIO_default_buffer(pTHX_ PerlIO_list_t *av)
tab = &PerlIO_crlf;
#else
if (PerlIO_stdio.Set_ptrcnt)
- tab = &PerlIO_stdio;
+ tab = &PerlIO_stdio;
#endif
DEBUG_i( PerlIO_debug("Pushing %s\n", tab->name) );
PerlIO_list_push(aTHX_ av, (PerlIO_funcs *)tab, &PL_sv_undef);
@@ -1002,12 +1002,12 @@ PerlIO_funcs *
PerlIO_layer_fetch(pTHX_ PerlIO_list_t *av, IV n, PerlIO_funcs *def)
{
if (n >= 0 && n < av->cur) {
- DEBUG_i( PerlIO_debug("Layer %" IVdf " is %s\n", n,
+ DEBUG_i( PerlIO_debug("Layer %" IVdf " is %s\n", n,
av->array[n].funcs->name) );
- return av->array[n].funcs;
+ return av->array[n].funcs;
}
if (!def)
- Perl_croak(aTHX_ "panic: PerlIO layer array corrupt");
+ Perl_croak(aTHX_ "panic: PerlIO layer array corrupt");
return def;
}
@@ -1018,9 +1018,9 @@ PerlIOPop_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
PERL_UNUSED_ARG(arg);
PERL_UNUSED_ARG(tab);
if (PerlIOValid(f)) {
- PerlIO_flush(f);
- PerlIO_pop(aTHX_ f);
- return 0;
+ PerlIO_flush(f);
+ PerlIO_pop(aTHX_ f);
+ return 0;
}
return -1;
}
@@ -1060,34 +1060,34 @@ PerlIO_list_t *
PerlIO_default_layers(pTHX)
{
if (!PL_def_layerlist) {
- const char * const s = TAINTING_get ? NULL : PerlEnv_getenv("PERLIO");
- PERLIO_FUNCS_DECL(*osLayer) = &PerlIO_unix;
- PL_def_layerlist = PerlIO_list_alloc(aTHX);
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_unix));
+ const char * const s = TAINTING_get ? NULL : PerlEnv_getenv("PERLIO");
+ PERLIO_FUNCS_DECL(*osLayer) = &PerlIO_unix;
+ PL_def_layerlist = PerlIO_list_alloc(aTHX);
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_unix));
#if defined(WIN32)
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_win32));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_win32));
# if 0
- osLayer = &PerlIO_win32;
+ osLayer = &PerlIO_win32;
# endif
#endif
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_raw));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_perlio));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_stdio));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_crlf));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_utf8));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_remove));
- PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_byte));
- PerlIO_list_push(aTHX_ PL_def_layerlist, (PerlIO_funcs *)osLayer,
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_raw));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_perlio));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_stdio));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_crlf));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_utf8));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_remove));
+ PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_byte));
+ PerlIO_list_push(aTHX_ PL_def_layerlist, (PerlIO_funcs *)osLayer,
&PL_sv_undef);
- if (s) {
- PerlIO_parse_layers(aTHX_ PL_def_layerlist, s);
- }
- else {
- PerlIO_default_buffer(aTHX_ PL_def_layerlist);
- }
+ if (s) {
+ PerlIO_parse_layers(aTHX_ PL_def_layerlist, s);
+ }
+ else {
+ PerlIO_default_buffer(aTHX_ PL_def_layerlist);
+ }
}
if (PL_def_layerlist->cur < 2) {
- PerlIO_default_buffer(aTHX_ PL_def_layerlist);
+ PerlIO_default_buffer(aTHX_ PL_def_layerlist);
}
return PL_def_layerlist;
}
@@ -1097,7 +1097,7 @@ Perl_boot_core_PerlIO(pTHX)
{
#ifdef USE_ATTRIBUTES_FOR_PERLIO
newXS("io::MODIFY_SCALAR_ATTRIBUTES", XS_io_MODIFY_SCALAR_ATTRIBUTES,
- __FILE__);
+ __FILE__);
#endif
newXS("PerlIO::Layer::find", XS_PerlIO__Layer__find, __FILE__);
newXS("PerlIO::Layer::NoWarnings", XS_PerlIO__Layer__NoWarnings, __FILE__);
@@ -1108,7 +1108,7 @@ PerlIO_default_layer(pTHX_ I32 n)
{
PerlIO_list_t * const av = PerlIO_default_layers(aTHX);
if (n < 0)
- n += av->cur;
+ n += av->cur;
return PerlIO_layer_fetch(aTHX_ av, n, PERLIO_FUNCS_CAST(&PerlIO_stdio));
}
@@ -1119,10 +1119,10 @@ void
PerlIO_stdstreams(pTHX)
{
if (!PL_perlio) {
- PerlIO_init_table(aTHX);
- PerlIO_fdopen(0, "Ir" PERLIO_STDTEXT);
- PerlIO_fdopen(1, "Iw" PERLIO_STDTEXT);
- PerlIO_fdopen(2, "Iw" PERLIO_STDTEXT);
+ PerlIO_init_table(aTHX);
+ PerlIO_fdopen(0, "Ir" PERLIO_STDTEXT);
+ PerlIO_fdopen(1, "Iw" PERLIO_STDTEXT);
+ PerlIO_fdopen(2, "Iw" PERLIO_STDTEXT);
}
}
@@ -1131,68 +1131,68 @@ PerlIO_push(pTHX_ PerlIO *f, PERLIO_FUNCS_DECL(*tab), const char *mode, SV *arg)
{
VERIFY_HEAD(f);
if (tab->fsize != sizeof(PerlIO_funcs)) {
- Perl_croak( aTHX_
- "%s (%" UVuf ") does not match %s (%" UVuf ")",
- "PerlIO layer function table size", (UV)tab->fsize,
- "size expected by this perl", (UV)sizeof(PerlIO_funcs) );
+ Perl_croak( aTHX_
+ "%s (%" UVuf ") does not match %s (%" UVuf ")",
+ "PerlIO layer function table size", (UV)tab->fsize,
+ "size expected by this perl", (UV)sizeof(PerlIO_funcs) );
}
if (tab->size) {
- PerlIOl *l;
- if (tab->size < sizeof(PerlIOl)) {
- Perl_croak( aTHX_
- "%s (%" UVuf ") smaller than %s (%" UVuf ")",
- "PerlIO layer instance size", (UV)tab->size,
- "size expected by this perl", (UV)sizeof(PerlIOl) );
- }
- /* Real layer with a data area */
- if (f) {
- char *temp;
- Newxz(temp, tab->size, char);
- l = (PerlIOl*)temp;
- if (l) {
- l->next = *f;
- l->tab = (PerlIO_funcs*) tab;
- l->head = ((PerlIOl*)f)->head;
- *f = l;
- DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n",
+ PerlIOl *l;
+ if (tab->size < sizeof(PerlIOl)) {
+ Perl_croak( aTHX_
+ "%s (%" UVuf ") smaller than %s (%" UVuf ")",
+ "PerlIO layer instance size", (UV)tab->size,
+ "size expected by this perl", (UV)sizeof(PerlIOl) );
+ }
+ /* Real layer with a data area */
+ if (f) {
+ char *temp;
+ Newxz(temp, tab->size, char);
+ l = (PerlIOl*)temp;
+ if (l) {
+ l->next = *f;
+ l->tab = (PerlIO_funcs*) tab;
+ l->head = ((PerlIOl*)f)->head;
+ *f = l;
+ DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n",
(void*)f, tab->name,
(mode) ? mode : "(Null)", (void*)arg) );
- if (*l->tab->Pushed &&
- (*l->tab->Pushed)
- (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
- PerlIO_pop(aTHX_ f);
- return NULL;
- }
- }
- else
- return NULL;
- }
+ if (*l->tab->Pushed &&
+ (*l->tab->Pushed)
+ (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
+ PerlIO_pop(aTHX_ f);
+ return NULL;
+ }
+ }
+ else
+ return NULL;
+ }
}
else if (f) {
- /* Pseudo-layer where push does its own stack adjust */
- DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n", (void*)f, tab->name,
+ /* Pseudo-layer where push does its own stack adjust */
+ DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n", (void*)f, tab->name,
(mode) ? mode : "(Null)", (void*)arg) );
- if (tab->Pushed &&
- (*tab->Pushed) (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
- return NULL;
- }
+ if (tab->Pushed &&
+ (*tab->Pushed) (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
+ return NULL;
+ }
}
return f;
}
PerlIO *
PerlIOBase_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
- IV n, const char *mode, int fd, int imode, int perm,
- PerlIO *old, int narg, SV **args)
+ IV n, const char *mode, int fd, int imode, int perm,
+ PerlIO *old, int narg, SV **args)
{
PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_layer(aTHX_ 0));
if (tab && tab->Open) {
- PerlIO* ret = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm, old, narg, args);
- if (ret && PerlIO_push(aTHX_ ret, self, mode, PerlIOArg) == NULL) {
- PerlIO_close(ret);
- return NULL;
- }
- return ret;
+ PerlIO* ret = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm, old, narg, args);
+ if (ret && PerlIO_push(aTHX_ ret, self, mode, PerlIOArg) == NULL) {
+ PerlIO_close(ret);
+ return NULL;
+ }
+ return ret;
}
SETERRNO(EINVAL, LIB_INVARG);
return NULL;
@@ -1202,16 +1202,16 @@ IV
PerlIOBase_binmode(pTHX_ PerlIO *f)
{
if (PerlIOValid(f)) {
- /* Is layer suitable for raw stream ? */
- if (PerlIOBase(f)->tab && PerlIOBase(f)->tab->kind & PERLIO_K_RAW) {
- /* Yes - turn off UTF-8-ness, to undo UTF-8 locale effects */
- PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
- }
- else {
- /* Not suitable - pop it */
- PerlIO_pop(aTHX_ f);
- }
- return 0;
+ /* Is layer suitable for raw stream ? */
+ if (PerlIOBase(f)->tab && PerlIOBase(f)->tab->kind & PERLIO_K_RAW) {
+ /* Yes - turn off UTF-8-ness, to undo UTF-8 locale effects */
+ PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
+ }
+ else {
+ /* Not suitable - pop it */
+ PerlIO_pop(aTHX_ f);
+ }
+ return 0;
}
return -1;
}
@@ -1224,54 +1224,54 @@ PerlIORaw_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
PERL_UNUSED_ARG(tab);
if (PerlIOValid(f)) {
- PerlIO *t;
- const PerlIOl *l;
- PerlIO_flush(f);
- /*
- * Strip all layers that are not suitable for a raw stream
- */
- t = f;
- while (t && (l = *t)) {
- if (l->tab && l->tab->Binmode) {
- /* Has a handler - normal case */
- if ((*l->tab->Binmode)(aTHX_ t) == 0) {
- if (*t == l) {
- /* Layer still there - move down a layer */
- t = PerlIONext(t);
- }
- }
- else {
- return -1;
- }
- }
- else {
- /* No handler - pop it */
- PerlIO_pop(aTHX_ t);
- }
- }
- if (PerlIOValid(f)) {
- DEBUG_i( PerlIO_debug(":raw f=%p :%s\n", (void*)f,
+ PerlIO *t;
+ const PerlIOl *l;
+ PerlIO_flush(f);
+ /*
+ * Strip all layers that are not suitable for a raw stream
+ */
+ t = f;
+ while (t && (l = *t)) {
+ if (l->tab && l->tab->Binmode) {
+ /* Has a handler - normal case */
+ if ((*l->tab->Binmode)(aTHX_ t) == 0) {
+ if (*t == l) {
+ /* Layer still there - move down a layer */
+ t = PerlIONext(t);
+ }
+ }
+ else {
+ return -1;
+ }
+ }
+ else {
+ /* No handler - pop it */
+ PerlIO_pop(aTHX_ t);
+ }
+ }
+ if (PerlIOValid(f)) {
+ DEBUG_i( PerlIO_debug(":raw f=%p :%s\n", (void*)f,
PerlIOBase(f)->tab ? PerlIOBase(f)->tab->name : "(Null)") );
- return 0;
- }
+ return 0;
+ }
}
return -1;
}
int
PerlIO_apply_layera(pTHX_ PerlIO *f, const char *mode,
- PerlIO_list_t *layers, IV n, IV max)
+ PerlIO_list_t *layers, IV n, IV max)
{
int code = 0;
while (n < max) {
- PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n, NULL);
- if (tab) {
- if (!PerlIO_push(aTHX_ f, tab, mode, PerlIOArg)) {
- code = -1;
- break;
- }
- }
- n++;
+ PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n, NULL);
+ if (tab) {
+ if (!PerlIO_push(aTHX_ f, tab, mode, PerlIOArg)) {
+ code = -1;
+ break;
+ }
+ }
+ n++;
}
return code;
}
@@ -1283,12 +1283,12 @@ PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names)
ENTER;
save_scalar(PL_errgv);
if (f && names) {
- PerlIO_list_t * const layers = PerlIO_list_alloc(aTHX);
- code = PerlIO_parse_layers(aTHX_ layers, names);
- if (code == 0) {
- code = PerlIO_apply_layera(aTHX_ f, mode, layers, 0, layers->cur);
- }
- PerlIO_list_free(aTHX_ layers);
+ PerlIO_list_t * const layers = PerlIO_list_alloc(aTHX);
+ code = PerlIO_parse_layers(aTHX_ layers, names);
+ if (code == 0) {
+ code = PerlIO_apply_layera(aTHX_ f, mode, layers, 0, layers->cur);
+ }
+ PerlIO_list_free(aTHX_ layers);
}
LEAVE;
return code;
@@ -1313,53 +1313,53 @@ PerlIO_binmode(pTHX_ PerlIO *f, int iotype, int mode, const char *names)
iotype, mode, (names) ? names : "(Null)") );
if (names) {
- /* Do not flush etc. if (e.g.) switching encodings.
- if a pushed layer knows it needs to flush lower layers
- (for example :unix which is never going to call them)
- it can do the flush when it is pushed.
- */
- return cBOOL(PerlIO_apply_layers(aTHX_ f, NULL, names) == 0);
+ /* Do not flush etc. if (e.g.) switching encodings.
+ if a pushed layer knows it needs to flush lower layers
+ (for example :unix which is never going to call them)
+ it can do the flush when it is pushed.
+ */
+ return cBOOL(PerlIO_apply_layers(aTHX_ f, NULL, names) == 0);
}
else {
- /* Fake 5.6 legacy of using this call to turn ON O_TEXT */
+ /* Fake 5.6 legacy of using this call to turn ON O_TEXT */
#ifdef PERLIO_USING_CRLF
- /* Legacy binmode only has meaning if O_TEXT has a value distinct from
- O_BINARY so we can look for it in mode.
- */
- if (!(mode & O_BINARY)) {
- /* Text mode */
- /* FIXME?: Looking down the layer stack seems wrong,
- but is a way of reaching past (say) an encoding layer
- to flip CRLF-ness of the layer(s) below
- */
- while (*f) {
- /* Perhaps we should turn on bottom-most aware layer
- e.g. Ilya's idea that UNIX TTY could serve
- */
- if (PerlIOBase(f)->tab &&
- PerlIOBase(f)->tab->kind & PERLIO_K_CANCRLF)
- {
- if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF)) {
- /* Not in text mode - flush any pending stuff and flip it */
- PerlIO_flush(f);
- PerlIOBase(f)->flags |= PERLIO_F_CRLF;
- }
- /* Only need to turn it on in one layer so we are done */
- return TRUE;
- }
- f = PerlIONext(f);
- }
- /* Not finding a CRLF aware layer presumably means we are binary
- which is not what was requested - so we failed
- We _could_ push :crlf layer but so could caller
- */
- return FALSE;
- }
+ /* Legacy binmode only has meaning if O_TEXT has a value distinct from
+ O_BINARY so we can look for it in mode.
+ */
+ if (!(mode & O_BINARY)) {
+ /* Text mode */
+ /* FIXME?: Looking down the layer stack seems wrong,
+ but is a way of reaching past (say) an encoding layer
+ to flip CRLF-ness of the layer(s) below
+ */
+ while (*f) {
+ /* Perhaps we should turn on bottom-most aware layer
+ e.g. Ilya's idea that UNIX TTY could serve
+ */
+ if (PerlIOBase(f)->tab &&
+ PerlIOBase(f)->tab->kind & PERLIO_K_CANCRLF)
+ {
+ if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF)) {
+ /* Not in text mode - flush any pending stuff and flip it */
+ PerlIO_flush(f);
+ PerlIOBase(f)->flags |= PERLIO_F_CRLF;
+ }
+ /* Only need to turn it on in one layer so we are done */
+ return TRUE;
+ }
+ f = PerlIONext(f);
+ }
+ /* Not finding a CRLF aware layer presumably means we are binary
+ which is not what was requested - so we failed
+ We _could_ push :crlf layer but so could caller
+ */
+ return FALSE;
+ }
#endif
- /* Legacy binmode is now _defined_ as being equivalent to pushing :raw
- So code that used to be here is now in PerlIORaw_pushed().
- */
- return cBOOL(PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_raw), NULL, NULL));
+ /* Legacy binmode is now _defined_ as being equivalent to pushing :raw
+ So code that used to be here is now in PerlIORaw_pushed().
+ */
+ return cBOOL(PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_raw), NULL, NULL));
}
}
@@ -1367,15 +1367,15 @@ int
PerlIO__close(pTHX_ PerlIO *f)
{
if (PerlIOValid(f)) {
- PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- if (tab && tab->Close)
- return (*tab->Close)(aTHX_ f);
- else
- return PerlIOBase_close(aTHX_ f);
+ PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ if (tab && tab->Close)
+ return (*tab->Close)(aTHX_ f);
+ else
+ return PerlIOBase_close(aTHX_ f);
}
else {
- SETERRNO(EBADF, SS_IVCHAN);
- return -1;
+ SETERRNO(EBADF, SS_IVCHAN);
+ return -1;
}
}
@@ -1384,10 +1384,10 @@ Perl_PerlIO_close(pTHX_ PerlIO *f)
{
const int code = PerlIO__close(aTHX_ f);
while (PerlIOValid(f)) {
- PerlIO_pop(aTHX_ f);
- if (PerlIO_lockcnt(f))
- /* we're in use; the 'pop' deferred freeing the structure */
- f = PerlIONext(f);
+ PerlIO_pop(aTHX_ f);
+ if (PerlIO_lockcnt(f))
+ /* we're in use; the 'pop' deferred freeing the structure */
+ f = PerlIONext(f);
}
return code;
}
@@ -1406,13 +1406,13 @@ PerlIO_layer_from_ref(pTHX_ SV *sv)
* For any scalar type load the handler which is bundled with perl
*/
if (SvTYPE(sv) < SVt_PVAV && (!isGV_with_GP(sv) || SvFAKE(sv))) {
- PerlIO_funcs *f = PerlIO_find_layer(aTHX_ STR_WITH_LEN("scalar"), 1);
- /* This isn't supposed to happen, since PerlIO::scalar is core,
- * but could happen anyway in smaller installs or with PAR */
- if (!f)
- /* diag_listed_as: Unknown PerlIO layer "%s" */
- Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"scalar\"");
- return f;
+ PerlIO_funcs *f = PerlIO_find_layer(aTHX_ STR_WITH_LEN("scalar"), 1);
+ /* This isn't supposed to happen, since PerlIO::scalar is core,
+ * but could happen anyway in smaller installs or with PAR */
+ if (!f)
+ /* diag_listed_as: Unknown PerlIO layer "%s" */
+ Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"scalar\"");
+ return f;
}
/*
@@ -1420,156 +1420,156 @@ PerlIO_layer_from_ref(pTHX_ SV *sv)
*/
switch (SvTYPE(sv)) {
case SVt_PVAV:
- return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Array"), 0);
+ return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Array"), 0);
case SVt_PVHV:
- return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Hash"), 0);
+ return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Hash"), 0);
case SVt_PVCV:
- return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Code"), 0);
+ return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Code"), 0);
case SVt_PVGV:
- return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Glob"), 0);
+ return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Glob"), 0);
default:
- return NULL;
+ return NULL;
}
}
PerlIO_list_t *
PerlIO_resolve_layers(pTHX_ const char *layers,
- const char *mode, int narg, SV **args)
+ const char *mode, int narg, SV **args)
{
PerlIO_list_t *def = PerlIO_default_layers(aTHX);
int incdef = 1;
if (!PL_perlio)
- PerlIO_stdstreams(aTHX);
+ PerlIO_stdstreams(aTHX);
if (narg) {
- SV * const arg = *args;
- /*
- * If it is a reference but not an object see if we have a handler
- * for it
- */
- if (SvROK(arg) && !SvOBJECT(SvRV(arg))) {
- PerlIO_funcs * const handler = PerlIO_layer_from_ref(aTHX_ SvRV(arg));
- if (handler) {
- def = PerlIO_list_alloc(aTHX);
- PerlIO_list_push(aTHX_ def, handler, &PL_sv_undef);
- incdef = 0;
- }
- /*
- * Don't fail if handler cannot be found :via(...) etc. may do
- * something sensible else we will just stringfy and open
- * resulting string.
- */
- }
+ SV * const arg = *args;
+ /*
+ * If it is a reference but not an object see if we have a handler
+ * for it
+ */
+ if (SvROK(arg) && !SvOBJECT(SvRV(arg))) {
+ PerlIO_funcs * const handler = PerlIO_layer_from_ref(aTHX_ SvRV(arg));
+ if (handler) {
+ def = PerlIO_list_alloc(aTHX);
+ PerlIO_list_push(aTHX_ def, handler, &PL_sv_undef);
+ incdef = 0;
+ }
+ /*
+ * Don't fail if handler cannot be found :via(...) etc. may do
+ * something sensible else we will just stringfy and open
+ * resulting string.
+ */
+ }
}
if (!layers || !*layers)
- layers = Perl_PerlIO_context_layers(aTHX_ mode);
+ layers = Perl_PerlIO_context_layers(aTHX_ mode);
if (layers && *layers) {
- PerlIO_list_t *av;
- if (incdef) {
- av = PerlIO_clone_list(aTHX_ def, NULL);
- }
- else {
- av = def;
- }
- if (PerlIO_parse_layers(aTHX_ av, layers) == 0) {
- return av;
- }
- else {
- PerlIO_list_free(aTHX_ av);
- return NULL;
- }
+ PerlIO_list_t *av;
+ if (incdef) {
+ av = PerlIO_clone_list(aTHX_ def, NULL);
+ }
+ else {
+ av = def;
+ }
+ if (PerlIO_parse_layers(aTHX_ av, layers) == 0) {
+ return av;
+ }
+ else {
+ PerlIO_list_free(aTHX_ av);
+ return NULL;
+ }
}
else {
- if (incdef)
- def->refcnt++;
- return def;
+ if (incdef)
+ def->refcnt++;
+ return def;
}
}
PerlIO *
PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd,
- int imode, int perm, PerlIO *f, int narg, SV **args)
+ int imode, int perm, PerlIO *f, int narg, SV **args)
{
if (!f && narg == 1 && *args == &PL_sv_undef) {
imode = PerlIOUnix_oflags(mode);
- if (imode != -1 && (f = PerlIO_tmpfile_flags(imode))) {
- if (!layers || !*layers)
- layers = Perl_PerlIO_context_layers(aTHX_ mode);
- if (layers && *layers)
- PerlIO_apply_layers(aTHX_ f, mode, layers);
- }
+ if (imode != -1 && (f = PerlIO_tmpfile_flags(imode))) {
+ if (!layers || !*layers)
+ layers = Perl_PerlIO_context_layers(aTHX_ mode);
+ if (layers && *layers)
+ PerlIO_apply_layers(aTHX_ f, mode, layers);
+ }
}
else {
- PerlIO_list_t *layera;
- IV n;
- PerlIO_funcs *tab = NULL;
- if (PerlIOValid(f)) {
- /*
- * This is "reopen" - it is not tested as perl does not use it
- * yet
- */
- PerlIOl *l = *f;
- layera = PerlIO_list_alloc(aTHX);
- while (l) {
- SV *arg = NULL;
- if (l->tab && l->tab->Getarg)
- arg = (*l->tab->Getarg) (aTHX_ &l, NULL, 0);
- PerlIO_list_push(aTHX_ layera, l->tab,
- (arg) ? arg : &PL_sv_undef);
- SvREFCNT_dec(arg);
- l = *PerlIONext(&l);
- }
- }
- else {
- layera = PerlIO_resolve_layers(aTHX_ layers, mode, narg, args);
- if (!layera) {
- return NULL;
- }
- }
- /*
- * Start at "top" of layer stack
- */
- n = layera->cur - 1;
- while (n >= 0) {
- PerlIO_funcs * const t = PerlIO_layer_fetch(aTHX_ layera, n, NULL);
- if (t && t->Open) {
- tab = t;
- break;
- }
- n--;
- }
- if (tab) {
- /*
- * Found that layer 'n' can do opens - call it
- */
- if (narg > 1 && !(tab->kind & PERLIO_K_MULTIARG)) {
- Perl_croak(aTHX_ "More than one argument to open(,':%s')",tab->name);
- }
- DEBUG_i( PerlIO_debug("openn(%s,'%s','%s',%d,%x,%o,%p,%d,%p)\n",
+ PerlIO_list_t *layera;
+ IV n;
+ PerlIO_funcs *tab = NULL;
+ if (PerlIOValid(f)) {
+ /*
+ * This is "reopen" - it is not tested as perl does not use it
+ * yet
+ */
+ PerlIOl *l = *f;
+ layera = PerlIO_list_alloc(aTHX);
+ while (l) {
+ SV *arg = NULL;
+ if (l->tab && l->tab->Getarg)
+ arg = (*l->tab->Getarg) (aTHX_ &l, NULL, 0);
+ PerlIO_list_push(aTHX_ layera, l->tab,
+ (arg) ? arg : &PL_sv_undef);
+ SvREFCNT_dec(arg);
+ l = *PerlIONext(&l);
+ }
+ }
+ else {
+ layera = PerlIO_resolve_layers(aTHX_ layers, mode, narg, args);
+ if (!layera) {
+ return NULL;
+ }
+ }
+ /*
+ * Start at "top" of layer stack
+ */
+ n = layera->cur - 1;
+ while (n >= 0) {
+ PerlIO_funcs * const t = PerlIO_layer_fetch(aTHX_ layera, n, NULL);
+ if (t && t->Open) {
+ tab = t;
+ break;
+ }
+ n--;
+ }
+ if (tab) {
+ /*
+ * Found that layer 'n' can do opens - call it
+ */
+ if (narg > 1 && !(tab->kind & PERLIO_K_MULTIARG)) {
+ Perl_croak(aTHX_ "More than one argument to open(,':%s')",tab->name);
+ }
+ DEBUG_i( PerlIO_debug("openn(%s,'%s','%s',%d,%x,%o,%p,%d,%p)\n",
tab->name, layers ? layers : "(Null)", mode, fd,
imode, perm, (void*)f, narg, (void*)args) );
- if (tab->Open)
- f = (*tab->Open) (aTHX_ tab, layera, n, mode, fd, imode, perm,
- f, narg, args);
- else {
- SETERRNO(EINVAL, LIB_INVARG);
- f = NULL;
- }
- if (f) {
- if (n + 1 < layera->cur) {
- /*
- * More layers above the one that we used to open -
- * apply them now
- */
- if (PerlIO_apply_layera(aTHX_ f, mode, layera, n + 1, layera->cur) != 0) {
- /* If pushing layers fails close the file */
- PerlIO_close(f);
- f = NULL;
- }
- }
- }
- }
- PerlIO_list_free(aTHX_ layera);
+ if (tab->Open)
+ f = (*tab->Open) (aTHX_ tab, layera, n, mode, fd, imode, perm,
+ f, narg, args);
+ else {
+ SETERRNO(EINVAL, LIB_INVARG);
+ f = NULL;
+ }
+ if (f) {
+ if (n + 1 < layera->cur) {
+ /*
+ * More layers above the one that we used to open -
+ * apply them now
+ */
+ if (PerlIO_apply_layera(aTHX_ f, mode, layera, n + 1, layera->cur) != 0) {
+ /* If pushing layers fails close the file */
+ PerlIO_close(f);
+ f = NULL;
+ }
+ }
+ }
+ }
+ PerlIO_list_free(aTHX_ layera);
}
return f;
}
@@ -1615,41 +1615,41 @@ int
Perl_PerlIO_flush(pTHX_ PerlIO *f)
{
if (f) {
- if (*f) {
- const PerlIO_funcs *tab = PerlIOBase(f)->tab;
-
- if (tab && tab->Flush)
- return (*tab->Flush) (aTHX_ f);
- else
- return 0; /* If no Flush defined, silently succeed. */
- }
- else {
- DEBUG_i( PerlIO_debug("Cannot flush f=%p\n", (void*)f) );
- SETERRNO(EBADF, SS_IVCHAN);
- return -1;
- }
+ if (*f) {
+ const PerlIO_funcs *tab = PerlIOBase(f)->tab;
+
+ if (tab && tab->Flush)
+ return (*tab->Flush) (aTHX_ f);
+ else
+ return 0; /* If no Flush defined, silently succeed. */
+ }
+ else {
+ DEBUG_i( PerlIO_debug("Cannot flush f=%p\n", (void*)f) );
+ SETERRNO(EBADF, SS_IVCHAN);
+ return -1;
+ }
}
else {
- /*
- * Is it good API design to do flush-all on NULL, a potentially
- * erroneous input? Maybe some magical value (PerlIO*
- * PERLIO_FLUSH_ALL = (PerlIO*)-1;)? Yes, stdio does similar
- * things on fflush(NULL), but should we be bound by their design
- * decisions? --jhi
- */
- PerlIOl **table = &PL_perlio;
- PerlIOl *ff;
- int code = 0;
- while ((ff = *table)) {
- int i;
- table = (PerlIOl **) (ff++);
- for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
- if (ff->next && PerlIO_flush(&(ff->next)) != 0)
- code = -1;
- ff++;
- }
- }
- return code;
+ /*
+ * Is it good API design to do flush-all on NULL, a potentially
+ * erroneous input? Maybe some magical value (PerlIO*
+ * PERLIO_FLUSH_ALL = (PerlIO*)-1;)? Yes, stdio does similar
+ * things on fflush(NULL), but should we be bound by their design
+ * decisions? --jhi
+ */
+ PerlIOl **table = &PL_perlio;
+ PerlIOl *ff;
+ int code = 0;
+ while ((ff = *table)) {
+ int i;
+ table = (PerlIOl **) (ff++);
+ for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
+ if (ff->next && PerlIO_flush(&(ff->next)) != 0)
+ code = -1;
+ ff++;
+ }
+ }
+ return code;
}
}
@@ -1659,16 +1659,16 @@ PerlIOBase_flush_linebuf(pTHX)
PerlIOl **table = &PL_perlio;
PerlIOl *f;
while ((f = *table)) {
- int i;
- table = (PerlIOl **) (f++);
- for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
- if (f->next
- && (PerlIOBase(&(f->next))->
- flags & (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
- == (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
- PerlIO_flush(&(f->next));
- f++;
- }
+ int i;
+ table = (PerlIOl **) (f++);
+ for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
+ if (f->next
+ && (PerlIOBase(&(f->next))->
+ flags & (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
+ == (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
+ PerlIO_flush(&(f->next));
+ f++;
+ }
}
}
@@ -1682,9 +1682,9 @@ int
PerlIO_isutf8(PerlIO *f)
{
if (PerlIOValid(f))
- return (PerlIOBase(f)->flags & PERLIO_F_UTF8) != 0;
+ return (PerlIOBase(f)->flags & PERLIO_F_UTF8) != 0;
else
- SETERRNO(EBADF, SS_IVCHAN);
+ SETERRNO(EBADF, SS_IVCHAN);
return -1;
}
@@ -1717,10 +1717,10 @@ int
PerlIO_has_base(PerlIO *f)
{
if (PerlIOValid(f)) {
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- if (tab)
- return (tab->Get_base != NULL);
+ if (tab)
+ return (tab->Get_base != NULL);
}
return 0;
@@ -1730,12 +1730,12 @@ int
PerlIO_fast_gets(PerlIO *f)
{
if (PerlIOValid(f)) {
- if (PerlIOBase(f)->flags & PERLIO_F_FASTGETS) {
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ if (PerlIOBase(f)->flags & PERLIO_F_FASTGETS) {
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- if (tab)
- return (tab->Set_ptrcnt != NULL);
- }
+ if (tab)
+ return (tab->Set_ptrcnt != NULL);
+ }
}
return 0;
@@ -1745,10 +1745,10 @@ int
PerlIO_has_cntptr(PerlIO *f)
{
if (PerlIOValid(f)) {
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- if (tab)
- return (tab->Get_ptr != NULL && tab->Get_cnt != NULL);
+ if (tab)
+ return (tab->Get_ptr != NULL && tab->Get_cnt != NULL);
}
return 0;
@@ -1758,10 +1758,10 @@ int
PerlIO_canset_cnt(PerlIO *f)
{
if (PerlIOValid(f)) {
- const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
+ const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
- if (tab)
- return (tab->Set_ptrcnt != NULL);
+ if (tab)
+ return (tab->Set_ptrcnt != NULL);
}
return 0;
@@ -1817,11 +1817,11 @@ PerlIOUtf8_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
PERL_UNUSED_ARG(mode);
PERL_UNUSED_ARG(arg);
if (PerlIOValid(f)) {
- if (tab && tab->kind & PERLIO_K_UTF8)
- PerlIOBase(f)->flags |= PERLIO_F_UTF8;
- else
- PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
- return 0;
+ if (tab && tab->kind & PERLIO_K_UTF8)
+ PerlIOBase(f)->flags |= PERLIO_F_UTF8;
+ else
+ PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
+ return 0;
}
return -1;
}
@@ -1935,27 +1935,27 @@ PerlIO_modestr(PerlIO * f, char *buf)
{
char *s = buf;
if (PerlIOValid(f)) {
- const IV flags = PerlIOBase(f)->flags;
- if (flags & PERLIO_F_APPEND) {
- *s++ = 'a';
- if (flags & PERLIO_F_CANREAD) {
- *s++ = '+';
- }
- }
- else if (flags & PERLIO_F_CANREAD) {
- *s++ = 'r';
- if (flags & PERLIO_F_CANWRITE)
- *s++ = '+';
- }
- else if (flags & PERLIO_F_CANWRITE) {
- *s++ = 'w';
- if (flags & PERLIO_F_CANREAD) {
- *s++ = '+';
- }
- }
+ const IV flags = PerlIOBase(f)->flags;
+ if (flags & PERLIO_F_APPEND) {
+ *s++ = 'a';
+ if (flags & PERLIO_F_CANREAD) {
+ *s++ = '+';
+ }
+ }
+ else if (flags & PERLIO_F_CANREAD) {
+ *s++ = 'r';
+ if (flags & PERLIO_F_CANWRITE)
+ *s++ = '+';
+ }
+ else if (flags & PERLIO_F_CANWRITE) {
+ *s++ = 'w';
+ if (flags & PERLIO_F_CANREAD) {
+ *s++ = '+';
+ }
+ }
#ifdef PERLIO_USING_CRLF
- if (!(flags & PERLIO_F_CRLF))
- *s++ = 'b';
+ if (!(flags & PERLIO_F_CRLF))
+ *s++ = 'b';
#endif
}
*s = '\0';
@@ -1971,87 +1971,87 @@ PerlIOBase_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
PERL_UNUSED_ARG(arg);
l->flags &= ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE |
- PERLIO_F_TRUNCATE | PERLIO_F_APPEND);
+ PERLIO_F_TRUNCATE | PERLIO_F_APPEND);
if (tab && tab->Set_ptrcnt != NULL)
- l->flags |= PERLIO_F_FASTGETS;
+ l->flags |= PERLIO_F_FASTGETS;
if (mode) {
- if (*mode == IoTYPE_NUMERIC || *mode == IoTYPE_IMPLICIT)
- mode++;
- switch (*mode++) {
- case 'r':
- l->flags |= PERLIO_F_CANREAD;
- break;
- case 'a':
- l->flags |= PERLIO_F_APPEND | PERLIO_F_CANWRITE;
- break;
- case 'w':
- l->flags |= PERLIO_F_TRUNCATE | PERLIO_F_CANWRITE;
- break;
- default:
- SETERRNO(EINVAL, LIB_INVARG);
- return -1;
- }
+ if (*mode == IoTYPE_NUMERIC || *mode == IoTYPE_IMPLICIT)
+ mode++;
+ switch (*mode++) {
+ case 'r':
+ l->flags |= PERLIO_F_CANREAD;
+ break;
+ case 'a':
+ l->flags |= PERLIO_F_APPEND | PERLIO_F_CANWRITE;
+ break;
+ case 'w':
+ l->flags |= PERLIO_F_TRUNCATE | PERLIO_F_CANWRITE;
+ break;
+ default:
+ SETERRNO(EINVAL, LIB_INVARG);
+ return -1;
+ }
#ifdef EBCDIC
- {
+ {
/* The mode variable contains one positional parameter followed by
* optional keyword parameters. The positional parameters must be
* passed as lowercase characters. The keyword parameters can be
* passed in mixed case. They must be separated by commas. Only one
* instance of a keyword can be specified. */
- int comma = 0;
- while (*mode) {
- switch (*mode++) {
- case '+':
- if(!comma)
- l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
- break;
- case 'b':
- if(!comma)
- l->flags &= ~PERLIO_F_CRLF;
- break;
- case 't':
- if(!comma)
- l->flags |= PERLIO_F_CRLF;
- break;
- case ',':
- comma = 1;
- break;
- default:
- break;
- }
- }
- }
+ int comma = 0;
+ while (*mode) {
+ switch (*mode++) {
+ case '+':
+ if(!comma)
+ l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
+ break;
+ case 'b':
+ if(!comma)
+ l->flags &= ~PERLIO_F_CRLF;
+ break;
+ case 't':
+ if(!comma)
+ l->flags |= PERLIO_F_CRLF;
+ break;
+ case ',':
+ comma = 1;
+ break;
+ default:
+ break;
+ }
+ }
+ }
#else
- while (*mode) {
- switch (*mode++) {
- case '+':
- l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
- break;
- case 'b':
- l->flags &= ~PERLIO_F_CRLF;
- break;
- case 't':
- l->flags |= PERLIO_F_CRLF;
- break;
- default:
- SETERRNO(EINVAL, LIB_INVARG);
- return -1;
- }
- }
+ while (*mode) {
+ switch (*mode++) {
+ case '+':
+ l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
+ break;
+ case 'b':
+ l->flags &= ~PERLIO_F_CRLF;
+ break;
+ case 't':
+ l->flags |= PERLIO_F_CRLF;
+ break;
+ default:
+ SETERRNO(EINVAL, LIB_INVARG);
+ return -1;
+ }
+ }
#endif
}
else {
- if (l->next) {
- l->flags |= l->next->flags &
- (PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_TRUNCATE |
- PERLIO_F_APPEND);
- }
+ if (l->next) {
+ l->flags |= l->next->flags &
+ (PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_TRUNCATE |
+ PERLIO_F_APPEND);
+ }
}
#if 0
DEBUG_i(
PerlIO_debug("PerlIOBase_pushed f=%p %s %s fl=%08" UVxf " (%s)\n",
- (void*)f, PerlIOBase(f)->tab->name, (omode) ? omode : "(Null)",
- l->flags, PerlIO_modestr(f, temp));
+ (void*)f, PerlIOBase(f)->tab->name, (omode) ? omode : "(Null)",
+ l->flags, PerlIO_modestr(f, temp));
);
#endif
return 0;
@@ -2083,34 +2083,34 @@ PerlIOBase_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
STDCHAR *buf = (STDCHAR *) vbuf;
if (f) {
if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD)) {
- PerlIOBase(f)->flags |= PERLIO_F_ERROR;
- SETERRNO(EBADF, SS_IVCHAN);
- PerlIO_save_errno(f);
- return 0;
- }
- while (count > 0) {
- get_cnt:
- {
- SSize_t avail = PerlIO_get_cnt(f);
- SSize_t take = 0;
- if (avail > 0)
- take = (((SSize_t) count >= 0) && ((SSize_t)count < avail)) ? (SSize_t)count : avail;
- if (take > 0) {
- STDCHAR *ptr = PerlIO_get_ptr(f);
- Copy(ptr, buf, take, STDCHAR);
- PerlIO_set_ptrcnt(f, ptr + take, (avail -= take));
- count -= take;
- buf += take;
- if (avail == 0) /* set_ptrcnt could have reset avail */
- goto get_cnt;
- }
- if (count > 0 && avail <= 0) {
- if (PerlIO_fill(f) != 0)
- break;
- }
- }
- }
- return (buf - (STDCHAR *) vbuf);
+ PerlIOBase(f)->flags |= PERLIO_F_ERROR;
+ SETERRNO(EBADF, SS_IVCHAN);
+ PerlIO_save_errno(f);
+ return 0;
+ }
+ while (count > 0) {
+ get_cnt:
+ {
+ SSize_t avail = PerlIO_get_cnt(f);
+ SSize_t take = 0;
+ if (avail > 0)
+ take = (((SSize_t) count >= 0) && ((SSize_t)count < avail)) ? (SSize_t)count : avail;
+ if (take > 0) {
+ STDCHAR *ptr = PerlIO_get_ptr(f);
+ Copy(ptr, buf, take, STDCHAR);
+ PerlIO_set_ptrcnt(f, ptr + take, (avail -= take));
+ count -= take;
+ buf += take;
+ if (avail == 0) /* set_ptrcnt could have reset avail */
+ goto get_cnt;
+ }
+ if (count > 0 && avail <= 0) {
+ if (PerlIO_fill(f) != 0)
+ break;
+ }
+ }
+ }
+ return (buf - (STDCHAR *) vbuf);
}
return 0;
}
@@ -2136,26 +2136,26 @@ PerlIOBase_close(pTHX_ PerlIO *f)
{
IV code = -1;
if (PerlIOValid(f)) {
- PerlIO *n = PerlIONext(f);
- code = PerlIO_flush(f);
- PerlIOBase(f)->flags &=
- ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
- while (PerlIOValid(n)) {
- const PerlIO_funcs * const tab = PerlIOBase(n)->tab;
- if (tab && tab->Close) {
- if ((*tab->Close)(aTHX_ n) != 0)
- code = -1;
- break;
- }
- else {
- PerlIOBase(n)->flags &=
- ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
- }
- n = PerlIONext(n);
- }
+ PerlIO *n = PerlIONext(f);
+ code = PerlIO_flush(f);
+ PerlIOBase(f)->flags &=
+ ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
+ while (PerlIOValid(n)) {
+ const PerlIO_funcs * const tab = PerlIOBase(n)->tab;
+ if (tab && tab->Close) {
+ if ((*tab->Close)(aTHX_ n) != 0)
+ code = -1;
+ break;
+ }
+ else {
+ PerlIOBase(n)->flags &=
+ ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
+ }
+ n = PerlIONext(n);
+ }
}
else {
- SETERRNO(EBADF, SS_IVCHAN);
+ SETERRNO(EBADF, SS_IVCHAN);
}
return code;
}
@@ -2165,7 +2165,7 @@ PerlIOBase_eof(pTHX_ PerlIO *f)
{
PERL_UNUSED_CONTEXT;
if (PerlIOValid(f)) {
- return (PerlIOBase(f)->flags & PERLIO_F_EOF) != 0;
+ return (PerlIOBase(f)->flags & PERLIO_F_EOF) != 0;
}
return 1;
}
@@ -2175,7 +2175,7 @@ PerlIOBase_error(pTHX_ PerlIO *f)
{
PERL_UNUSED_CONTEXT;
if (PerlIOValid(f)) {
- return (PerlIOBase(f)->flags & PERLIO_F_ERROR) != 0;
+ return (PerlIOBase(f)->flags & PERLIO_F_ERROR) != 0;
}
return 1;
}
@@ -2184,10 +2184,10 @@ void
PerlIOBase_clearerr(pTHX_ PerlIO *f)
{
if (PerlIOValid(f)) {
- PerlIO * const n = PerlIONext(f);
- PerlIOBase(f)->flags &= ~(PERLIO_F_ERROR | PERLIO_F_EOF);
- if (PerlIOValid(n))
- PerlIO_clearerr(n);
+ PerlIO * const n = PerlIONext(f);
+ PerlIOBase(f)->flags &= ~(PERLIO_F_ERROR | PERLIO_F_EOF);
+ if (PerlIOValid(n))
+ PerlIO_clearerr(n);
}
}
@@ -2196,7 +2196,7 @@ PerlIOBase_setlinebuf(pTHX_ PerlIO *f)
{
PERL_UNUSED_CONTEXT;
if (PerlIOValid(f)) {
- PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
+ PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
}
}
@@ -2204,15 +2204,15 @@ SV *
PerlIO_sv_dup(pTHX_ SV *arg, CLONE_PARAMS *param)
{
if (!arg)
- return NULL;
+ return NULL;
#ifdef USE_ITHREADS
if (param) {
- arg = sv_dup(arg, param);
- SvREFCNT_inc_simple_void_NN(arg);
- return arg;
+ arg = sv_dup(arg, param);
+ SvREFCNT_inc_simple_void_NN(arg);
+ return arg;
}
else {
- return newSVsv(arg);
+ return newSVsv(arg);
}
#else
PERL_UNUSED_ARG(param);
@@ -2225,26 +2225,26 @@ PerlIOBase_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
{
PerlIO * const nexto = PerlIONext(o);
if (PerlIOValid(nexto)) {
- const PerlIO_funcs * const tab = PerlIOBase(nexto)->tab;
- if (tab && tab->Dup)
- f = (*tab->Dup)(aTHX_ f, nexto, param, flags);
- else
- f = PerlIOBase_dup(aTHX_ f, nexto, param, flags);
+ const PerlIO_funcs * const tab = PerlIOBase(nexto)->tab;
+ if (tab && tab->Dup)
+ f = (*tab->Dup)(aTHX_ f, nexto, param, flags);
+ else
+ f = PerlIOBase_dup(aTHX_ f, nexto, param, flags);
}
if (f) {
- PerlIO_funcs * const self = PerlIOBase(o)->tab;
- SV *arg = NULL;
- char buf[8];
- assert(self);
- DEBUG_i(PerlIO_debug("PerlIOBase_dup %s f=%p o=%p param=%p\n",
+ PerlIO_funcs * const self = PerlIOBase(o)->tab;
+ SV *arg = NULL;
+ char buf[8];
+ assert(self);
+ DEBUG_i(PerlIO_debug("PerlIOBase_dup %s f=%p o=%p param=%p\n",
self->name,
(void*)f, (void*)o, (void*)param) );
- if (self->Getarg)
- arg = (*self->Getarg)(aTHX_ o, param, flags);
- f = PerlIO_push(aTHX_ f, self, PerlIO_modestr(o,buf), arg);
- if (f && PerlIOBase(o)->flags & PERLIO_F_UTF8)
- PerlIOBase(f)->flags |= PERLIO_F_UTF8;
- SvREFCNT_dec(arg);
+ if (self->Getarg)
+ arg = (*self->Getarg)(aTHX_ o, param, flags);
+ f = PerlIO_push(aTHX_ f, self, PerlIO_modestr(o,buf), arg);
+ if (f && PerlIOBase(o)->flags & PERLIO_F_UTF8)
+ PerlIOBase(f)->flags |= PERLIO_F_UTF8;
+ SvREFCNT_dec(arg);
}
return f;
}
@@ -2268,7 +2268,7 @@ S_more_refcounted_fds(pTHX_ const int new_fd)
old_max, new_fd, new_max) );
if (new_fd < old_max) {
- return;
+ return;
}
assert (new_max > new_fd);
@@ -2278,8 +2278,8 @@ S_more_refcounted_fds(pTHX_ const int new_fd)
new_array = (int*) realloc(PL_perlio_fd_refcnt, new_max * sizeof(int));
if (!new_array) {
- MUTEX_UNLOCK(&PL_perlio_mutex);
- croak_no_mem();
+ MUTEX_UNLOCK(&PL_perlio_mutex);
+ croak_no_mem();
}
PL_perlio_fd_refcnt_size = new_max;
@@ -2306,23 +2306,23 @@ PerlIOUnix_refcnt_inc(int fd)
dTHX;
if (fd >= 0) {
- MUTEX_LOCK(&PL_perlio_mutex);
- if (fd >= PL_perlio_fd_refcnt_size)
- S_more_refcounted_fds(aTHX_ fd);
-
- PL_perlio_fd_refcnt[fd]++;
- if (PL_perlio_fd_refcnt[fd] <= 0) {
- /* diag_listed_as: refcnt_inc: fd %d%s */
- Perl_croak(aTHX_ "refcnt_inc: fd %d: %d <= 0\n",
- fd, PL_perlio_fd_refcnt[fd]);
- }
- DEBUG_i( PerlIO_debug("refcnt_inc: fd %d refcnt=%d\n",
+ MUTEX_LOCK(&PL_perlio_mutex);
+ if (fd >= PL_perlio_fd_refcnt_size)
+ S_more_refcounted_fds(aTHX_ fd);
+
+ PL_perlio_fd_refcnt[fd]++;
+ if (PL_perlio_fd_refcnt[fd] <= 0) {
+ /* diag_listed_as: refcnt_inc: fd %d%s */
+ Perl_croak(aTHX_ "refcnt_inc: fd %d: %d <= 0\n",
+ fd, PL_perlio_fd_refcnt[fd]);
+ }
+ DEBUG_i( PerlIO_debug("refcnt_inc: fd %d refcnt=%d\n",
fd, PL_perlio_fd_refcnt[fd]) );
- MUTEX_UNLOCK(&PL_perlio_mutex);
+ MUTEX_UNLOCK(&PL_perlio_mutex);
} else {
- /* diag_listed_as: refcnt_inc: fd %d%s */
- Perl_croak(aTHX_ "refcnt_inc: fd %d < 0\n", fd);
+ /* diag_listed_as: refcnt_inc: fd %d%s */
+ Perl_croak(aTHX_ "refcnt_inc: fd %d < 0\n", fd);
}
}
@@ -2334,23 +2334,23 @@ PerlIOUnix_refcnt_dec(int fd)
#ifdef DEBUGGING
dTHX;
#endif
- MUTEX_LOCK(&PL_perlio_mutex);
- if (fd >= PL_perlio_fd_refcnt_size) {
- /* diag_listed_as: refcnt_dec: fd %d%s */
- Perl_croak_nocontext("refcnt_dec: fd %d >= refcnt_size %d\n",
- fd, PL_perlio_fd_refcnt_size);
- }
- if (PL_perlio_fd_refcnt[fd] <= 0) {
- /* diag_listed_as: refcnt_dec: fd %d%s */
- Perl_croak_nocontext("refcnt_dec: fd %d: %d <= 0\n",
- fd, PL_perlio_fd_refcnt[fd]);
- }
- cnt = --PL_perlio_fd_refcnt[fd];
- DEBUG_i( PerlIO_debug("refcnt_dec: fd %d refcnt=%d\n", fd, cnt) );
- MUTEX_UNLOCK(&PL_perlio_mutex);
+ MUTEX_LOCK(&PL_perlio_mutex);
+ if (fd >= PL_perlio_fd_refcnt_size) {
+ /* diag_listed_as: refcnt_dec: fd %d%s */
+ Perl_croak_nocontext("refcnt_dec: fd %d >= refcnt_size %d\n",
+ fd, PL_perlio_fd_refcnt_size);
+ }
+ if (PL_perlio_fd_refcnt[fd] <= 0) {
+ /* diag_listed_as: refcnt_dec: fd %d%s */
+ Perl_croak_nocontext("refcnt_dec: fd %d: %d <= 0\n",
+ fd, PL_perlio_fd_refcnt[fd]);
+ }
+ cnt = --PL_perlio_fd_refcnt[fd];
+ DEBUG_i( PerlIO_debug("refcnt_dec: fd %d refcnt=%d\n", fd, cnt) );
+ MUTEX_UNLOCK(&PL_perlio_mutex);
} else {
- /* diag_listed_as: refcnt_dec: fd %d%s */
- Perl_croak_nocontext("refcnt_dec: fd %d < 0\n", fd);
+ /* diag_listed_as: refcnt_dec: fd %d%s */
+ Perl_croak_nocontext("refcnt_dec: fd %d < 0\n", fd);
}
return cnt;
}
@@ -2361,22 +2361,22 @@ PerlIOUnix_refcnt(int fd)
dTHX;
int cnt = 0;
if (fd >= 0) {
- MUTEX_LOCK(&PL_perlio_mutex);
- if (fd >= PL_perlio_fd_refcnt_size) {
- /* diag_listed_as: refcnt: fd %d%s */
- Perl_croak(aTHX_ "refcnt: fd %d >= refcnt_size %d\n",
- fd, PL_perlio_fd_refcnt_size);
- }
- if (PL_perlio_fd_refcnt[fd] <= 0) {
- /* diag_listed_as: refcnt: fd %d%s */
- Perl_croak(aTHX_ "refcnt: fd %d: %d <= 0\n",
- fd, PL_perlio_fd_refcnt[fd]);
- }
- cnt = PL_perlio_fd_refcnt[fd];
- MUTEX_UNLOCK(&PL_perlio_mutex);
+ MUTEX_LOCK(&PL_perlio_mutex);
+ if (fd >= PL_perlio_fd_refcnt_size) {
+ /* diag_listed_as: refcnt: fd %d%s */
+ Perl_croak(aTHX_ "refcnt: fd %d >= refcnt_size %d\n",
+ fd, PL_perlio_fd_refcnt_size);
+ }
+ if (PL_perlio_fd_refcnt[fd] <= 0) {
+ /* diag_listed_as: refcnt: fd %d%s */
+ Perl_croak(aTHX_ "refcnt: fd %d: %d <= 0\n",
+ fd, PL_perlio_fd_refcnt[fd]);
+ }
+ cnt = PL_perlio_fd_refcnt[fd];
+ MUTEX_UNLOCK(&PL_perlio_mutex);
} else {
- /* diag_listed_as: refcnt: fd %d%s */
- Perl_croak(aTHX_ "refcnt: fd %d < 0\n", fd);
+ /* diag_listed_as: refcnt: fd %d%s */
+ Perl_croak(aTHX_ "refcnt: fd %d < 0\n", fd);
}
return cnt;
}
@@ -2393,19 +2393,19 @@ PerlIO_cleanup(pTHX)
/* Raise STDIN..STDERR refcount so we don't close them */
for (i=0; i < 3; i++)
- PerlIOUnix_refcnt_inc(i);
+ PerlIOUnix_refcnt_inc(i);
PerlIO_cleantable(aTHX_ &PL_perlio);
/* Restore STDIN..STDERR refcount */
for (i=0; i < 3; i++)
- PerlIOUnix_refcnt_dec(i);
+ PerlIOUnix_refcnt_dec(i);
if (PL_known_layers) {
- PerlIO_list_free(aTHX_ PL_known_layers);
- PL_known_layers = NULL;
+ PerlIO_list_free(aTHX_ PL_known_layers);
+ PL_known_layers = NULL;
}
if (PL_def_layerlist) {
- PerlIO_list_free(aTHX_ PL_def_layerlist);
- PL_def_layerlist = NULL;
+ PerlIO_list_free(aTHX_ PL_def_layerlist);
+ PL_def_layerlist = NULL;
}
}
@@ -2419,22 +2419,22 @@ void PerlIO_teardown(void) /* Call only from PERL_SYS_TERM(). */
*/
# ifdef DEBUGGING
{
- /* By now all filehandles should have been closed, so any
- * stray (non-STD-)filehandles indicate *possible* (PerlIO)
- * errors. */
+ /* By now all filehandles should have been closed, so any
+ * stray (non-STD-)filehandles indicate *possible* (PerlIO)
+ * errors. */
#define PERLIO_TEARDOWN_MESSAGE_BUF_SIZE 64
#define PERLIO_TEARDOWN_MESSAGE_FD 2
- char buf[PERLIO_TEARDOWN_MESSAGE_BUF_SIZE];
- int i;
- for (i = 3; i < PL_perlio_fd_refcnt_size; i++) {
- if (PL_perlio_fd_refcnt[i]) {
- const STRLEN len =
- my_snprintf(buf, sizeof(buf),
- "PerlIO_teardown: fd %d refcnt=%d\n",
- i, PL_perlio_fd_refcnt[i]);
- PerlLIO_write(PERLIO_TEARDOWN_MESSAGE_FD, buf, len);
- }
- }
+ char buf[PERLIO_TEARDOWN_MESSAGE_BUF_SIZE];
+ int i;
+ for (i = 3; i < PL_perlio_fd_refcnt_size; i++) {
+ if (PL_perlio_fd_refcnt[i]) {
+ const STRLEN len =
+ my_snprintf(buf, sizeof(buf),
+ "PerlIO_teardown: fd %d refcnt=%d\n",
+ i, PL_perlio_fd_refcnt[i]);
+ PerlLIO_write(PERLIO_TEARDOWN_MESSAGE_FD, buf, len);
+ }
+ }
}
# endif
#endif
@@ -2442,9 +2442,9 @@ void PerlIO_teardown(void) /* Call only from PERL_SYS_TERM(). */
* all the interpreters are gone. */
if (PL_perlio_fd_refcnt_size /* Assuming initial size of zero. */
&& PL_perlio_fd_refcnt) {
- free(PL_perlio_fd_refcnt); /* To match realloc() in S_more_refcounted_fds(). */
- PL_perlio_fd_refcnt = NULL;
- PL_perlio_fd_refcnt_size = 0;
+ free(PL_perlio_fd_refcnt); /* To match realloc() in S_more_refcounted_fds(). */
+ PL_perlio_fd_refcnt = NULL;
+ PL_perlio_fd_refcnt_size = 0;
}
}
@@ -2479,19 +2479,19 @@ S_perlio_async_run(pTHX_ PerlIO* f) {
PerlIO_lockcnt(f)++;
PERL_ASYNC_CHECK();
if ( !(PerlIOBase(f)->flags & PERLIO_F_CLEARED) ) {
- LEAVE;
- return 0;
+ LEAVE;
+ return 0;
}
/* we've just run some perl-level code that could have done
* anything, including closing the file or clearing this layer.
* If so, free any lower layers that have already been
* cleared, then return an error. */
while (PerlIOValid(f) &&
- (PerlIOBase(f)->flags & PERLIO_F_CLEARED))
+ (PerlIOBase(f)->flags & PERLIO_F_CLEARED))
{
- const PerlIOl *l = *f;
- *f = l->next;
- Safefree(l);
+ const PerlIOl *l = *f;
+ *f = l->next;
+ Safefree(l);
}
LEAVE;
return 1;
@@ -2502,35 +2502,35 @@ PerlIOUnix_oflags(const char *mode)
{
int oflags = -1;
if (*mode == IoTYPE_IMPLICIT || *mode == IoTYPE_NUMERIC)
- mode++;
+ mode++;
switch (*mode) {
case 'r':
- oflags = O_RDONLY;
- if (*++mode == '+') {
- oflags = O_RDWR;
- mode++;
- }
- break;
+ oflags = O_RDONLY;
+ if (*++mode == '+') {
+ oflags = O_RDWR;
+ mode++;
+ }
+ break;
case 'w':
- oflags = O_CREAT | O_TRUNC;
- if (*++mode == '+') {
- oflags |= O_RDWR;
- mode++;
- }
- else
- oflags |= O_WRONLY;
- break;
+ oflags = O_CREAT | O_TRUNC;
+ if (*++mode == '+') {
+ oflags |= O_RDWR;
+ mode++;
+ }
+ else
+ oflags |= O_WRONLY;
+ break;
case 'a':
- oflags = O_CREAT | O_APPEND;
- if (*++mode == '+') {
- oflags |= O_RDWR;
- mode++;
- }
- else
- oflags |= O_WRONLY;
- break;
+ oflags = O_CREAT | O_APPEND;
+ if (*++mode == '+') {
+ oflags |= O_RDWR;
+ mode++;
+ }
+ else
+ oflags |= O_WRONLY;
+ break;
}
/* XXX TODO: PerlIO_open() test that exercises 'rb' and 'rt'. */
@@ -2542,35 +2542,35 @@ PerlIOUnix_oflags(const char *mode)
case 'b':
#if O_TEXT != O_BINARY
oflags |= O_BINARY;
- oflags &= ~O_TEXT;
+ oflags &= ~O_TEXT;
#endif
mode++;
break;
case 't':
#if O_TEXT != O_BINARY
- oflags |= O_TEXT;
- oflags &= ~O_BINARY;
+ oflags |= O_TEXT;
+ oflags &= ~O_BINARY;
#endif
mode++;
break;
default:
#if O_BINARY != 0
/* bit-or:ing with zero O_BINARY would be useless. */
- /*
- * If neither "t" nor "b" was specified, open the file
- * in O_BINARY mode.
+ /*
+ * If neither "t" nor "b" was specified, open the file
+ * in O_BINARY mode.
*
* Note that if something else than the zero byte was seen
* here (e.g. bogus mode "rx"), just few lines later we will
* set the errno and invalidate the flags.
- */
- oflags |= O_BINARY;
+ */
+ oflags |= O_BINARY;
#endif
break;
}
if (*mode || oflags == -1) {
- SETERRNO(EINVAL, LIB_INVARG);
- oflags = -1;
+ SETERRNO(EINVAL, LIB_INVARG);
+ oflags = -1;
}
return oflags;
}
@@ -2589,13 +2589,13 @@ PerlIOUnix_setfd(pTHX_ PerlIO *f, int fd, int imode)
#if defined(WIN32)
Stat_t st;
if (PerlLIO_fstat(fd, &st) == 0) {
- if (!S_ISREG(st.st_mode)) {
- DEBUG_i( PerlIO_debug("%d is not regular file\n",fd) );
- PerlIOBase(f)->flags |= PERLIO_F_NOTREG;
- }
- else {
- DEBUG_i( PerlIO_debug("%d _is_ a regular file\n",fd) );
- }
+ if (!S_ISREG(st.st_mode)) {
+ DEBUG_i( PerlIO_debug("%d is not regular file\n",fd) );
+ PerlIOBase(f)->flags |= PERLIO_F_NOTREG;
+ }
+ else {
+ DEBUG_i( PerlIO_debug("%d _is_ a regular file\n",fd) );
+ }
}
#endif
s->fd = fd;
@@ -2609,13 +2609,13 @@ PerlIOUnix_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
{
IV code = PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
if (*PerlIONext(f)) {
- /* We never call down so do any pending stuff now */
- PerlIO_flush(PerlIONext(f));
- /*
- * XXX could (or should) we retrieve the oflags from the open file
- * handle rather than believing the "mode" we are passed in? XXX
- * Should the value on NULL mode be 0 or -1?
- */
+ /* We never call down so do any pending stuff now */
+ PerlIO_flush(PerlIONext(f));
+ /*
+ * XXX could (or should) we retrieve the oflags from the open file
+ * handle rather than believing the "mode" we are passed in? XXX
+ * Should the value on NULL mode be 0 or -1?
+ */
PerlIOUnix_setfd(aTHX_ f, PerlIO_fileno(PerlIONext(f)),
mode ? PerlIOUnix_oflags(mode) : -1);
}
@@ -2632,79 +2632,79 @@ PerlIOUnix_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
PERL_UNUSED_CONTEXT;
if (PerlIOBase(f)->flags & PERLIO_F_NOTREG) {
#ifdef ESPIPE
- SETERRNO(ESPIPE, LIB_INVARG);
+ SETERRNO(ESPIPE, LIB_INVARG);
#else
- SETERRNO(EINVAL, LIB_INVARG);
+ SETERRNO(EINVAL, LIB_INVARG);
#endif
- return -1;
+ return -1;
}
new_loc = PerlLIO_lseek(fd, offset, whence);
if (new_loc == (Off_t) - 1)
- return -1;
+ return -1;
PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
return 0;
}
PerlIO *
PerlIOUnix_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
- IV n, const char *mode, int fd, int imode,
- int perm, PerlIO *f, int narg, SV **args)
+ IV n, const char *mode, int fd, int imode,
+ int perm, PerlIO *f, int narg, SV **args)
{
bool known_cloexec = 0;
if (PerlIOValid(f)) {
- if (PerlIOBase(f)->tab && PerlIOBase(f)->flags & PERLIO_F_OPEN)
- (*PerlIOBase(f)->tab->Close)(aTHX_ f);
+ if (PerlIOBase(f)->tab && PerlIOBase(f)->flags & PERLIO_F_OPEN)
+ (*PerlIOBase(f)->tab->Close)(aTHX_ f);
}
if (narg > 0) {
- if (*mode == IoTYPE_NUMERIC)
- mode++;
- else {
- imode = PerlIOUnix_oflags(mode);
+ if (*mode == IoTYPE_NUMERIC)
+ mode++;
+ else {
+ imode = PerlIOUnix_oflags(mode);
#ifdef VMS
- perm = 0777; /* preserve RMS defaults, ACL inheritance, etc. */
+ perm = 0777; /* preserve RMS defaults, ACL inheritance, etc. */
#else
- perm = 0666;
+ perm = 0666;
#endif
- }
- if (imode != -1) {
+ }
+ if (imode != -1) {
STRLEN len;
- const char *path = SvPV_const(*args, len);
- if (!IS_SAFE_PATHNAME(path, len, "open"))
+ const char *path = SvPV_const(*args, len);
+ if (!IS_SAFE_PATHNAME(path, len, "open"))
return NULL;
- fd = PerlLIO_open3_cloexec(path, imode, perm);
- known_cloexec = 1;
- }
+ fd = PerlLIO_open3_cloexec(path, imode, perm);
+ known_cloexec = 1;
+ }
}
if (fd >= 0) {
- if (known_cloexec)
- setfd_inhexec_for_sysfd(fd);
- else
- setfd_cloexec_or_inhexec_by_sysfdness(fd);
- if (*mode == IoTYPE_IMPLICIT)
- mode++;
- if (!f) {
- f = PerlIO_allocate(aTHX);
- }
- if (!PerlIOValid(f)) {
- if (!(f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
- PerlLIO_close(fd);
- return NULL;
- }
- }
+ if (known_cloexec)
+ setfd_inhexec_for_sysfd(fd);
+ else
+ setfd_cloexec_or_inhexec_by_sysfdness(fd);
+ if (*mode == IoTYPE_IMPLICIT)
+ mode++;
+ if (!f) {
+ f = PerlIO_allocate(aTHX);
+ }
+ if (!PerlIOValid(f)) {
+ if (!(f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
+ PerlLIO_close(fd);
+ return NULL;
+ }
+ }
PerlIOUnix_setfd(aTHX_ f, fd, imode);
- PerlIOBase(f)->flags |= PERLIO_F_OPEN;
- if (*mode == IoTYPE_APPEND)
- PerlIOUnix_seek(aTHX_ f, 0, SEEK_END);
- return f;
+ PerlIOBase(f)->flags |= PERLIO_F_OPEN;
+ if (*mode == IoTYPE_APPEND)
+ PerlIOUnix_seek(aTHX_ f, 0, SEEK_END);
+ return f;
}
else {
- if (f) {
- NOOP;
- /*
- * FIXME: pop layers ???
- */
- }
- return NULL;
+ if (f) {
+ NOOP;
+ /*
+ * FIXME: pop layers ???
+ */
+ }
+ return NULL;
}
}
@@ -2714,17 +2714,17 @@ PerlIOUnix_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
const PerlIOUnix * const os = PerlIOSelf(o, PerlIOUnix);
int fd = os->fd;
if (flags & PERLIO_DUP_FD) {
- fd = PerlLIO_dup_cloexec(fd);
- if (fd >= 0)
- setfd_inhexec_for_sysfd(fd);
+ fd = PerlLIO_dup_cloexec(fd);
+ if (fd >= 0)
+ setfd_inhexec_for_sysfd(fd);
}
if (fd >= 0) {
- f = PerlIOBase_dup(aTHX_ f, o, param, flags);
- if (f) {
- /* If all went well overwrite fd in dup'ed lay with the dup()'ed fd */
- PerlIOUnix_setfd(aTHX_ f, fd, os->oflags);
- return f;
- }
+ f = PerlIOBase_dup(aTHX_ f, o, param, flags);
+ if (f) {
+ /* If all went well overwrite fd in dup'ed lay with the dup()'ed fd */
+ PerlIOUnix_setfd(aTHX_ f, fd, os->oflags);
+ return f;
+ }
PerlLIO_close(fd);
}
return NULL;
@@ -2736,30 +2736,30 @@ PerlIOUnix_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
{
int fd;
if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
- return -1;
+ return -1;
fd = PerlIOSelf(f, PerlIOUnix)->fd;
if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD) ||
PerlIOBase(f)->flags & (PERLIO_F_EOF|PERLIO_F_ERROR)) {
- return 0;
+ return 0;
}
while (1) {
- const SSize_t len = PerlLIO_read(fd, vbuf, count);
- if (len >= 0 || errno != EINTR) {
- if (len < 0) {
- if (errno != EAGAIN) {
- PerlIOBase(f)->flags |= PERLIO_F_ERROR;
- PerlIO_save_errno(f);
- }
- }
- else if (len == 0 && count != 0) {
- PerlIOBase(f)->flags |= PERLIO_F_EOF;
- SETERRNO(0,0);
- }
- return len;
- }
- /* EINTR */
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
+ const SSize_t len = PerlLIO_read(fd, vbuf, count);
+ if (len >= 0 || errno != EINTR) {
+ if (len < 0) {
+ if (errno != EAGAIN) {
+ PerlIOBase(f)->flags |= PERLIO_F_ERROR;
+ PerlIO_save_errno(f);
+ }
+ }
+ else if (len == 0 && count != 0) {
+ PerlIOBase(f)->flags |= PERLIO_F_EOF;
+ SETERRNO(0,0);
+ }
+ return len;
+ }
+ /* EINTR */
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
}
NOT_REACHED; /*NOTREACHED*/
}
@@ -2769,22 +2769,22 @@ PerlIOUnix_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
{
int fd;
if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
- return -1;
+ return -1;
fd = PerlIOSelf(f, PerlIOUnix)->fd;
while (1) {
- const SSize_t len = PerlLIO_write(fd, vbuf, count);
- if (len >= 0 || errno != EINTR) {
- if (len < 0) {
- if (errno != EAGAIN) {
- PerlIOBase(f)->flags |= PERLIO_F_ERROR;
- PerlIO_save_errno(f);
- }
- }
- return len;
- }
- /* EINTR */
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
+ const SSize_t len = PerlLIO_write(fd, vbuf, count);
+ if (len >= 0 || errno != EINTR) {
+ if (len < 0) {
+ if (errno != EAGAIN) {
+ PerlIOBase(f)->flags |= PERLIO_F_ERROR;
+ PerlIO_save_errno(f);
+ }
+ }
+ return len;
+ }
+ /* EINTR */
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
}
NOT_REACHED; /*NOTREACHED*/
}
@@ -2805,26 +2805,26 @@ PerlIOUnix_close(pTHX_ PerlIO *f)
int code = 0;
if (PerlIOBase(f)->flags & PERLIO_F_OPEN) {
code = PerlIOBase_close(aTHX_ f);
- if (PerlIOUnix_refcnt_dec(fd) > 0) {
- PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
- return 0;
- }
+ if (PerlIOUnix_refcnt_dec(fd) > 0) {
+ PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
+ return 0;
+ }
}
else {
- SETERRNO(EBADF,SS_IVCHAN);
- return -1;
+ SETERRNO(EBADF,SS_IVCHAN);
+ return -1;
}
while (PerlLIO_close(fd) != 0) {
- if (errno != EINTR) {
- code = -1;
- break;
- }
- /* EINTR */
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
+ if (errno != EINTR) {
+ code = -1;
+ break;
+ }
+ /* EINTR */
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
}
if (code == 0) {
- PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
+ PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
}
return code;
}
@@ -2884,9 +2884,9 @@ PerlIOStdio_fileno(pTHX_ PerlIO *f)
PERL_UNUSED_CONTEXT;
if (PerlIOValid(f)) {
- FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio;
- if (s)
- return PerlSIO_fileno(s);
+ FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio;
+ if (s)
+ return PerlSIO_fileno(s);
}
errno = EBADF;
return -1;
@@ -2897,9 +2897,9 @@ PerlIOStdio_mode(const char *mode, char *tmode)
{
char * const ret = tmode;
if (mode) {
- while (*mode) {
- *tmode++ = *mode++;
- }
+ while (*mode) {
+ *tmode++ = *mode++;
+ }
}
#if defined(PERLIO_USING_CRLF) || defined(__CYGWIN__)
*tmode++ = 'b';
@@ -2913,25 +2913,25 @@ PerlIOStdio_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab
{
PerlIO *n;
if (PerlIOValid(f) && PerlIOValid(n = PerlIONext(f))) {
- PerlIO_funcs * const toptab = PerlIOBase(n)->tab;
+ PerlIO_funcs * const toptab = PerlIOBase(n)->tab;
if (toptab == tab) {
- /* Top is already stdio - pop self (duplicate) and use original */
- PerlIO_pop(aTHX_ f);
- return 0;
- } else {
- const int fd = PerlIO_fileno(n);
- char tmode[8];
- FILE *stdio;
- if (fd >= 0 && (stdio = PerlSIO_fdopen(fd,
- mode = PerlIOStdio_mode(mode, tmode)))) {
- PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
- /* We never call down so do any pending stuff now */
- PerlIO_flush(PerlIONext(f));
+ /* Top is already stdio - pop self (duplicate) and use original */
+ PerlIO_pop(aTHX_ f);
+ return 0;
+ } else {
+ const int fd = PerlIO_fileno(n);
+ char tmode[8];
+ FILE *stdio;
+ if (fd >= 0 && (stdio = PerlSIO_fdopen(fd,
+ mode = PerlIOStdio_mode(mode, tmode)))) {
+ PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
+ /* We never call down so do any pending stuff now */
+ PerlIO_flush(PerlIONext(f));
return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
- }
- else {
- return -1;
- }
+ }
+ else {
+ return -1;
+ }
}
}
return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
@@ -2944,182 +2944,182 @@ PerlIO_importFILE(FILE *stdio, const char *mode)
dTHX;
PerlIO *f = NULL;
#ifdef EBCDIC
- int rc;
- char filename[FILENAME_MAX];
- fldata_t fileinfo;
+ int rc;
+ char filename[FILENAME_MAX];
+ fldata_t fileinfo;
#endif
if (stdio) {
- PerlIOStdio *s;
+ PerlIOStdio *s;
int fd0 = fileno(stdio);
if (fd0 < 0) {
#ifdef EBCDIC
- rc = fldata(stdio,filename,&fileinfo);
- if(rc != 0){
- return NULL;
- }
- if(fileinfo.__dsorgHFS){
+ rc = fldata(stdio,filename,&fileinfo);
+ if(rc != 0){
+ return NULL;
+ }
+ if(fileinfo.__dsorgHFS){
return NULL;
}
- /*This MVS dataset , OK!*/
+ /*This MVS dataset , OK!*/
#else
return NULL;
#endif
}
- if (!mode || !*mode) {
- /* We need to probe to see how we can open the stream
- so start with read/write and then try write and read
- we dup() so that we can fclose without loosing the fd.
-
- Note that the errno value set by a failing fdopen
- varies between stdio implementations.
- */
+ if (!mode || !*mode) {
+ /* We need to probe to see how we can open the stream
+ so start with read/write and then try write and read
+ we dup() so that we can fclose without loosing the fd.
+
+ Note that the errno value set by a failing fdopen
+ varies between stdio implementations.
+ */
const int fd = PerlLIO_dup_cloexec(fd0);
- FILE *f2;
+ FILE *f2;
if (fd < 0) {
return f;
}
- f2 = PerlSIO_fdopen(fd, (mode = "r+"));
- if (!f2) {
- f2 = PerlSIO_fdopen(fd, (mode = "w"));
- }
- if (!f2) {
- f2 = PerlSIO_fdopen(fd, (mode = "r"));
- }
- if (!f2) {
- /* Don't seem to be able to open */
- PerlLIO_close(fd);
- return f;
- }
- fclose(f2);
- }
- if ((f = PerlIO_push(aTHX_(PerlIO_allocate(aTHX)), PERLIO_FUNCS_CAST(&PerlIO_stdio), mode, NULL))) {
- s = PerlIOSelf(f, PerlIOStdio);
- s->stdio = stdio;
- fd0 = fileno(stdio);
- if(fd0 != -1){
- PerlIOUnix_refcnt_inc(fd0);
- setfd_cloexec_or_inhexec_by_sysfdness(fd0);
- }
+ f2 = PerlSIO_fdopen(fd, (mode = "r+"));
+ if (!f2) {
+ f2 = PerlSIO_fdopen(fd, (mode = "w"));
+ }
+ if (!f2) {
+ f2 = PerlSIO_fdopen(fd, (mode = "r"));
+ }
+ if (!f2) {
+ /* Don't seem to be able to open */
+ PerlLIO_close(fd);
+ return f;
+ }
+ fclose(f2);
+ }
+ if ((f = PerlIO_push(aTHX_(PerlIO_allocate(aTHX)), PERLIO_FUNCS_CAST(&PerlIO_stdio), mode, NULL))) {
+ s = PerlIOSelf(f, PerlIOStdio);
+ s->stdio = stdio;
+ fd0 = fileno(stdio);
+ if(fd0 != -1){
+ PerlIOUnix_refcnt_inc(fd0);
+ setfd_cloexec_or_inhexec_by_sysfdness(fd0);
+ }
#ifdef EBCDIC
- else{
- rc = fldata(stdio,filename,&fileinfo);
- if(rc != 0){
- PerlIOUnix_refcnt_inc(fd0);
- }
- if(fileinfo.__dsorgHFS){
- PerlIOUnix_refcnt_inc(fd0);
- }
- /*This MVS dataset , OK!*/
- }
+ else{
+ rc = fldata(stdio,filename,&fileinfo);
+ if(rc != 0){
+ PerlIOUnix_refcnt_inc(fd0);
+ }
+ if(fileinfo.__dsorgHFS){
+ PerlIOUnix_refcnt_inc(fd0);
+ }
+ /*This MVS dataset , OK!*/
+ }
#endif
- }
+ }
}
return f;
}
PerlIO *
PerlIOStdio_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
- IV n, const char *mode, int fd, int imode,
- int perm, PerlIO *f, int narg, SV **args)
+ IV n, const char *mode, int fd, int imode,
+ int perm, PerlIO *f, int narg, SV **args)
{
char tmode[8];
if (PerlIOValid(f)) {
STRLEN len;
- const char * const path = SvPV_const(*args, len);
- PerlIOStdio * const s = PerlIOSelf(f, PerlIOStdio);
- FILE *stdio;
- if (!IS_SAFE_PATHNAME(path, len, "open"))
+ const char * const path = SvPV_const(*args, len);
+ PerlIOStdio * const s = PerlIOSelf(f, PerlIOStdio);
+ FILE *stdio;
+ if (!IS_SAFE_PATHNAME(path, len, "open"))
return NULL;
- PerlIOUnix_refcnt_dec(fileno(s->stdio));
- stdio = PerlSIO_freopen(path, PerlIOStdio_mode(mode, tmode),
+ PerlIOUnix_refcnt_dec(fileno(s->stdio));
+ stdio = PerlSIO_freopen(path, PerlIOStdio_mode(mode, tmode),
s->stdio);
- if (!s->stdio)
- return NULL;
- s->stdio = stdio;
- fd = fileno(stdio);
- PerlIOUnix_refcnt_inc(fd);
- setfd_cloexec_or_inhexec_by_sysfdness(fd);
- return f;
+ if (!s->stdio)
+ return NULL;
+ s->stdio = stdio;
+ fd = fileno(stdio);
+ PerlIOUnix_refcnt_inc(fd);
+ setfd_cloexec_or_inhexec_by_sysfdness(fd);
+ return f;
}
else {
- if (narg > 0) {
+ if (narg > 0) {
STRLEN len;
- const char * const path = SvPV_const(*args, len);
+ const char * const path = SvPV_const(*args, len);
if (!IS_SAFE_PATHNAME(path, len, "open"))
return NULL;
- if (*mode == IoTYPE_NUMERIC) {
- mode++;
- fd = PerlLIO_open3_cloexec(path, imode, perm);
- }
- else {
- FILE *stdio;
- bool appended = FALSE;
+ if (*mode == IoTYPE_NUMERIC) {
+ mode++;
+ fd = PerlLIO_open3_cloexec(path, imode, perm);
+ }
+ else {
+ FILE *stdio;
+ bool appended = FALSE;
#ifdef __CYGWIN__
- /* Cygwin wants its 'b' early. */
- appended = TRUE;
- mode = PerlIOStdio_mode(mode, tmode);
+ /* Cygwin wants its 'b' early. */
+ appended = TRUE;
+ mode = PerlIOStdio_mode(mode, tmode);
#endif
- stdio = PerlSIO_fopen(path, mode);
- if (stdio) {
- if (!f) {
- f = PerlIO_allocate(aTHX);
- }
- if (!appended)
- mode = PerlIOStdio_mode(mode, tmode);
- f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg);
- if (f) {
- PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
- fd = fileno(stdio);
- PerlIOUnix_refcnt_inc(fd);
- setfd_cloexec_or_inhexec_by_sysfdness(fd);
- } else {
- PerlSIO_fclose(stdio);
- }
- return f;
- }
- else {
- return NULL;
- }
- }
- }
- if (fd >= 0) {
- FILE *stdio = NULL;
- int init = 0;
- if (*mode == IoTYPE_IMPLICIT) {
- init = 1;
- mode++;
- }
- if (init) {
- switch (fd) {
- case 0:
- stdio = PerlSIO_stdin;
- break;
- case 1:
- stdio = PerlSIO_stdout;
- break;
- case 2:
- stdio = PerlSIO_stderr;
- break;
- }
- }
- else {
- stdio = PerlSIO_fdopen(fd, mode =
- PerlIOStdio_mode(mode, tmode));
- }
- if (stdio) {
- if (!f) {
- f = PerlIO_allocate(aTHX);
- }
- if ((f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
- PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
- fd = fileno(stdio);
- PerlIOUnix_refcnt_inc(fd);
- setfd_cloexec_or_inhexec_by_sysfdness(fd);
- }
- return f;
- }
+ stdio = PerlSIO_fopen(path, mode);
+ if (stdio) {
+ if (!f) {
+ f = PerlIO_allocate(aTHX);
+ }
+ if (!appended)
+ mode = PerlIOStdio_mode(mode, tmode);
+ f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg);
+ if (f) {
+ PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
+ fd = fileno(stdio);
+ PerlIOUnix_refcnt_inc(fd);
+ setfd_cloexec_or_inhexec_by_sysfdness(fd);
+ } else {
+ PerlSIO_fclose(stdio);
+ }
+ return f;
+ }
+ else {
+ return NULL;
+ }
+ }
+ }
+ if (fd >= 0) {
+ FILE *stdio = NULL;
+ int init = 0;
+ if (*mode == IoTYPE_IMPLICIT) {
+ init = 1;
+ mode++;
+ }
+ if (init) {
+ switch (fd) {
+ case 0:
+ stdio = PerlSIO_stdin;
+ break;
+ case 1:
+ stdio = PerlSIO_stdout;
+ break;
+ case 2:
+ stdio = PerlSIO_stderr;
+ break;
+ }
+ }
+ else {
+ stdio = PerlSIO_fdopen(fd, mode =
+ PerlIOStdio_mode(mode, tmode));
+ }
+ if (stdio) {
+ if (!f) {
+ f = PerlIO_allocate(aTHX);
+ }
+ if ((f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
+ PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
+ fd = fileno(stdio);
+ PerlIOUnix_refcnt_inc(fd);
+ setfd_cloexec_or_inhexec_by_sysfdness(fd);
+ }
+ return f;
+ }
PerlLIO_close(fd);
- }
+ }
}
return NULL;
}
@@ -3131,29 +3131,29 @@ PerlIOStdio_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
happens, but is not how I remember it. NI-S 2001/10/16
*/
if ((f = PerlIOBase_dup(aTHX_ f, o, param, flags))) {
- FILE *stdio = PerlIOSelf(o, PerlIOStdio)->stdio;
- const int fd = fileno(stdio);
- char mode[8];
- if (flags & PERLIO_DUP_FD) {
- const int dfd = PerlLIO_dup_cloexec(fileno(stdio));
- if (dfd >= 0) {
- stdio = PerlSIO_fdopen(dfd, PerlIO_modestr(o,mode));
- goto set_this;
- }
- else {
- NOOP;
- /* FIXME: To avoid messy error recovery if dup fails
- re-use the existing stdio as though flag was not set
- */
- }
- }
- stdio = PerlSIO_fdopen(fd, PerlIO_modestr(o,mode));
+ FILE *stdio = PerlIOSelf(o, PerlIOStdio)->stdio;
+ const int fd = fileno(stdio);
+ char mode[8];
+ if (flags & PERLIO_DUP_FD) {
+ const int dfd = PerlLIO_dup_cloexec(fileno(stdio));
+ if (dfd >= 0) {
+ stdio = PerlSIO_fdopen(dfd, PerlIO_modestr(o,mode));
+ goto set_this;
+ }
+ else {
+ NOOP;
+ /* FIXME: To avoid messy error recovery if dup fails
+ re-use the existing stdio as though flag was not set
+ */
+ }
+ }
+ stdio = PerlSIO_fdopen(fd, PerlIO_modestr(o,mode));
set_this:
- PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
+ PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
if(stdio) {
- int fd = fileno(stdio);
- PerlIOUnix_refcnt_inc(fd);
- setfd_cloexec_or_inhexec_by_sysfdness(fd);
+ int fd = fileno(stdio);
+ PerlIOUnix_refcnt_inc(fd);
+ setfd_cloexec_or_inhexec_by_sysfdness(fd);
}
}
return f;
@@ -3175,7 +3175,7 @@ PerlIOStdio_invalidate_fileno(pTHX_ FILE *f)
return 1;
#elif defined(__GLIBC__)
/* There may be a better way for GLIBC:
- - libio.h defines a flag to not close() on cleanup
+ - libio.h defines a flag to not close() on cleanup
*/
f->_fileno = -1;
return 1;
@@ -3197,14 +3197,14 @@ PerlIOStdio_invalidate_fileno(pTHX_ FILE *f)
#elif defined(__FreeBSD__)
/* There may be a better way on FreeBSD:
- we could insert a dummy func in the _close function entry
- f->_close = (int (*)(void *)) dummy_close;
+ f->_close = (int (*)(void *)) dummy_close;
*/
f->_file = -1;
return 1;
#elif defined(__OpenBSD__)
/* There may be a better way on OpenBSD:
- we could insert a dummy func in the _close function entry
- f->_close = (int (*)(void *)) dummy_close;
+ f->_close = (int (*)(void *)) dummy_close;
*/
f->_file = -1;
return 1;
@@ -3215,7 +3215,7 @@ PerlIOStdio_invalidate_fileno(pTHX_ FILE *f)
#elif defined(__CYGWIN__)
/* There may be a better way on CYGWIN:
- we could insert a dummy func in the _close function entry
- f->_close = (int (*)(void *)) dummy_close;
+ f->_close = (int (*)(void *)) dummy_close;
*/
f->_file = -1;
return 1;
@@ -3239,40 +3239,40 @@ PerlIOStdio_close(pTHX_ PerlIO *f)
{
FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
if (!stdio) {
- errno = EBADF;
- return -1;
+ errno = EBADF;
+ return -1;
}
else {
const int fd = fileno(stdio);
- int invalidate = 0;
- IV result = 0;
- int dupfd = -1;
- dSAVEDERRNO;
+ int invalidate = 0;
+ IV result = 0;
+ int dupfd = -1;
+ dSAVEDERRNO;
#ifdef SOCKS5_VERSION_NAME
- /* Socks lib overrides close() but stdio isn't linked to
- that library (though we are) - so we must call close()
- on sockets on stdio's behalf.
- */
- int optval;
- Sock_size_t optlen = sizeof(int);
- if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *) &optval, &optlen) == 0)
- invalidate = 1;
+ /* Socks lib overrides close() but stdio isn't linked to
+ that library (though we are) - so we must call close()
+ on sockets on stdio's behalf.
+ */
+ int optval;
+ Sock_size_t optlen = sizeof(int);
+ if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *) &optval, &optlen) == 0)
+ invalidate = 1;
#endif
- /* Test for -1, as *BSD stdio (at least) on fclose sets the FILE* such
- that a subsequent fileno() on it returns -1. Don't want to croak()
- from within PerlIOUnix_refcnt_dec() if some buggy caller code is
- trying to close an already closed handle which somehow it still has
- a reference to. (via.xs, I'm looking at you). */
- if (fd != -1 && PerlIOUnix_refcnt_dec(fd) > 0) {
- /* File descriptor still in use */
- invalidate = 1;
- }
- if (invalidate) {
- /* For STD* handles, don't close stdio, since we shared the FILE *, too. */
- if (stdio == stdin) /* Some stdios are buggy fflush-ing inputs */
- return 0;
- if (stdio == stdout || stdio == stderr)
- return PerlIO_flush(f);
+ /* Test for -1, as *BSD stdio (at least) on fclose sets the FILE* such
+ that a subsequent fileno() on it returns -1. Don't want to croak()
+ from within PerlIOUnix_refcnt_dec() if some buggy caller code is
+ trying to close an already closed handle which somehow it still has
+ a reference to. (via.xs, I'm looking at you). */
+ if (fd != -1 && PerlIOUnix_refcnt_dec(fd) > 0) {
+ /* File descriptor still in use */
+ invalidate = 1;
+ }
+ if (invalidate) {
+ /* For STD* handles, don't close stdio, since we shared the FILE *, too. */
+ if (stdio == stdin) /* Some stdios are buggy fflush-ing inputs */
+ return 0;
+ if (stdio == stdout || stdio == stderr)
+ return PerlIO_flush(f);
}
MUTEX_LOCK(&PL_perlio_mutex);
/* Right. We need a mutex here because for a brief while we
@@ -3292,46 +3292,46 @@ PerlIOStdio_close(pTHX_ PerlIO *f)
Except that correctness trumps speed.
Advice from klortho #11912. */
- if (invalidate) {
+ if (invalidate) {
/* Tricky - must fclose(stdio) to free memory but not close(fd)
- Use Sarathy's trick from maint-5.6 to invalidate the
- fileno slot of the FILE *
- */
- result = PerlIO_flush(f);
- SAVE_ERRNO;
- invalidate = PerlIOStdio_invalidate_fileno(aTHX_ stdio);
- if (!invalidate) {
- dupfd = PerlLIO_dup_cloexec(fd);
+ Use Sarathy's trick from maint-5.6 to invalidate the
+ fileno slot of the FILE *
+ */
+ result = PerlIO_flush(f);
+ SAVE_ERRNO;
+ invalidate = PerlIOStdio_invalidate_fileno(aTHX_ stdio);
+ if (!invalidate) {
+ dupfd = PerlLIO_dup_cloexec(fd);
#ifdef USE_ITHREADS
- if (dupfd < 0) {
- /* Oh cXap. This isn't going to go well. Not sure if we can
- recover from here, or if closing this particular FILE *
- is a good idea now. */
- }
+ if (dupfd < 0) {
+ /* Oh cXap. This isn't going to go well. Not sure if we can
+ recover from here, or if closing this particular FILE *
+ is a good idea now. */
+ }
#endif
- }
- } else {
- SAVE_ERRNO; /* This is here only to silence compiler warnings */
- }
+ }
+ } else {
+ SAVE_ERRNO; /* This is here only to silence compiler warnings */
+ }
result = PerlSIO_fclose(stdio);
- /* We treat error from stdio as success if we invalidated
- errno may NOT be expected EBADF
- */
- if (invalidate && result != 0) {
- RESTORE_ERRNO;
- result = 0;
- }
+ /* We treat error from stdio as success if we invalidated
+ errno may NOT be expected EBADF
+ */
+ if (invalidate && result != 0) {
+ RESTORE_ERRNO;
+ result = 0;
+ }
#ifdef SOCKS5_VERSION_NAME
- /* in SOCKS' case, let close() determine return value */
- result = close(fd);
+ /* in SOCKS' case, let close() determine return value */
+ result = close(fd);
#endif
- if (dupfd >= 0) {
- PerlLIO_dup2_cloexec(dupfd, fd);
- setfd_inhexec_for_sysfd(fd);
- PerlLIO_close(dupfd);
- }
+ if (dupfd >= 0) {
+ PerlLIO_dup2_cloexec(dupfd, fd);
+ setfd_inhexec_for_sysfd(fd);
+ PerlLIO_close(dupfd);
+ }
MUTEX_UNLOCK(&PL_perlio_mutex);
- return result;
+ return result;
}
}
@@ -3341,30 +3341,30 @@ PerlIOStdio_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
FILE * s;
SSize_t got = 0;
if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
- return -1;
+ return -1;
s = PerlIOSelf(f, PerlIOStdio)->stdio;
for (;;) {
- if (count == 1) {
- STDCHAR *buf = (STDCHAR *) vbuf;
- /*
- * Perl is expecting PerlIO_getc() to fill the buffer Linux's
- * stdio does not do that for fread()
- */
- const int ch = PerlSIO_fgetc(s);
- if (ch != EOF) {
- *buf = ch;
- got = 1;
- }
- }
- else
- got = PerlSIO_fread(vbuf, 1, count, s);
- if (got == 0 && PerlSIO_ferror(s))
- got = -1;
- if (got >= 0 || errno != EINTR)
- break;
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
- SETERRNO(0,0); /* just in case */
+ if (count == 1) {
+ STDCHAR *buf = (STDCHAR *) vbuf;
+ /*
+ * Perl is expecting PerlIO_getc() to fill the buffer Linux's
+ * stdio does not do that for fread()
+ */
+ const int ch = PerlSIO_fgetc(s);
+ if (ch != EOF) {
+ *buf = ch;
+ got = 1;
+ }
+ }
+ else
+ got = PerlSIO_fread(vbuf, 1, count, s);
+ if (got == 0 && PerlSIO_ferror(s))
+ got = -1;
+ if (got >= 0 || errno != EINTR)
+ break;
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
+ SETERRNO(0,0); /* just in case */
}
#ifdef __sgi
/* Under some circumstances IRIX stdio fgetc() and fread()
@@ -3383,52 +3383,52 @@ PerlIOStdio_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
#ifdef STDIO_BUFFER_WRITABLE
if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) {
- STDCHAR *buf = ((STDCHAR *) vbuf) + count;
- STDCHAR *base = PerlIO_get_base(f);
- SSize_t cnt = PerlIO_get_cnt(f);
- STDCHAR *ptr = PerlIO_get_ptr(f);
- SSize_t avail = ptr - base;
- if (avail > 0) {
- if (avail > count) {
- avail = count;
- }
- ptr -= avail;
- Move(buf-avail,ptr,avail,STDCHAR);
- count -= avail;
- unread += avail;
- PerlIO_set_ptrcnt(f,ptr,cnt+avail);
- if (PerlSIO_feof(s) && unread >= 0)
- PerlSIO_clearerr(s);
- }
+ STDCHAR *buf = ((STDCHAR *) vbuf) + count;
+ STDCHAR *base = PerlIO_get_base(f);
+ SSize_t cnt = PerlIO_get_cnt(f);
+ STDCHAR *ptr = PerlIO_get_ptr(f);
+ SSize_t avail = ptr - base;
+ if (avail > 0) {
+ if (avail > count) {
+ avail = count;
+ }
+ ptr -= avail;
+ Move(buf-avail,ptr,avail,STDCHAR);
+ count -= avail;
+ unread += avail;
+ PerlIO_set_ptrcnt(f,ptr,cnt+avail);
+ if (PerlSIO_feof(s) && unread >= 0)
+ PerlSIO_clearerr(s);
+ }
}
else
#endif
if (PerlIO_has_cntptr(f)) {
- /* We can get pointer to buffer but not its base
- Do ungetc() but check chars are ending up in the
- buffer
- */
- STDCHAR *eptr = (STDCHAR*)PerlSIO_get_ptr(s);
- STDCHAR *buf = ((STDCHAR *) vbuf) + count;
- while (count > 0) {
- const int ch = *--buf & 0xFF;
- if (ungetc(ch,s) != ch) {
- /* ungetc did not work */
- break;
- }
- if ((STDCHAR*)PerlSIO_get_ptr(s) != --eptr || ((*eptr & 0xFF) != ch)) {
- /* Did not change pointer as expected */
- if (fgetc(s) != EOF) /* get char back again */
+ /* We can get pointer to buffer but not its base
+ Do ungetc() but check chars are ending up in the
+ buffer
+ */
+ STDCHAR *eptr = (STDCHAR*)PerlSIO_get_ptr(s);
+ STDCHAR *buf = ((STDCHAR *) vbuf) + count;
+ while (count > 0) {
+ const int ch = *--buf & 0xFF;
+ if (ungetc(ch,s) != ch) {
+ /* ungetc did not work */
+ break;
+ }
+ if ((STDCHAR*)PerlSIO_get_ptr(s) != --eptr || ((*eptr & 0xFF) != ch)) {
+ /* Did not change pointer as expected */
+ if (fgetc(s) != EOF) /* get char back again */
break;
- }
- /* It worked ! */
- count--;
- unread++;
- }
+ }
+ /* It worked ! */
+ count--;
+ unread++;
+ }
}
if (count > 0) {
- unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
+ unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
}
return unread;
}
@@ -3438,15 +3438,15 @@ PerlIOStdio_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
{
SSize_t got;
if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
- return -1;
+ return -1;
for (;;) {
- got = PerlSIO_fwrite(vbuf, 1, count,
- PerlIOSelf(f, PerlIOStdio)->stdio);
- if (got >= 0 || errno != EINTR)
- break;
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
- SETERRNO(0,0); /* just in case */
+ got = PerlSIO_fwrite(vbuf, 1, count,
+ PerlIOSelf(f, PerlIOStdio)->stdio);
+ if (got >= 0 || errno != EINTR)
+ break;
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
+ SETERRNO(0,0); /* just in case */
}
return got;
}
@@ -3476,23 +3476,23 @@ PerlIOStdio_flush(pTHX_ PerlIO *f)
PERL_UNUSED_CONTEXT;
if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) {
- return PerlSIO_fflush(stdio);
+ return PerlSIO_fflush(stdio);
}
else {
- NOOP;
+ NOOP;
#if 0
- /*
- * FIXME: This discards ungetc() and pre-read stuff which is not
- * right if this is just a "sync" from a layer above Suspect right
- * design is to do _this_ but not have layer above flush this
- * layer read-to-read
- */
- /*
- * Not writeable - sync by attempting a seek
- */
- dSAVE_ERRNO;
- if (PerlSIO_fseek(stdio, (Off_t) 0, SEEK_CUR) != 0)
- RESTORE_ERRNO;
+ /*
+ * FIXME: This discards ungetc() and pre-read stuff which is not
+ * right if this is just a "sync" from a layer above Suspect right
+ * design is to do _this_ but not have layer above flush this
+ * layer read-to-read
+ */
+ /*
+ * Not writeable - sync by attempting a seek
+ */
+ dSAVE_ERRNO;
+ if (PerlSIO_fseek(stdio, (Off_t) 0, SEEK_CUR) != 0)
+ RESTORE_ERRNO;
#endif
}
return 0;
@@ -3588,19 +3588,19 @@ PerlIOStdio_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
*
* So let's try silencing the warning at least for gcc. */
GCC_DIAG_IGNORE_STMT(-Wpointer-sign);
- PerlSIO_set_ptr(stdio, ptr); /* LHS STDCHAR* cast non-portable */
+ PerlSIO_set_ptr(stdio, ptr); /* LHS STDCHAR* cast non-portable */
GCC_DIAG_RESTORE_STMT;
# ifdef STDIO_PTR_LVAL_SETS_CNT
- assert(PerlSIO_get_cnt(stdio) == (cnt));
+ assert(PerlSIO_get_cnt(stdio) == (cnt));
# endif
# if (!defined(STDIO_PTR_LVAL_NOCHANGE_CNT))
- /*
- * Setting ptr _does_ change cnt - we are done
- */
- return;
+ /*
+ * Setting ptr _does_ change cnt - we are done
+ */
+ return;
# endif
# else /* STDIO_PTR_LVALUE */
- PerlProc_abort();
+ PerlProc_abort();
# endif /* STDIO_PTR_LVALUE */
}
/*
@@ -3610,8 +3610,8 @@ PerlIOStdio_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
PerlSIO_set_cnt(stdio, cnt);
# elif (defined(STDIO_PTR_LVALUE) && defined(STDIO_PTR_LVAL_SETS_CNT))
PerlSIO_set_ptr(stdio,
- PerlSIO_get_ptr(stdio) + (PerlSIO_get_cnt(stdio) -
- cnt));
+ PerlSIO_get_ptr(stdio) + (PerlSIO_get_cnt(stdio) -
+ cnt));
# else /* STDIO_PTR_LVAL_SETS_CNT */
PerlProc_abort();
# endif /* STDIO_CNT_LVALUE */
@@ -3627,52 +3627,52 @@ PerlIOStdio_fill(pTHX_ PerlIO *f)
int c;
PERL_UNUSED_CONTEXT;
if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
- return -1;
+ return -1;
stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
/*
* fflush()ing read-only streams can cause trouble on some stdio-s
*/
if ((PerlIOBase(f)->flags & PERLIO_F_CANWRITE)) {
- if (PerlSIO_fflush(stdio) != 0)
- return EOF;
+ if (PerlSIO_fflush(stdio) != 0)
+ return EOF;
}
for (;;) {
- c = PerlSIO_fgetc(stdio);
- if (c != EOF)
- break;
- if (! PerlSIO_ferror(stdio) || errno != EINTR)
- return EOF;
- if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
- return -1;
- SETERRNO(0,0);
+ c = PerlSIO_fgetc(stdio);
+ if (c != EOF)
+ break;
+ if (! PerlSIO_ferror(stdio) || errno != EINTR)
+ return EOF;
+ if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
+ return -1;
+ SETERRNO(0,0);
}
#if (defined(STDIO_PTR_LVALUE) && (defined(STDIO_CNT_LVALUE) || defined(STDIO_PTR_LVAL_SETS_CNT)))
# ifdef STDIO_BUFFER_WRITABLE
if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) {
- /* Fake ungetc() to the real buffer in case system's ungetc
- goes elsewhere
- */
- STDCHAR *base = (STDCHAR*)PerlSIO_get_base(stdio);
- SSize_t cnt = PerlSIO_get_cnt(stdio);
- STDCHAR *ptr = (STDCHAR*)PerlSIO_get_ptr(stdio);
- if (ptr == base+1) {
- *--ptr = (STDCHAR) c;
- PerlIOStdio_set_ptrcnt(aTHX_ f,ptr,cnt+1);
- if (PerlSIO_feof(stdio))
- PerlSIO_clearerr(stdio);
- return 0;
- }
+ /* Fake ungetc() to the real buffer in case system's ungetc
+ goes elsewhere
+ */
+ STDCHAR *base = (STDCHAR*)PerlSIO_get_base(stdio);
+ SSize_t cnt = PerlSIO_get_cnt(stdio);
+ STDCHAR *ptr = (STDCHAR*)PerlSIO_get_ptr(stdio);
+ if (ptr == base+1) {
+ *--ptr = (STDCHAR) c;
+ PerlIOStdio_set_ptrcnt(aTHX_ f,ptr,cnt+1);
+ if (PerlSIO_feof(stdio))
+ PerlSIO_clearerr(stdio);
+ return 0;
+ }
}
else
# endif
if (PerlIO_has_cntptr(f)) {
- STDCHAR ch = c;
- if (PerlIOStdio_unread(aTHX_ f,&ch,1) == 1) {
- return 0;
- }
+ STDCHAR ch = c;
+ if (PerlIOStdio_unread(aTHX_ f,&ch,1) == 1) {
+ return 0;
+ }
}
#endif
@@ -3680,7 +3680,7 @@ PerlIOStdio_fill(pTHX_ PerlIO *f)
using ungetc().
*/
if (PerlSIO_ungetc(c, stdio) != c)
- return EOF;
+ return EOF;
return 0;
}
@@ -3741,33 +3741,33 @@ PerlIO_exportFILE(PerlIO * f, const char *mode)
dTHX;
FILE *stdio = NULL;
if (PerlIOValid(f)) {
- char buf[8];
+ char buf[8];
int fd = PerlIO_fileno(f);
if (fd < 0) {
return NULL;
}
- PerlIO_flush(f);
- if (!mode || !*mode) {
- mode = PerlIO_modestr(f, buf);
- }
- stdio = PerlSIO_fdopen(PerlIO_fileno(f), mode);
- if (stdio) {
- PerlIOl *l = *f;
- PerlIO *f2;
- /* De-link any lower layers so new :stdio sticks */
- *f = NULL;
- if ((f2 = PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_stdio), buf, NULL))) {
- PerlIOStdio *s = PerlIOSelf((f = f2), PerlIOStdio);
- s->stdio = stdio;
- PerlIOUnix_refcnt_inc(fileno(stdio));
- /* Link previous lower layers under new one */
- *PerlIONext(f) = l;
- }
- else {
- /* restore layers list */
- *f = l;
- }
- }
+ PerlIO_flush(f);
+ if (!mode || !*mode) {
+ mode = PerlIO_modestr(f, buf);
+ }
+ stdio = PerlSIO_fdopen(PerlIO_fileno(f), mode);
+ if (stdio) {
+ PerlIOl *l = *f;
+ PerlIO *f2;
+ /* De-link any lower layers so new :stdio sticks */
+ *f = NULL;
+ if ((f2 = PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_stdio), buf, NULL))) {
+ PerlIOStdio *s = PerlIOSelf((f = f2), PerlIOStdio);
+ s->stdio = stdio;
+ PerlIOUnix_refcnt_inc(fileno(stdio));
+ /* Link previous lower layers under new one */
+ *PerlIONext(f) = l;
+ }
+ else {
+ /* restore layers list */
+ *f = l;
+ }
+ }
}
return stdio;
}
@@ -3779,11 +3779,11 @@ PerlIO_findFILE(PerlIO *f)
PerlIOl *l = *f;
FILE *stdio;
while (l) {
- if (l->tab == &PerlIO_stdio) {
- PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
- return s->stdio;
- }
- l = *PerlIONext(&l);
+ if (l->tab == &PerlIO_stdio) {
+ PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
+ return s->stdio;
+ }
+ l = *PerlIONext(&l);
}
/* Uses fallback "mode" via PerlIO_modestr() in PerlIO_exportFILE */
/* However, we're not really exporting a FILE * to someone else (who
@@ -3794,9 +3794,9 @@ PerlIO_findFILE(PerlIO *f)
only one way to be consistent. */
stdio = PerlIO_exportFILE(f, NULL);
if (stdio) {
- const int fd = fileno(stdio);
- if (fd >= 0)
- PerlIOUnix_refcnt_dec(fd);
+ const int fd = fileno(stdio);
+ if (fd >= 0)
+ PerlIOUnix_refcnt_dec(fd);
}
return stdio;
}
@@ -3807,20 +3807,20 @@ PerlIO_releaseFILE(PerlIO *p, FILE *f)
{
PerlIOl *l;
while ((l = *p)) {
- if (l->tab == &PerlIO_stdio) {
- PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
- if (s->stdio == f) { /* not in a loop */
- const int fd = fileno(f);
- if (fd >= 0)
- PerlIOUnix_refcnt_dec(fd);
- {
- dTHX;
- PerlIO_pop(aTHX_ p);
- }
- return;
- }
- }
- p = PerlIONext(p);
+ if (l->tab == &PerlIO_stdio) {
+ PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
+ if (s->stdio == f) { /* not in a loop */
+ const int fd = fileno(f);
+ if (fd >= 0)
+ PerlIOUnix_refcnt_dec(fd);
+ {
+ dTHX;
+ PerlIO_pop(aTHX_ p);
+ }
+ return;
+ }
+ }
+ p = PerlIONext(p);
}
return;
}
@@ -3836,91 +3836,91 @@ PerlIOBuf_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
const int fd = PerlIO_fileno(f);
if (fd >= 0 && PerlLIO_isatty(fd)) {
- PerlIOBase(f)->flags |= PERLIO_F_LINEBUF | PERLIO_F_TTY;
+ PerlIOBase(f)->flags |= PERLIO_F_LINEBUF | PERLIO_F_TTY;
}
if (*PerlIONext(f)) {
- const Off_t posn = PerlIO_tell(PerlIONext(f));
- if (posn != (Off_t) - 1) {
- b->posn = posn;
- }
+ const Off_t posn = PerlIO_tell(PerlIONext(f));
+ if (posn != (Off_t) - 1) {
+ b->posn = posn;
+ }
}
return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
}
PerlIO *
PerlIOBuf_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
- IV n, const char *mode, int fd, int imode, int perm,
- PerlIO *f, int narg, SV **args)
+ IV n, const char *mode, int fd, int imode, int perm,
+ PerlIO *f, int narg, SV **args)
{
if (PerlIOValid(f)) {
- PerlIO *next = PerlIONext(f);
- PerlIO_funcs *tab =
- PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIOBase(next)->tab);
- if (tab && tab->Open)
- next =
- (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
- next, narg, args);
- if (!next || (*PerlIOBase(f)->tab->Pushed) (aTHX_ f, mode, PerlIOArg, self) != 0) {
- return NULL;
- }
+ PerlIO *next = PerlIONext(f);
+ PerlIO_funcs *tab =
+ PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIOBase(next)->tab);
+ if (tab && tab->Open)
+ next =
+ (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
+ next, narg, args);
+ if (!next || (*PerlIOBase(f)->tab->Pushed) (aTHX_ f, mode, PerlIOArg, self) != 0) {
+ return NULL;
+ }
}
else {
- PerlIO_funcs *tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_btm());
- int init = 0;
- if (*mode == IoTYPE_IMPLICIT) {
- init = 1;
- /*
- * mode++;
- */
- }
- if (tab && tab->Open)
- f = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
- f, narg, args);
- else
- SETERRNO(EINVAL, LIB_INVARG);
- if (f) {
- if (PerlIO_push(aTHX_ f, self, mode, PerlIOArg) == 0) {
- /*
- * if push fails during open, open fails. close will pop us.
- */
- PerlIO_close (f);
- return NULL;
- } else {
- fd = PerlIO_fileno(f);
- if (init && fd == 2) {
- /*
- * Initial stderr is unbuffered
- */
- PerlIOBase(f)->flags |= PERLIO_F_UNBUF;
- }
+ PerlIO_funcs *tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_btm());
+ int init = 0;
+ if (*mode == IoTYPE_IMPLICIT) {
+ init = 1;
+ /*
+ * mode++;
+ */
+ }
+ if (tab && tab->Open)
+ f = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
+ f, narg, args);
+ else
+ SETERRNO(EINVAL, LIB_INVARG);
+ if (f) {
+ if (PerlIO_push(aTHX_ f, self, mode, PerlIOArg) == 0) {
+ /*
+ * if push fails during open, open fails. close will pop us.
+ */
+ PerlIO_close (f);
+ return NULL;
+ } else {
+ fd = PerlIO_fileno(f);
+ if (init && fd == 2) {
+ /*
+ * Initial stderr is unbuffered
+ */
+ PerlIOBase(f)->flags |= PERLIO_F_UNBUF;
+ }
#ifdef PERLIO_USING_CRLF
# ifdef PERLIO_IS_BINMODE_FD
- if (PERLIO_IS_BINMODE_FD(fd))
- PerlIO_binmode(aTHX_ f, '<'/*not used*/, O_BINARY, NULL);
- else
+ if (PERLIO_IS_BINMODE_FD(fd))
+ PerlIO_binmode(aTHX_ f, '<'/*not used*/, O_BINARY, NULL);
+ else
# endif
- /*
- * do something about failing setmode()? --jhi
- */
- PerlLIO_setmode(fd, O_BINARY);
+ /*
+ * do something about failing setmode()? --jhi
+ */
+ PerlLIO_setmode(fd, O_BINARY);
#endif
#ifdef VMS
- /* Enable line buffering with record-oriented regular files
- * so we don't introduce an extraneous record boundary when
- * the buffer fills up.
- */
- if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) {
- Stat_t st;
- if (PerlLIO_fstat(fd, &st) == 0
- && S_ISREG(st.st_mode)
- && (st.st_fab_rfm == FAB$C_VAR
- || st.st_fab_rfm == FAB$C_VFC)) {
- PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
- }
- }
+ /* Enable line buffering with record-oriented regular files
+ * so we don't introduce an extraneous record boundary when
+ * the buffer fills up.
+ */
+ if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) {
+ Stat_t st;
+ if (PerlLIO_fstat(fd, &st) == 0
+ && S_ISREG(st.st_mode)
+ && (st.st_fab_rfm == FAB$C_VAR
+ || st.st_fab_rfm == FAB$C_VFC)) {
+ PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
+ }
+ }
#endif
- }
- }
+ }
+ }
}
return f;
}
@@ -3940,54 +3940,54 @@ PerlIOBuf_flush(pTHX_ PerlIO *f)
int code = 0;
PerlIO *n = PerlIONext(f);
if (PerlIOBase(f)->flags & PERLIO_F_WRBUF) {
- /*
- * write() the buffer
- */
- const STDCHAR *buf = b->buf;
- const STDCHAR *p = buf;
- while (p < b->ptr) {
- SSize_t count = PerlIO_write(n, p, b->ptr - p);
- if (count > 0) {
- p += count;
- }
- else if (count < 0 || PerlIO_error(n)) {
- PerlIOBase(f)->flags |= PERLIO_F_ERROR;
- PerlIO_save_errno(f);
- code = -1;
- break;
- }
- }
- b->posn += (p - buf);
+ /*
+ * write() the buffer
+ */
+ const STDCHAR *buf = b->buf;
+ const STDCHAR *p = buf;
+ while (p < b->ptr) {
+ SSize_t count = PerlIO_write(n, p, b->ptr - p);
+ if (count > 0) {
+ p += count;
+ }
+ else if (count < 0 || PerlIO_error(n)) {
+ PerlIOBase(f)->flags |= PERLIO_F_ERROR;
+ PerlIO_save_errno(f);
+ code = -1;
+ break;
+ }
+ }
+ b->posn += (p - buf);
}
else if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
- STDCHAR *buf = PerlIO_get_base(f);
- /*
- * Note position change
- */
- b->posn += (b->ptr - buf);
- if (b->ptr < b->end) {
- /* We did not consume all of it - try and seek downstream to
- our logical position
- */
- if (PerlIOValid(n) && PerlIO_seek(n, b->posn, SEEK_SET) == 0) {
- /* Reload n as some layers may pop themselves on seek */
- b->posn = PerlIO_tell(n = PerlIONext(f));
- }
- else {
- /* Seek failed (e.g. pipe or tty). Do NOT clear buffer or pre-read
- data is lost for good - so return saying "ok" having undone
- the position adjust
- */
- b->posn -= (b->ptr - buf);
- return code;
- }
- }
+ STDCHAR *buf = PerlIO_get_base(f);
+ /*
+ * Note position change
+ */
+ b->posn += (b->ptr - buf);
+ if (b->ptr < b->end) {
+ /* We did not consume all of it - try and seek downstream to
+ our logical position
+ */
+ if (PerlIOValid(n) && PerlIO_seek(n, b->posn, SEEK_SET) == 0) {
+ /* Reload n as some layers may pop themselves on seek */
+ b->posn = PerlIO_tell(n = PerlIONext(f));
+ }
+ else {
+ /* Seek failed (e.g. pipe or tty). Do NOT clear buffer or pre-read
+ data is lost for good - so return saying "ok" having undone
+ the position adjust
+ */
+ b->posn -= (b->ptr - buf);
+ return code;
+ }
+ }
}
b->ptr = b->end = b->buf;
PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
/* We check for Valid because of dubious decision to make PerlIO_flush(NULL) flush all */
if (PerlIOValid(n) && PerlIO_flush(n) != 0)
- code = -1;
+ code = -1;
return code;
}
@@ -4006,60 +4006,60 @@ PerlIOBuf_fill(pTHX_ PerlIO *f)
* we would not normally be fill'ing if there was data left in anycase.
*/
if (PerlIO_flush(f) != 0) /* XXXX Check that its seek() succeeded?! */
- return -1;
+ return -1;
if (PerlIOBase(f)->flags & PERLIO_F_TTY)
- PerlIOBase_flush_linebuf(aTHX);
+ PerlIOBase_flush_linebuf(aTHX);
if (!b->buf)
- PerlIO_get_base(f); /* allocate via vtable */
+ PerlIO_get_base(f); /* allocate via vtable */
assert(b->buf); /* The b->buf does get allocated via the vtable system. */
b->ptr = b->end = b->buf;
if (!PerlIOValid(n)) {
- PerlIOBase(f)->flags |= PERLIO_F_EOF;
- return -1;
+ PerlIOBase(f)->flags |= PERLIO_F_EOF;
+ return -1;
}
if (PerlIO_fast_gets(n)) {
- /*
- * Layer below is also buffered. We do _NOT_ want to call its
- * ->Read() because that will loop till it gets what we asked for
- * which may hang on a pipe etc. Instead take anything it has to
- * hand, or ask it to fill _once_.
- */
- avail = PerlIO_get_cnt(n);
- if (avail <= 0) {
- avail = PerlIO_fill(n);
- if (avail == 0)
- avail = PerlIO_get_cnt(n);
- else {
- if (!PerlIO_error(n) && PerlIO_eof(n))
- avail = 0;
- }
- }
- if (avail > 0) {
- STDCHAR *ptr = PerlIO_get_ptr(n);
- const SSize_t cnt = avail;
- if (avail > (SSize_t)b->bufsiz)
- avail = b->bufsiz;
- Copy(ptr, b->buf, avail, STDCHAR);
- PerlIO_set_ptrcnt(n, ptr + avail, cnt - avail);
- }
+ /*
+ * Layer below is also buffered. We do _NOT_ want to call its
+ * ->Read() because that will loop till it gets what we asked for
+ * which may hang on a pipe etc. Instead take anything it has to
+ * hand, or ask it to fill _once_.
+ */
+ avail = PerlIO_get_cnt(n);
+ if (avail <= 0) {
+ avail = PerlIO_fill(n);
+ if (avail == 0)
+ avail = PerlIO_get_cnt(n);
+ else {
+ if (!PerlIO_error(n) && PerlIO_eof(n))
+ avail = 0;
+ }
+ }
+ if (avail > 0) {
+ STDCHAR *ptr = PerlIO_get_ptr(n);
+ const SSize_t cnt = avail;
+ if (avail > (SSize_t)b->bufsiz)
+ avail = b->bufsiz;
+ Copy(ptr, b->buf, avail, STDCHAR);
+ PerlIO_set_ptrcnt(n, ptr + avail, cnt - avail);
+ }
}
else {
- avail = PerlIO_read(n, b->ptr, b->bufsiz);
+ avail = PerlIO_read(n, b->ptr, b->bufsiz);
}
if (avail <= 0) {
- if (avail == 0)
- PerlIOBase(f)->flags |= PERLIO_F_EOF;
- else
- {
- PerlIOBase(f)->flags |= PERLIO_F_ERROR;
- PerlIO_save_errno(f);
- }
- return -1;
+ if (avail == 0)
+ PerlIOBase(f)->flags |= PERLIO_F_EOF;
+ else
+ {
+ PerlIOBase(f)->flags |= PERLIO_F_ERROR;
+ PerlIO_save_errno(f);
+ }
+ return -1;
}
b->end = b->buf + avail;
PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
@@ -4071,9 +4071,9 @@ PerlIOBuf_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
{
if (PerlIOValid(f)) {
const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
- if (!b->ptr)
- PerlIO_get_base(f);
- return PerlIOBase_read(aTHX_ f, vbuf, count);
+ if (!b->ptr)
+ PerlIO_get_base(f);
+ return PerlIOBase_read(aTHX_ f, vbuf, count);
}
return 0;
}
@@ -4086,54 +4086,54 @@ PerlIOBuf_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
SSize_t unread = 0;
SSize_t avail;
if (PerlIOBase(f)->flags & PERLIO_F_WRBUF)
- PerlIO_flush(f);
+ PerlIO_flush(f);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
if (b->buf) {
- if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
- /*
- * Buffer is already a read buffer, we can overwrite any chars
- * which have been read back to buffer start
- */
- avail = (b->ptr - b->buf);
- }
- else {
- /*
- * Buffer is idle, set it up so whole buffer is available for
- * unread
- */
- avail = b->bufsiz;
- b->end = b->buf + avail;
- b->ptr = b->end;
- PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
- /*
- * Buffer extends _back_ from where we are now
- */
- b->posn -= b->bufsiz;
- }
- if ((SSize_t) count >= 0 && avail > (SSize_t) count) {
- /*
- * If we have space for more than count, just move count
- */
- avail = count;
- }
- if (avail > 0) {
- b->ptr -= avail;
- buf -= avail;
- /*
- * In simple stdio-like ungetc() case chars will be already
- * there
- */
- if (buf != b->ptr) {
- Copy(buf, b->ptr, avail, STDCHAR);
- }
- count -= avail;
- unread += avail;
- PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
- }
+ if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
+ /*
+ * Buffer is already a read buffer, we can overwrite any chars
+ * which have been read back to buffer start
+ */
+ avail = (b->ptr - b->buf);
+ }
+ else {
+ /*
+ * Buffer is idle, set it up so whole buffer is available for
+ * unread
+ */
+ avail = b->bufsiz;
+ b->end = b->buf + avail;
+ b->ptr = b->end;
+ PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
+ /*
+ * Buffer extends _back_ from where we are now
+ */
+ b->posn -= b->bufsiz;
+ }
+ if ((SSize_t) count >= 0 && avail > (SSize_t) count) {
+ /*
+ * If we have space for more than count, just move count
+ */
+ avail = count;
+ }
+ if (avail > 0) {
+ b->ptr -= avail;
+ buf -= avail;
+ /*
+ * In simple stdio-like ungetc() case chars will be already
+ * there
+ */
+ if (buf != b->ptr) {
+ Copy(buf, b->ptr, avail, STDCHAR);
+ }
+ count -= avail;
+ unread += avail;
+ PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
+ }
}
if (count > 0) {
- unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
+ unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
}
return unread;
}
@@ -4146,41 +4146,41 @@ PerlIOBuf_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
const STDCHAR *flushptr = buf;
Size_t written = 0;
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE))
- return 0;
+ return 0;
if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
- if (PerlIO_flush(f) != 0) {
- return 0;
- }
+ if (PerlIO_flush(f) != 0) {
+ return 0;
+ }
}
if (PerlIOBase(f)->flags & PERLIO_F_LINEBUF) {
- flushptr = buf + count;
- while (flushptr > buf && *(flushptr - 1) != '\n')
- --flushptr;
+ flushptr = buf + count;
+ while (flushptr > buf && *(flushptr - 1) != '\n')
+ --flushptr;
}
while (count > 0) {
- SSize_t avail = b->bufsiz - (b->ptr - b->buf);
- if ((SSize_t) count >= 0 && (SSize_t) count < avail)
- avail = count;
- if (flushptr > buf && flushptr <= buf + avail)
- avail = flushptr - buf;
- PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
- if (avail) {
- Copy(buf, b->ptr, avail, STDCHAR);
- count -= avail;
- buf += avail;
- written += avail;
- b->ptr += avail;
- if (buf == flushptr)
- PerlIO_flush(f);
- }
- if (b->ptr >= (b->buf + b->bufsiz))
- if (PerlIO_flush(f) == -1)
- return -1;
+ SSize_t avail = b->bufsiz - (b->ptr - b->buf);
+ if ((SSize_t) count >= 0 && (SSize_t) count < avail)
+ avail = count;
+ if (flushptr > buf && flushptr <= buf + avail)
+ avail = flushptr - buf;
+ PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
+ if (avail) {
+ Copy(buf, b->ptr, avail, STDCHAR);
+ count -= avail;
+ buf += avail;
+ written += avail;
+ b->ptr += avail;
+ if (buf == flushptr)
+ PerlIO_flush(f);
+ }
+ if (b->ptr >= (b->buf + b->bufsiz))
+ if (PerlIO_flush(f) == -1)
+ return -1;
}
if (PerlIOBase(f)->flags & PERLIO_F_UNBUF)
- PerlIO_flush(f);
+ PerlIO_flush(f);
return written;
}
@@ -4189,12 +4189,12 @@ PerlIOBuf_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
{
IV code;
if ((code = PerlIO_flush(f)) == 0) {
- PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
- code = PerlIO_seek(PerlIONext(f), offset, whence);
- if (code == 0) {
- PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
- b->posn = PerlIO_tell(PerlIONext(f));
- }
+ PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
+ code = PerlIO_seek(PerlIONext(f), offset, whence);
+ if (code == 0) {
+ PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
+ b->posn = PerlIO_tell(PerlIONext(f));
+ }
}
return code;
}
@@ -4210,21 +4210,21 @@ PerlIOBuf_tell(pTHX_ PerlIO *f)
if ((PerlIOBase(f)->flags & PERLIO_F_APPEND) &&
(PerlIOBase(f)->flags & PERLIO_F_WRBUF)) {
#if 1
- /* As O_APPEND files are normally shared in some sense it is better
- to flush :
- */
- PerlIO_flush(f);
+ /* As O_APPEND files are normally shared in some sense it is better
+ to flush :
+ */
+ PerlIO_flush(f);
#else
/* when file is NOT shared then this is sufficient */
- PerlIO_seek(PerlIONext(f),0, SEEK_END);
+ PerlIO_seek(PerlIONext(f),0, SEEK_END);
#endif
- posn = b->posn = PerlIO_tell(PerlIONext(f));
+ posn = b->posn = PerlIO_tell(PerlIONext(f));
}
if (b->buf) {
- /*
- * If buffer is valid adjust position by amount in buffer
- */
- posn += (b->ptr - b->buf);
+ /*
+ * If buffer is valid adjust position by amount in buffer
+ */
+ posn += (b->ptr - b->buf);
}
return posn;
}
@@ -4235,7 +4235,7 @@ PerlIOBuf_popped(pTHX_ PerlIO *f)
const IV code = PerlIOBase_popped(aTHX_ f);
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
- Safefree(b->buf);
+ Safefree(b->buf);
}
b->ptr = b->end = b->buf = NULL;
PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
@@ -4248,7 +4248,7 @@ PerlIOBuf_close(pTHX_ PerlIO *f)
const IV code = PerlIOBase_close(aTHX_ f);
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
- Safefree(b->buf);
+ Safefree(b->buf);
}
b->ptr = b->end = b->buf = NULL;
PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
@@ -4260,7 +4260,7 @@ PerlIOBuf_get_ptr(pTHX_ PerlIO *f)
{
const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
return b->ptr;
}
@@ -4269,9 +4269,9 @@ PerlIOBuf_get_cnt(pTHX_ PerlIO *f)
{
const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
if (PerlIOBase(f)->flags & PERLIO_F_RDBUF)
- return (b->end - b->ptr);
+ return (b->end - b->ptr);
return 0;
}
@@ -4282,14 +4282,14 @@ PerlIOBuf_get_base(pTHX_ PerlIO *f)
PERL_UNUSED_CONTEXT;
if (!b->buf) {
- if (!b->bufsiz)
- b->bufsiz = PERLIOBUF_DEFAULT_BUFSIZ;
- Newx(b->buf,b->bufsiz, STDCHAR);
- if (!b->buf) {
- b->buf = (STDCHAR *) & b->oneword;
- b->bufsiz = sizeof(b->oneword);
- }
- b->end = b->ptr = b->buf;
+ if (!b->bufsiz)
+ b->bufsiz = PERLIOBUF_DEFAULT_BUFSIZ;
+ Newx(b->buf,b->bufsiz, STDCHAR);
+ if (!b->buf) {
+ b->buf = (STDCHAR *) & b->oneword;
+ b->bufsiz = sizeof(b->oneword);
+ }
+ b->end = b->ptr = b->buf;
}
return b->buf;
}
@@ -4299,7 +4299,7 @@ PerlIOBuf_bufsiz(pTHX_ PerlIO *f)
{
const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
return (b->end - b->buf);
}
@@ -4311,7 +4311,7 @@ PerlIOBuf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
PERL_UNUSED_ARG(cnt);
#endif
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
b->ptr = ptr;
assert(PerlIO_get_cnt(f) == cnt);
assert(b->ptr >= b->buf);
@@ -4398,8 +4398,8 @@ PerlIOPending_flush(pTHX_ PerlIO *f)
{
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
- Safefree(b->buf);
- b->buf = NULL;
+ Safefree(b->buf);
+ b->buf = NULL;
}
PerlIO_pop(aTHX_ f);
return 0;
@@ -4409,10 +4409,10 @@ void
PerlIOPending_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
{
if (cnt <= 0) {
- PerlIO_flush(f);
+ PerlIO_flush(f);
}
else {
- PerlIOBuf_set_ptrcnt(aTHX_ f, ptr, cnt);
+ PerlIOBuf_set_ptrcnt(aTHX_ f, ptr, cnt);
}
}
@@ -4426,8 +4426,8 @@ PerlIOPending_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *t
* etc. get muddled when it changes mid-string when we auto-pop.
*/
l->flags = (l->flags & ~(PERLIO_F_FASTGETS | PERLIO_F_UTF8)) |
- (PerlIOBase(PerlIONext(f))->
- flags & (PERLIO_F_FASTGETS | PERLIO_F_UTF8));
+ (PerlIOBase(PerlIONext(f))->
+ flags & (PERLIO_F_FASTGETS | PERLIO_F_UTF8));
return code;
}
@@ -4437,14 +4437,14 @@ PerlIOPending_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
SSize_t avail = PerlIO_get_cnt(f);
SSize_t got = 0;
if ((SSize_t) count >= 0 && (SSize_t)count < avail)
- avail = count;
+ avail = count;
if (avail > 0)
- got = PerlIOBuf_read(aTHX_ f, vbuf, avail);
+ got = PerlIOBuf_read(aTHX_ f, vbuf, avail);
if (got >= 0 && got < (SSize_t)count) {
- const SSize_t more =
- PerlIO_read(f, ((STDCHAR *) vbuf) + got, count - got);
- if (more >= 0 || got == 0)
- got += more;
+ const SSize_t more =
+ PerlIO_read(f, ((STDCHAR *) vbuf) + got, count - got);
+ if (more >= 0 || got == 0)
+ got += more;
}
return got;
}
@@ -4500,7 +4500,7 @@ PERLIO_FUNCS_DECL(PerlIO_pending) = {
typedef struct {
PerlIOBuf base; /* PerlIOBuf stuff */
STDCHAR *nl; /* Position of crlf we "lied" about in the
- * buffer */
+ * buffer */
} PerlIOCrlf;
/* Inherit the PERLIO_F_UTF8 flag from previous layer.
@@ -4512,9 +4512,9 @@ S_inherit_utf8_flag(PerlIO *f)
{
PerlIO *g = PerlIONext(f);
if (PerlIOValid(g)) {
- if (PerlIOBase(g)->flags & PERLIO_F_UTF8) {
- PerlIOBase(f)->flags |= PERLIO_F_UTF8;
- }
+ if (PerlIOBase(g)->flags & PERLIO_F_UTF8) {
+ PerlIOBase(f)->flags |= PERLIO_F_UTF8;
+ }
}
}
@@ -4527,24 +4527,24 @@ PerlIOCrlf_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
#if 0
DEBUG_i(
PerlIO_debug("PerlIOCrlf_pushed f=%p %s %s fl=%08" UVxf "\n",
- (void*)f, PerlIOBase(f)->tab->name, (mode) ? mode : "(Null)",
- PerlIOBase(f)->flags);
+ (void*)f, PerlIOBase(f)->tab->name, (mode) ? mode : "(Null)",
+ PerlIOBase(f)->flags);
);
#endif
{
/* If the old top layer is a CRLF layer, reactivate it (if
* necessary) and remove this new layer from the stack */
- PerlIO *g = PerlIONext(f);
- if (PerlIOValid(g)) {
- PerlIOl *b = PerlIOBase(g);
- if (b && b->tab == &PerlIO_crlf) {
- if (!(b->flags & PERLIO_F_CRLF))
- b->flags |= PERLIO_F_CRLF;
- S_inherit_utf8_flag(g);
- PerlIO_pop(aTHX_ f);
- return code;
- }
- }
+ PerlIO *g = PerlIONext(f);
+ if (PerlIOValid(g)) {
+ PerlIOl *b = PerlIOBase(g);
+ if (b && b->tab == &PerlIO_crlf) {
+ if (!(b->flags & PERLIO_F_CRLF))
+ b->flags |= PERLIO_F_CRLF;
+ S_inherit_utf8_flag(g);
+ PerlIO_pop(aTHX_ f);
+ return code;
+ }
+ }
}
S_inherit_utf8_flag(f);
return code;
@@ -4556,52 +4556,52 @@ PerlIOCrlf_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
{
PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
if (c->nl) { /* XXXX Shouldn't it be done only if b->ptr > c->nl? */
- *(c->nl) = NATIVE_0xd;
- c->nl = NULL;
+ *(c->nl) = NATIVE_0xd;
+ c->nl = NULL;
}
if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF))
- return PerlIOBuf_unread(aTHX_ f, vbuf, count);
+ return PerlIOBuf_unread(aTHX_ f, vbuf, count);
else {
- const STDCHAR *buf = (const STDCHAR *) vbuf + count;
- PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
- SSize_t unread = 0;
- if (PerlIOBase(f)->flags & PERLIO_F_WRBUF)
- PerlIO_flush(f);
- if (!b->buf)
- PerlIO_get_base(f);
- if (b->buf) {
- if (!(PerlIOBase(f)->flags & PERLIO_F_RDBUF)) {
- b->end = b->ptr = b->buf + b->bufsiz;
- PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
- b->posn -= b->bufsiz;
- }
- while (count > 0 && b->ptr > b->buf) {
- const int ch = *--buf;
- if (ch == '\n') {
- if (b->ptr - 2 >= b->buf) {
- *--(b->ptr) = NATIVE_0xa;
- *--(b->ptr) = NATIVE_0xd;
- unread++;
- count--;
- }
- else {
- /* If b->ptr - 1 == b->buf, we are undoing reading 0xa */
+ const STDCHAR *buf = (const STDCHAR *) vbuf + count;
+ PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
+ SSize_t unread = 0;
+ if (PerlIOBase(f)->flags & PERLIO_F_WRBUF)
+ PerlIO_flush(f);
+ if (!b->buf)
+ PerlIO_get_base(f);
+ if (b->buf) {
+ if (!(PerlIOBase(f)->flags & PERLIO_F_RDBUF)) {
+ b->end = b->ptr = b->buf + b->bufsiz;
+ PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
+ b->posn -= b->bufsiz;
+ }
+ while (count > 0 && b->ptr > b->buf) {
+ const int ch = *--buf;
+ if (ch == '\n') {
+ if (b->ptr - 2 >= b->buf) {
+ *--(b->ptr) = NATIVE_0xa;
+ *--(b->ptr) = NATIVE_0xd;
+ unread++;
+ count--;
+ }
+ else {
+ /* If b->ptr - 1 == b->buf, we are undoing reading 0xa */
*--(b->ptr) = NATIVE_0xa; /* Works even if 0xa ==
'\r' */
- unread++;
- count--;
- }
- }
- else {
- *--(b->ptr) = ch;
- unread++;
- count--;
- }
- }
- }
+ unread++;
+ count--;
+ }
+ }
+ else {
+ *--(b->ptr) = ch;
+ unread++;
+ count--;
+ }
+ }
+ }
if (count > 0)
unread += PerlIOBase_unread(aTHX_ f, (const STDCHAR *) vbuf + unread, count);
- return unread;
+ return unread;
}
}
@@ -4611,69 +4611,69 @@ PerlIOCrlf_get_cnt(pTHX_ PerlIO *f)
{
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
- PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
- if ((PerlIOBase(f)->flags & PERLIO_F_CRLF) && (!c->nl || *c->nl == NATIVE_0xd)) {
- STDCHAR *nl = (c->nl) ? c->nl : b->ptr;
- scan:
- while (nl < b->end && *nl != NATIVE_0xd)
- nl++;
- if (nl < b->end && *nl == NATIVE_0xd) {
- test:
- if (nl + 1 < b->end) {
- if (nl[1] == NATIVE_0xa) {
- *nl = '\n';
- c->nl = nl;
- }
- else {
- /*
- * Not CR,LF but just CR
- */
- nl++;
- goto scan;
- }
- }
- else {
- /*
- * Blast - found CR as last char in buffer
- */
-
- if (b->ptr < nl) {
- /*
- * They may not care, defer work as long as
- * possible
- */
- c->nl = nl;
- return (nl - b->ptr);
- }
- else {
- int code;
- b->ptr++; /* say we have read it as far as
- * flush() is concerned */
- b->buf++; /* Leave space in front of buffer */
- /* Note as we have moved buf up flush's
- posn += ptr-buf
- will naturally make posn point at CR
- */
- b->bufsiz--; /* Buffer is thus smaller */
- code = PerlIO_fill(f); /* Fetch some more */
- b->bufsiz++; /* Restore size for next time */
- b->buf--; /* Point at space */
- b->ptr = nl = b->buf; /* Which is what we hand
- * off */
- *nl = NATIVE_0xd; /* Fill in the CR */
- if (code == 0)
- goto test; /* fill() call worked */
- /*
- * CR at EOF - just fall through
- */
- /* Should we clear EOF though ??? */
- }
- }
- }
- }
- return (((c->nl) ? (c->nl + 1) : b->end) - b->ptr);
+ PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
+ if ((PerlIOBase(f)->flags & PERLIO_F_CRLF) && (!c->nl || *c->nl == NATIVE_0xd)) {
+ STDCHAR *nl = (c->nl) ? c->nl : b->ptr;
+ scan:
+ while (nl < b->end && *nl != NATIVE_0xd)
+ nl++;
+ if (nl < b->end && *nl == NATIVE_0xd) {
+ test:
+ if (nl + 1 < b->end) {
+ if (nl[1] == NATIVE_0xa) {
+ *nl = '\n';
+ c->nl = nl;
+ }
+ else {
+ /*
+ * Not CR,LF but just CR
+ */
+ nl++;
+ goto scan;
+ }
+ }
+ else {
+ /*
+ * Blast - found CR as last char in buffer
+ */
+
+ if (b->ptr < nl) {
+ /*
+ * They may not care, defer work as long as
+ * possible
+ */
+ c->nl = nl;
+ return (nl - b->ptr);
+ }
+ else {
+ int code;
+ b->ptr++; /* say we have read it as far as
+ * flush() is concerned */
+ b->buf++; /* Leave space in front of buffer */
+ /* Note as we have moved buf up flush's
+ posn += ptr-buf
+ will naturally make posn point at CR
+ */
+ b->bufsiz--; /* Buffer is thus smaller */
+ code = PerlIO_fill(f); /* Fetch some more */
+ b->bufsiz++; /* Restore size for next time */
+ b->buf--; /* Point at space */
+ b->ptr = nl = b->buf; /* Which is what we hand
+ * off */
+ *nl = NATIVE_0xd; /* Fill in the CR */
+ if (code == 0)
+ goto test; /* fill() call worked */
+ /*
+ * CR at EOF - just fall through
+ */
+ /* Should we clear EOF though ??? */
+ }
+ }
+ }
+ }
+ return (((c->nl) ? (c->nl + 1) : b->end) - b->ptr);
}
return 0;
}
@@ -4684,50 +4684,50 @@ PerlIOCrlf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
if (!b->buf)
- PerlIO_get_base(f);
+ PerlIO_get_base(f);
if (!ptr) {
- if (c->nl) {
- ptr = c->nl + 1;
- if (ptr == b->end && *c->nl == NATIVE_0xd) {
- /* Deferred CR at end of buffer case - we lied about count */
- ptr--;
- }
- }
- else {
- ptr = b->end;
- }
- ptr -= cnt;
+ if (c->nl) {
+ ptr = c->nl + 1;
+ if (ptr == b->end && *c->nl == NATIVE_0xd) {
+ /* Deferred CR at end of buffer case - we lied about count */
+ ptr--;
+ }
+ }
+ else {
+ ptr = b->end;
+ }
+ ptr -= cnt;
}
else {
- NOOP;
+ NOOP;
#if 0
- /*
- * Test code - delete when it works ...
- */
- IV flags = PerlIOBase(f)->flags;
- STDCHAR *chk = (c->nl) ? (c->nl+1) : b->end;
- if (ptr+cnt == c->nl && c->nl+1 == b->end && *c->nl == NATIVE_0xd) {
- /* Deferred CR at end of buffer case - we lied about count */
- chk--;
- }
- chk -= cnt;
-
- if (ptr != chk ) {
- Perl_croak(aTHX_ "ptr wrong %p != %p fl=%08" UVxf
- " nl=%p e=%p for %d", (void*)ptr, (void*)chk,
- flags, c->nl, b->end, cnt);
- }
+ /*
+ * Test code - delete when it works ...
+ */
+ IV flags = PerlIOBase(f)->flags;
+ STDCHAR *chk = (c->nl) ? (c->nl+1) : b->end;
+ if (ptr+cnt == c->nl && c->nl+1 == b->end && *c->nl == NATIVE_0xd) {
+ /* Deferred CR at end of buffer case - we lied about count */
+ chk--;
+ }
+ chk -= cnt;
+
+ if (ptr != chk ) {
+ Perl_croak(aTHX_ "ptr wrong %p != %p fl=%08" UVxf
+ " nl=%p e=%p for %d", (void*)ptr, (void*)chk,
+ flags, c->nl, b->end, cnt);
+ }
#endif
}
if (c->nl) {
- if (ptr > c->nl) {
- /*
- * They have taken what we lied about
- */
- *(c->nl) = NATIVE_0xd;
- c->nl = NULL;
- ptr++;
- }
+ if (ptr > c->nl) {
+ /*
+ * They have taken what we lied about
+ */
+ *(c->nl) = NATIVE_0xd;
+ c->nl = NULL;
+ ptr++;
+ }
}
b->ptr = ptr;
PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
@@ -4737,49 +4737,49 @@ SSize_t
PerlIOCrlf_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
{
if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF))
- return PerlIOBuf_write(aTHX_ f, vbuf, count);
+ return PerlIOBuf_write(aTHX_ f, vbuf, count);
else {
- PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
- const STDCHAR *buf = (const STDCHAR *) vbuf;
- const STDCHAR * const ebuf = buf + count;
- if (!b->buf)
- PerlIO_get_base(f);
- if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE))
- return 0;
- while (buf < ebuf) {
- const STDCHAR * const eptr = b->buf + b->bufsiz;
- PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
- while (buf < ebuf && b->ptr < eptr) {
- if (*buf == '\n') {
- if ((b->ptr + 2) > eptr) {
- /*
- * Not room for both
- */
- PerlIO_flush(f);
- break;
- }
- else {
- *(b->ptr)++ = NATIVE_0xd; /* CR */
- *(b->ptr)++ = NATIVE_0xa; /* LF */
- buf++;
- if (PerlIOBase(f)->flags & PERLIO_F_LINEBUF) {
- PerlIO_flush(f);
- break;
- }
- }
- }
- else {
- *(b->ptr)++ = *buf++;
- }
- if (b->ptr >= eptr) {
- PerlIO_flush(f);
- break;
- }
- }
- }
- if (PerlIOBase(f)->flags & PERLIO_F_UNBUF)
- PerlIO_flush(f);
- return (buf - (STDCHAR *) vbuf);
+ PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
+ const STDCHAR *buf = (const STDCHAR *) vbuf;
+ const STDCHAR * const ebuf = buf + count;
+ if (!b->buf)
+ PerlIO_get_base(f);
+ if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE))
+ return 0;
+ while (buf < ebuf) {
+ const STDCHAR * const eptr = b->buf + b->bufsiz;
+ PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
+ while (buf < ebuf && b->ptr < eptr) {
+ if (*buf == '\n') {
+ if ((b->ptr + 2) > eptr) {
+ /*
+ * Not room for both
+ */
+ PerlIO_flush(f);
+ break;
+ }
+ else {
+ *(b->ptr)++ = NATIVE_0xd; /* CR */
+ *(b->ptr)++ = NATIVE_0xa; /* LF */
+ buf++;
+ if (PerlIOBase(f)->flags & PERLIO_F_LINEBUF) {
+ PerlIO_flush(f);
+ break;
+ }
+ }
+ }
+ else {
+ *(b->ptr)++ = *buf++;
+ }
+ if (b->ptr >= eptr) {
+ PerlIO_flush(f);
+ break;
+ }
+ }
+ }
+ if (PerlIOBase(f)->flags & PERLIO_F_UNBUF)
+ PerlIO_flush(f);
+ return (buf - (STDCHAR *) vbuf);
}
}
@@ -4788,8 +4788,8 @@ PerlIOCrlf_flush(pTHX_ PerlIO *f)
{
PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
if (c->nl) {
- *(c->nl) = NATIVE_0xd;
- c->nl = NULL;
+ *(c->nl) = NATIVE_0xd;
+ c->nl = NULL;
}
return PerlIOBuf_flush(aTHX_ f);
}
@@ -4798,11 +4798,11 @@ IV
PerlIOCrlf_binmode(pTHX_ PerlIO *f)
{
if ((PerlIOBase(f)->flags & PERLIO_F_CRLF)) {
- /* In text mode - flush any pending stuff and flip it */
- PerlIOBase(f)->flags &= ~PERLIO_F_CRLF;
+ /* In text mode - flush any pending stuff and flip it */
+ PerlIOBase(f)->flags &= ~PERLIO_F_CRLF;
#ifndef PERLIO_USING_CRLF
- /* CRLF is unusual case - if this is just the :crlf layer pop it */
- PerlIO_pop(aTHX_ f);
+ /* CRLF is unusual case - if this is just the :crlf layer pop it */
+ PerlIO_pop(aTHX_ f);
#endif
}
return PerlIOBase_binmode(aTHX_ f);
@@ -4843,7 +4843,7 @@ PerlIO *
Perl_PerlIO_stdin(pTHX)
{
if (!PL_perlio) {
- PerlIO_stdstreams(aTHX);
+ PerlIO_stdstreams(aTHX);
}
return (PerlIO*)&PL_perlio[1];
}
@@ -4852,7 +4852,7 @@ PerlIO *
Perl_PerlIO_stdout(pTHX)
{
if (!PL_perlio) {
- PerlIO_stdstreams(aTHX);
+ PerlIO_stdstreams(aTHX);
}
return (PerlIO*)&PL_perlio[2];
}
@@ -4861,7 +4861,7 @@ PerlIO *
Perl_PerlIO_stderr(pTHX)
{
if (!PL_perlio) {
- PerlIO_stdstreams(aTHX);
+ PerlIO_stdstreams(aTHX);
}
return (PerlIO*)&PL_perlio[3];
}
@@ -4877,12 +4877,12 @@ PerlIO_getname(PerlIO *f, char *buf)
bool exported = FALSE;
FILE *stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
if (!stdio) {
- stdio = PerlIO_exportFILE(f,0);
- exported = TRUE;
+ stdio = PerlIO_exportFILE(f,0);
+ exported = TRUE;
}
if (stdio) {
- name = fgetname(stdio, buf);
- if (exported) PerlIO_releaseFILE(f,stdio);
+ name = fgetname(stdio, buf);
+ if (exported) PerlIO_releaseFILE(f,stdio);
}
return name;
#else
@@ -4933,7 +4933,7 @@ PerlIO_getc(PerlIO *f)
dTHX;
STDCHAR buf[1];
if ( 1 == PerlIO_read(f, buf, 1) ) {
- return (unsigned char) buf[0];
+ return (unsigned char) buf[0];
}
return EOF;
}
@@ -4944,9 +4944,9 @@ PerlIO_ungetc(PerlIO *f, int ch)
{
dTHX;
if (ch != EOF) {
- STDCHAR buf = ch;
- if (PerlIO_unread(f, &buf, 1) == 1)
- return ch;
+ STDCHAR buf = ch;
+ if (PerlIO_unread(f, &buf, 1) == 1)
+ return ch;
}
return EOF;
}
@@ -5045,7 +5045,7 @@ PerlIO_tmpfile_flags(int imode)
#ifdef WIN32
const int fd = win32_tmpfd_mode(imode);
if (fd >= 0)
- f = PerlIO_fdopen(fd, "w+b");
+ f = PerlIO_fdopen(fd, "w+b");
#elif ! defined(OS2)
int fd = -1;
char tempname[] = "/tmp/PerlIO_XXXXXX";
@@ -5054,16 +5054,16 @@ PerlIO_tmpfile_flags(int imode)
int old_umask = umask(0177);
imode &= ~MKOSTEMP_MODE_MASK;
if (tmpdir && *tmpdir) {
- /* if TMPDIR is set and not empty, we try that first */
- sv = newSVpv(tmpdir, 0);
- sv_catpv(sv, tempname + 4);
- fd = Perl_my_mkostemp_cloexec(SvPVX(sv), imode | O_VMS_DELETEONCLOSE);
+ /* if TMPDIR is set and not empty, we try that first */
+ sv = newSVpv(tmpdir, 0);
+ sv_catpv(sv, tempname + 4);
+ fd = Perl_my_mkostemp_cloexec(SvPVX(sv), imode | O_VMS_DELETEONCLOSE);
}
if (fd < 0) {
- SvREFCNT_dec(sv);
- sv = NULL;
- /* else we try /tmp */
- fd = Perl_my_mkostemp_cloexec(tempname, imode | O_VMS_DELETEONCLOSE);
+ SvREFCNT_dec(sv);
+ sv = NULL;
+ /* else we try /tmp */
+ fd = Perl_my_mkostemp_cloexec(tempname, imode | O_VMS_DELETEONCLOSE);
}
if (fd < 0) {
/* Try cwd */
@@ -5078,10 +5078,10 @@ PerlIO_tmpfile_flags(int imode)
int writing = 1;
(void)PerlIO_intmode2str(imode | MKOSTEMP_MODES, mode, &writing);
f = PerlIO_fdopen(fd, mode);
- if (f)
- PerlIOBase(f)->flags |= PERLIO_F_TEMP;
+ if (f)
+ PerlIOBase(f)->flags |= PERLIO_F_TEMP;
# ifndef VMS
- PerlLIO_unlink(sv ? SvPVX_const(sv) : tempname);
+ PerlLIO_unlink(sv ? SvPVX_const(sv) : tempname);
# endif
}
SvREFCNT_dec(sv);
@@ -5089,7 +5089,7 @@ PerlIO_tmpfile_flags(int imode)
FILE * const stdio = PerlSIO_tmpfile();
if (stdio)
- f = PerlIO_fdopen(fileno(stdio), "w+");
+ f = PerlIO_fdopen(fileno(stdio), "w+");
#endif /* else WIN32 */
return f;
@@ -5100,7 +5100,7 @@ Perl_PerlIO_save_errno(pTHX_ PerlIO *f)
{
PERL_UNUSED_CONTEXT;
if (!PerlIOValid(f))
- return;
+ return;
PerlIOBase(f)->err = errno;
#ifdef VMS
PerlIOBase(f)->os_err = vaxc$errno;
@@ -5116,7 +5116,7 @@ Perl_PerlIO_restore_errno(pTHX_ PerlIO *f)
{
PERL_UNUSED_CONTEXT;
if (!PerlIOValid(f))
- return;
+ return;
SETERRNO(PerlIOBase(f)->err, PerlIOBase(f)->os_err);
#ifdef OS2
Perl_rc = PerlIOBase(f)->os_err);
@@ -5144,17 +5144,17 @@ Perl_PerlIO_context_layers(pTHX_ const char *mode)
*/
if (!PL_curcop)
- return NULL;
+ return NULL;
if (mode && mode[0] != 'r') {
- if (PL_curcop->cop_hints & HINT_LEXICAL_IO_OUT)
- direction = "open>";
+ if (PL_curcop->cop_hints & HINT_LEXICAL_IO_OUT)
+ direction = "open>";
} else {
- if (PL_curcop->cop_hints & HINT_LEXICAL_IO_IN)
- direction = "open<";
+ if (PL_curcop->cop_hints & HINT_LEXICAL_IO_IN)
+ direction = "open<";
}
if (!direction)
- return NULL;
+ return NULL;
layers = cop_hints_fetch_pvn(PL_curcop, direction, 5, 0, 0);
@@ -5169,13 +5169,13 @@ int
PerlIO_setpos(PerlIO *f, SV *pos)
{
if (SvOK(pos)) {
- if (f) {
- dTHX;
- STRLEN len;
- const Off_t * const posn = (Off_t *) SvPV(pos, len);
- if(len == sizeof(Off_t))
- return PerlIO_seek(f, *posn, SEEK_SET);
- }
+ if (f) {
+ dTHX;
+ STRLEN len;
+ const Off_t * const posn = (Off_t *) SvPV(pos, len);
+ if(len == sizeof(Off_t))
+ return PerlIO_seek(f, *posn, SEEK_SET);
+ }
}
SETERRNO(EINVAL, SS_IVCHAN);
return -1;
@@ -5186,17 +5186,17 @@ int
PerlIO_setpos(PerlIO *f, SV *pos)
{
if (SvOK(pos)) {
- if (f) {
- dTHX;
- STRLEN len;
- Fpos_t * const fpos = (Fpos_t *) SvPV(pos, len);
- if(len == sizeof(Fpos_t))
+ if (f) {
+ dTHX;
+ STRLEN len;
+ Fpos_t * const fpos = (Fpos_t *) SvPV(pos, len);
+ if(len == sizeof(Fpos_t))
# if defined(USE_64_BIT_STDIO) && defined(USE_FSETPOS64)
- return fsetpos64(f, fpos);
+ return fsetpos64(f, fpos);
# else
- return fsetpos(f, fpos);
+ return fsetpos(f, fpos);
# endif
- }
+ }
}
SETERRNO(EINVAL, SS_IVCHAN);
return -1;