⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pipe.cc

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 CC
字号:
/* pipe.cc: pipe for Cygwin.   Copyright 1996, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.This file is part of Cygwin.This software is a copyrighted work licensed under the terms of theCygwin license.  Please consult the file "CYGWIN_LICENSE" fordetails. *//* FIXME: Should this really be fhandler_pipe.cc? */#include "winsup.h"#include <unistd.h>#include <errno.h>#include <sys/socket.h>#include "cygerrno.h"#include "security.h"#include "fhandler.h"#include "path.h"#include "dtable.h"#include "cygheap.h"#include "thread.h"#include "pinfo.h"static unsigned pipecount;static const NO_COPY char pipeid_fmt[] = "stupid_pipe.%u.%u";fhandler_pipe::fhandler_pipe (DWORD devtype)  : fhandler_base (devtype), guard (NULL), broken_pipe (false), writepipe_exists(0),    orig_pid (0), id (0){}__off64_tfhandler_pipe::lseek (__off64_t offset, int whence){  debug_printf ("(%d, %d)", offset, whence);  set_errno (ESPIPE);  return -1;}voidfhandler_pipe::set_close_on_exec (int val){  this->fhandler_base::set_close_on_exec (val);  if (guard)    set_inheritance (guard, val);  if (writepipe_exists)    set_inheritance (writepipe_exists, val);}int __stdcallfhandler_pipe::read (void *in_ptr, size_t in_len){  if (broken_pipe)    return 0;  int res = this->fhandler_base::read (in_ptr, in_len);  (void) ReleaseMutex (guard);  return res;}int fhandler_pipe::close (){  int res = this->fhandler_base::close ();  if (guard)    CloseHandle (guard);  if (writepipe_exists)    CloseHandle (writepipe_exists);  return res;}boolfhandler_pipe::hit_eof (){  char buf[80];  HANDLE ev;  if (broken_pipe)    return 1;  if (!orig_pid)    return false;  __small_sprintf (buf, pipeid_fmt, orig_pid, id);  if ((ev = OpenEvent (EVENT_ALL_ACCESS, FALSE, buf)))    CloseHandle (ev);  debug_printf ("%s %p", buf, ev);  return ev == NULL;}voidfhandler_pipe::fixup_after_fork (HANDLE parent){  this->fhandler_base::fixup_after_fork (parent);  if (guard)    fork_fixup (parent, guard, "guard");  if (writepipe_exists)    fork_fixup (parent, writepipe_exists, "guard");}intfhandler_pipe::dup (fhandler_base *child){  int res = this->fhandler_base::dup (child);  if (res)    return res;  fhandler_pipe *ftp = (fhandler_pipe *) child;  if (guard == NULL)    ftp->guard = NULL;  else if (!DuplicateHandle (hMainProc, guard, hMainProc, &ftp->guard, 0, 1,			     DUPLICATE_SAME_ACCESS))    {      debug_printf ("couldn't duplicate guard %p, %E", guard);      return -1;    }  if (writepipe_exists == NULL)    ftp->writepipe_exists = NULL;  else if (!DuplicateHandle (hMainProc, writepipe_exists, hMainProc,			     &ftp->writepipe_exists, 0, 1,			     DUPLICATE_SAME_ACCESS))    {      debug_printf ("couldn't duplicate writepipe_exists %p, %E", writepipe_exists);      return -1;    }  ftp->id = id;  ftp->orig_pid = orig_pid;  return 0;}intmake_pipe (int fildes[2], unsigned int psize, int mode){  HANDLE r, w;  SECURITY_ATTRIBUTES *sa = (mode & O_NOINHERIT) ?  &sec_none_nih : &sec_none;  int res = -1;  cygheap_fdnew fdr;  if (fdr >= 0)    {      cygheap_fdnew fdw (fdr, false);      if (fdw < 0)	/* out of fds? */;      else if (!CreatePipe (&r, &w, sa, psize))	__seterrno ();      else	{	  fhandler_pipe *fhr = (fhandler_pipe *) cygheap->fdtab.build_fhandler (fdr, FH_PIPER, "/dev/piper");	  fhandler_pipe *fhw = (fhandler_pipe *) cygheap->fdtab.build_fhandler (fdw, FH_PIPEW, "/dev/pipew");	  int binmode = mode & O_TEXT ?: O_BINARY;	  fhr->init (r, GENERIC_READ, binmode);	  fhw->init (w, GENERIC_WRITE, binmode);	  if (mode & O_NOINHERIT)	   {	     fhr->set_close_on_exec_flag (1);	     fhw->set_close_on_exec_flag (1);	   }	  fildes[0] = fdr;	  fildes[1] = fdw;	  res = 0;	  fhr->create_guard (sa);	  if (wincap.has_unreliable_pipes ())	    {	      char buf[80];	      int count = pipecount++;	/* FIXME: Should this be InterlockedIncrement? */	      __small_sprintf (buf, pipeid_fmt, myself->pid, count);	      fhw->writepipe_exists = CreateEvent (sa, TRUE, FALSE, buf);	      fhr->orig_pid = myself->pid;	      fhr->id = count;	    }	}    }  syscall_printf ("%d = make_pipe ([%d, %d], %d, %p)", res, fildes[0],		  fildes[1], psize, mode);  return res;}intfhandler_pipe::ioctl (unsigned int cmd, void *p){  int n;  switch (cmd)    {    case FIONREAD:      if (get_device () == FH_PIPEW)	{	  set_errno (EINVAL);	  return -1;	}      if (!PeekNamedPipe (get_handle (), NULL, 0, NULL, (DWORD *) &n, NULL))	{	  __seterrno ();	  return -1;	}      break;    default:      return fhandler_base::ioctl (cmd, p);      break;    }  *(int *) p = n;  return 0;}extern "C" intpipe (int filedes[2]){  extern DWORD binmode;  return make_pipe (filedes, 16384, (!binmode || binmode == O_BINARY) ? O_BINARY : O_TEXT);}extern "C" int_pipe (int filedes[2], unsigned int psize, int mode){  int res = make_pipe (filedes, psize, mode);  /* This type of pipe is not interruptible so set the appropriate flag. */  if (!res)    cygheap->fdtab[filedes[0]]->set_r_no_interrupt (1);  return res;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -