cvsuser     03/10/10 06:19:03

  Modified:    include/parrot io.h
               io       io.c io_buf.c io_passdown.c io_private.h io_stdio.c
                        io_unix.c io_win32.c
               t/pmc    io.t
  Log:
  Remove the PutS and GetS PIO_Layer functions
  
  The PutS and GetS Layer functions use char* strings and don't have any
  advantage over plain Write and Read. The externally visible function PIO_puts
  is not affected.
  
  Revision  Changes    Path
  1.44      +1 -5      parrot/include/parrot/io.h
  
  Index: io.h
  ===================================================================
  RCS file: /cvs/public/parrot/include/parrot/io.h,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -w -r1.43 -r1.44
  --- io.h      10 Oct 2003 07:17:56 -0000      1.43
  +++ io.h      10 Oct 2003 13:18:39 -0000      1.44
  @@ -1,7 +1,7 @@
   /* io.h
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *     $Id: io.h,v 1.43 2003/10/10 07:17:56 leo Exp $
  + *     $Id: io.h,v 1.44 2003/10/10 13:18:39 boemmels Exp $
    *  Overview:
    *      Parrot IO subsystem
    *  Data Structure and Algorithms:
  @@ -201,10 +201,6 @@
                                     ParrotIO * io);
       INTVAL          (*GetCount)(theINTERP, ParrotIOLayer * layer);
       INTVAL          (*Fill)(theINTERP, ParrotIOLayer * layer);
  -    INTVAL          (*PutS)(theINTERP, ParrotIOLayer * l,
  -                            ParrotIO * io, const char * s);
  -    INTVAL          (*GetS)(theINTERP, ParrotIOLayer * layer,
  -                            ParrotIO * io, char * s, INTVAL maxlen);
       INTVAL          (*Eof)(theINTERP, ParrotIOLayer * l,
                              ParrotIO * io);
   };
  
  
  
  1.60      +2 -8      parrot/io/io.c
  
  Index: io.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io.c,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -w -r1.59 -r1.60
  --- io.c      10 Oct 2003 07:18:10 -0000      1.59
  +++ io.c      10 Oct 2003 13:18:55 -0000      1.60
  @@ -1,7 +1,7 @@
   /* io.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io.c,v 1.59 2003/10/10 07:18:10 leo Exp $
  + *      $Id: io.c,v 1.60 2003/10/10 13:18:55 boemmels Exp $
    *  Overview:
    *      This is the Parrot IO subsystem API.  Generic IO stuff
    *      goes here, each specific layer goes in its own file...
  @@ -686,13 +686,7 @@
   INTVAL
   PIO_puts(theINTERP, PMC *pmc, const char *s)
   {
  -    ParrotIOLayer *l = pmc->cache.struct_val;
  -    ParrotIO *io = PMC_data(pmc);
  -
  -    if (io->flags & PIO_F_WRITE)
  -        return PIO_puts_down(interpreter, l, io, s);
  -    else
  -        return -1;
  +    return PIO_write(interpreter, pmc, s, strlen(s));
   }
   
   INTVAL
  
  
  
  1.16      +1 -16     parrot/io/io_buf.c
  
  Index: io_buf.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_buf.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -w -r1.15 -r1.16
  --- io_buf.c  10 Oct 2003 02:43:10 -0000      1.15
  +++ io_buf.c  10 Oct 2003 13:18:56 -0000      1.16
  @@ -1,7 +1,7 @@
   /* io_buf.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io_buf.c,v 1.15 2003/10/10 02:43:10 mrjoltcola Exp $
  + *      $Id: io_buf.c,v 1.16 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      The "buf" layer of Parrot IO. Buffering and all the fun stuff.
    *
  @@ -444,19 +444,6 @@
   
   
   static INTVAL
  -PIO_buf_puts(theINTERP, ParrotIOLayer *layer, ParrotIO *io, const char *s)
  -{
  -    ParrotIOLayer *l = layer;
  -    while ((l = PIO_DOWNLAYER(l)) != NULL) {
  -        if (l->api->PutS) {
  -            return (*l->api->PutS) (interpreter, l, io, s);
  -        }
  -    }
  -    return 0;
  -}
  -
  -
  -static INTVAL
   PIO_buf_seek(theINTERP, ParrotIOLayer *l, ParrotIO *io,
                  INTVAL hi, INTVAL lo, INTVAL whence)
   {
  @@ -513,8 +500,6 @@
       PIO_buf_setlinebuf,
       PIO_null_getcount,
       PIO_null_fill,
  -    PIO_buf_puts,
  -    PIO_null_gets,
       PIO_null_eof
   };
   
  
  
  
  1.2       +1 -30     parrot/io/io_passdown.c
  
  Index: io_passdown.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_passdown.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- io_passdown.c     2 Sep 2003 16:41:14 -0000       1.1
  +++ io_passdown.c     10 Oct 2003 13:18:56 -0000      1.2
  @@ -1,7 +1,7 @@
   /* io_passdown.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io_passdown.c,v 1.1 2003/09/02 16:41:14 boemmels Exp $
  + *      $Id: io_passdown.c,v 1.2 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      This is a set of helper functions which search the next implementation
    *      of a function in the layer-stack and call it with the appropriate
  @@ -207,35 +207,6 @@
       while (layer) {
           if (layer->api->SetLineBuf) {
               return layer->api->SetLineBuf(interpreter, layer, io);
  -        }
  -        layer = PIO_DOWNLAYER(layer);
  -    }
  -    /* No layer found */
  -    return -1;
  -}
  -
  -
  -INTVAL
  -PIO_puts_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io, const char * s)
  -{
  -    while (layer) {
  -        if (layer->api->PutS) {
  -            return layer->api->PutS(interpreter, layer, io, s);
  -        }
  -        layer = PIO_DOWNLAYER(layer);
  -    }
  -    /* No layer found */
  -    return -1;
  -}
  -
  -
  -INTVAL
  -PIO_gets_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io,
  -              char * s, INTVAL maxlen)
  -{
  -    while (layer) {
  -        if (layer->api->GetS) {
  -            return layer->api->GetS(interpreter, layer, io, s, maxlen);
           }
           layer = PIO_DOWNLAYER(layer);
       }
  
  
  
  1.4       +1 -5      parrot/io/io_private.h
  
  Index: io_private.h
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_private.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -w -r1.3 -r1.4
  --- io_private.h      10 Oct 2003 01:38:23 -0000      1.3
  +++ io_private.h      10 Oct 2003 13:18:56 -0000      1.4
  @@ -1,7 +1,7 @@
   /* io_private.h
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *     $Id: io_private.h,v 1.3 2003/10/10 01:38:23 mrjoltcola Exp $
  + *     $Id: io_private.h,v 1.4 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      Internal Details of the Parrot IO subsystem
    *  Data Structure and Algorithms:
  @@ -112,10 +112,6 @@
   INTVAL    PIO_setbuf_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io,
                             size_t bufsize);
   INTVAL    PIO_setlinebuf_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io);
  -INTVAL    PIO_puts_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io,
  -                        const char * s);
  -INTVAL    PIO_gets_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io,
  -                        char * s, INTVAL maxlen);
   INTVAL    PIO_eof_down(theINTERP, ParrotIOLayer * layer, ParrotIO * io);
   
   
  
  
  
  1.31      +1 -10     parrot/io/io_stdio.c
  
  Index: io_stdio.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_stdio.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -w -r1.30 -r1.31
  --- io_stdio.c        17 Sep 2003 17:34:08 -0000      1.30
  +++ io_stdio.c        10 Oct 2003 13:18:56 -0000      1.31
  @@ -1,7 +1,7 @@
   /* io_stdio.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io_stdio.c,v 1.30 2003/09/17 17:34:08 boemmels Exp $
  + *      $Id: io_stdio.c,v 1.31 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      This is the Parrot IO STDIO layer. This may provide a subset of
    *      full functionality, but must compile on any system with the
  @@ -234,13 +234,6 @@
   }
   
   
  -static INTVAL
  -PIO_stdio_puts(theINTERP, ParrotIOLayer *l, ParrotIO *io, const char *s)
  -{
  -    return(fputs(s, io->fd));
  -}
  -
  -
   /*
    * Hard seek
    */
  @@ -293,8 +286,6 @@
       PIO_null_setlinebuf,
       PIO_null_getcount,
       PIO_null_fill,
  -    PIO_stdio_puts,
  -    PIO_null_gets,
       PIO_null_eof
   };
   
  
  
  
  1.34      +1 -23     parrot/io/io_unix.c
  
  Index: io_unix.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_unix.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -w -r1.33 -r1.34
  --- io_unix.c 17 Sep 2003 17:34:08 -0000      1.33
  +++ io_unix.c 10 Oct 2003 13:18:56 -0000      1.34
  @@ -1,7 +1,7 @@
   /* io_unix.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io_unix.c,v 1.33 2003/09/17 17:34:08 boemmels Exp $
  + *      $Id: io_unix.c,v 1.34 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      This is the Parrot IO UNIX layer. May be changed to
    *      include other platforms if that platform is similar
  @@ -364,26 +364,6 @@
   }
   
   
  -static INTVAL
  -PIO_unix_puts(theINTERP, ParrotIOLayer *l, ParrotIO *io, const char *s)
  -{
  -    size_t len;
  -    len = strlen(s);
  -    if (len > 0) {
  -        size_t sz;
  -        sz = PIO_unix_write(interpreter, l, io, s, len);
  -        if (sz < len) {
  -            return -1;
  -        }
  -        else {
  -            return len;
  -        }
  -    }
  -
  -    return -1;
  -}
  -
  -
   /*
    * Hard seek
    */
  @@ -435,8 +415,6 @@
       PIO_null_setlinebuf,
       PIO_null_getcount,
       PIO_null_fill,
  -    PIO_unix_puts,
  -    PIO_null_gets,
       PIO_null_eof
   };
   
  
  
  
  1.34      +1 -3      parrot/io/io_win32.c
  
  Index: io_win32.c
  ===================================================================
  RCS file: /cvs/public/parrot/io/io_win32.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -w -r1.33 -r1.34
  --- io_win32.c        17 Sep 2003 17:34:08 -0000      1.33
  +++ io_win32.c        10 Oct 2003 13:18:56 -0000      1.34
  @@ -1,7 +1,7 @@
   /* io_win32.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *      $Id: io_win32.c,v 1.33 2003/09/17 17:34:08 boemmels Exp $
  + *      $Id: io_win32.c,v 1.34 2003/10/10 13:18:56 boemmels Exp $
    *  Overview:
    *      This is the Parrot IO OS layer for Win32 platforms.
    *  Data Structure and Algorithms:
  @@ -364,8 +364,6 @@
       PIO_null_setlinebuf,
       PIO_null_getcount,
       PIO_null_fill,
  -    PIO_win32_puts,
  -    PIO_null_gets,
       PIO_null_eof
   };
   
  
  
  
  1.20      +4 -0      parrot/t/pmc/io.t
  
  Index: io.t
  ===================================================================
  RCS file: /cvs/public/parrot/t/pmc/io.t,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -w -r1.19 -r1.20
  --- io.t      10 Oct 2003 09:13:55 -0000      1.19
  +++ io.t      10 Oct 2003 13:19:03 -0000      1.20
  @@ -344,6 +344,9 @@
   ok 2
   OUTPUT
   
  +SKIP:{
  +  skip 'seek errors in io_buf', 1;
  +
   output_is(<<'CODE', <<'OUTPUT', 'seek/tell');
          open P0, "temp.file", ">"
          print P0, "Hello "
  @@ -361,5 +364,6 @@
   ok 1
   Hello Parrot!
   OUTPUT
  +}
   
   unlink "temp.file";
  
  
  

Reply via email to