Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) A guide to the Perl source treeIntroduction to the Perl API (Berikutnya)
Internals and C language interface

Internal replacements for standard C library functions

Daftar Isi

NAME

perlclib - Internal replacements for standard C library functions

DESCRIPTION

One thing Perl porters should note is that perl doesn't tend to use thatmuch of the C standard library internally; you'll see very little use of, for example, the ctype.h functions in there. This is because Perltends to reimplement or abstract standard library functions, so that weknow exactly how they're going to operate.

This is a reference card for people who are familiar with the C libraryand who want to do things the Perl way; to tell them which functionsthey ought to use instead of the more normal C functions.

Conventions

In the following tables:

  • t

    is a type.

  • p

    is a pointer.

  • n

    is a number.

  • s

    is a string.

sv, av, hv, etc. represent variables of their respective types.

File Operations

Instead of the stdio.h functions, you should use the Perl abstractionlayer. Instead of FILE* types, you need to be handling PerlIO*types. Don't forget that with the new PerlIO layered I/O abstraction FILE* types may not even be available. See also the perlapiodocumentation for more information about the following functions:

  1. Instead Of: Use:
  2. stdin PerlIO_stdin()
  3. stdout PerlIO_stdout()
  4. stderr PerlIO_stderr()
  5. fopen(fn, mode) PerlIO_open(fn, mode)
  6. freopen(fn, mode, stream) PerlIO_reopen(fn, mode, perlio) (Deprecated)
  7. fflush(stream) PerlIO_flush(perlio)
  8. fclose(stream) PerlIO_close(perlio)

File Input and Output

  1. Instead Of: Use:
  2. fprintf(stream, fmt, ...) PerlIO_printf(perlio, fmt, ...)
  3. [f]getc(stream) PerlIO_getc(perlio)
  4. [f]putc(stream, n) PerlIO_putc(perlio, n)
  5. ungetc(n, stream) PerlIO_ungetc(perlio, n)

Note that the PerlIO equivalents of fread and fwrite are slightlydifferent from their C library counterparts:

  1. fread(p, size, n, stream) PerlIO_read(perlio, buf, numbytes)
  2. fwrite(p, size, n, stream) PerlIO_write(perlio, buf, numbytes)
  3. fputs(s, stream) PerlIO_puts(perlio, s)

There is no equivalent to fgets; one should use sv_gets instead:

  1. fgets(s, n, stream) sv_gets(sv, perlio, append)

File Positioning

  1. Instead Of: Use:
  2. feof(stream) PerlIO_eof(perlio)
  3. fseek(stream, n, whence) PerlIO_seek(perlio, n, whence)
  4. rewind(stream) PerlIO_rewind(perlio)
  5. fgetpos(stream, p) PerlIO_getpos(perlio, sv)
  6. fsetpos(stream, p) PerlIO_setpos(perlio, sv)
  7. ferror(stream) PerlIO_error(perlio)
  8. clearerr(stream) PerlIO_clearerr(perlio)

Memory Management and String Handling

  1. Instead Of: Use:
  2. t* p = malloc(n) Newx(id, p, n, t)
  3. t* p = calloc(n, s) Newxz(id, p, n, t)
  4. p = realloc(p, n) Renew(p, n, t)
  5. memcpy(dst, src, n) Copy(src, dst, n, t)
  6. memmove(dst, src, n) Move(src, dst, n, t)
  7. memcpy(dst, src, sizeof(t))StructCopy(src, dst, t)
  8. memset(dst, 0, n * sizeof(t))Zero(dst, n, t)
  9. memzero(dst, 0)Zero(dst, n, char)
  10. free(p) Safefree(p)
  11. strdup(p) savepv(p)
  12. strndup(p, n) savepvn(p, n) (Hey, strndup doesn't exist!)
  13. strstr(big, little) instr(big, little)
  14. strcmp(s1, s2) strLE(s1, s2) / strEQ(s1, s2) / strGT(s1,s2)
  15. strncmp(s1, s2, n) strnNE(s1, s2, n) / strnEQ(s1, s2, n)

Notice the different order of arguments to Copy and Move than usedin memcpy and memmove.

Most of the time, though, you'll want to be dealing with SVs internallyinstead of raw char * strings:

  1. strlen(s) sv_len(sv)
  2. strcpy(dt, src) sv_setpv(sv, s)
  3. strncpy(dt, src, n) sv_setpvn(sv, s, n)
  4. strcat(dt, src) sv_catpv(sv, s)
  5. strncat(dt, src) sv_catpvn(sv, s)
  6. sprintf(s, fmt, ...) sv_setpvf(sv, fmt, ...)

Note also the existence of sv_catpvf and sv_vcatpvfn, combiningconcatenation with formatting.

Sometimes instead of zeroing the allocated heap by using Newxz() youshould consider "poisoning" the data. This means writing a bitpattern into it that should be illegal as pointers (and floating pointnumbers), and also hopefully surprising enough as integers, so thatany code attempting to use the data without forethought will breaksooner rather than later. Poisoning can be done using the Poison()macros, which have similar arguments to Zero():

  1. PoisonWith(dst, n, t, b) scribble memory with byte b
  2. PoisonNew(dst, n, t) equal to PoisonWith(dst, n, t, 0xAB)
  3. PoisonFree(dst, n, t) equal to PoisonWith(dst, n, t, 0xEF)
  4. Poison(dst, n, t) equal to PoisonFree(dst, n, t)

Character Class Tests

There are two types of character class tests that Perl implements: onetype deals in chars and are thus not Unicode aware (and hencedeprecated unless you know you should use them) and the other typedeal in UVs and know about Unicode properties. In the followingtable, c is a char, and u is a Unicode codepoint.

  1. Instead Of: Use: But better use:
  2. isalnum(c) isALNUM(c) isALNUM_uni(u)
  3. isalpha(c) isALPHA(c) isALPHA_uni(u)
  4. iscntrl(c) isCNTRL(c) isCNTRL_uni(u)
  5. isdigit(c) isDIGIT(c) isDIGIT_uni(u)
  6. isgraph(c) isGRAPH(c) isGRAPH_uni(u)
  7. islower(c) isLOWER(c) isLOWER_uni(u)
  8. isprint(c) isPRINT(c) isPRINT_uni(u)
  9. ispunct(c) isPUNCT(c) isPUNCT_uni(u)
  10. isspace(c) isSPACE(c) isSPACE_uni(u)
  11. isupper(c) isUPPER(c) isUPPER_uni(u)
  12. isxdigit(c) isXDIGIT(c) isXDIGIT_uni(u)
  13. tolower(c) toLOWER(c) toLOWER_uni(u)
  14. toupper(c) toUPPER(c) toUPPER_uni(u)

stdlib.h functions

  1. Instead Of: Use:
  2. atof(s) Atof(s)
  3. atol(s) Atol(s)
  4. strtod(s, &p) Nothing. Just don't use it.
  5. strtol(s, &p, n) Strtol(s, &p, n)
  6. strtoul(s, &p, n) Strtoul(s, &p, n)

Notice also the grok_bin, grok_hex, and grok_oct functions innumeric.c for converting strings representing numbers in the respectivebases into NVs.

In theory Strtol and Strtoul may not be defined if the machine perl isbuilt on doesn't actually have strtol and strtoul. But as those 2functions are part of the 1989 ANSI C spec we suspect you'll find themeverywhere by now.

  1. int rand() double Drand01()
  2. srand(n) { seedDrand01((Rand_seed_t)n);
  3. PL_srand_called = TRUE; }
  4. exit(n) my_exit(n)
  5. system(s) Don't. Look at pp_system or use my_popen
  6. getenv(s) PerlEnv_getenv(s)
  7. setenv(s, val) my_putenv(s, val)

Miscellaneous functions

You should not even want to use setjmp.h functions, but if youthink you do, use the JMPENV stack in scope.h instead.

For signal/sigaction, use rsignal(signo, handler).

SEE ALSO

perlapi, perlapio, perlguts

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) A guide to the Perl source treeIntroduction to the Perl API (Berikutnya)