c++ - fprintf 不写入管道

标签 c++ c gnuplot printf

我成功打开管道,即使用 _popen 的 gnuplot 窗口。但无法使用 fprintf 写入流。我检查了文件指针值,它不为空。我搜索了许多来源并使用了 fflush,但它不起作用。我找不到解决方案。

其实我之前在这里问过类似的问题gnuplot c++ interface through pipes -cannot open wgnuplot重新发布并进行一些修改。

任何建议都会有所帮助..

FILE* gp;
  string command = "set style data lines\n" ;
  char *path = "\"C:\\Program Files\\gnuplot\\bin\\wgnuplot\" -persist";

  gp = _popen(path , "wt");

  if (gp == NULL)
    return -1;

 fprintf(gp,command );
 fflush(gp);
 _pclose(gp);

我在没有使用管道的情况下使用了这段代码,它使用了 createprocess。这里也是同样的情况,gnuplot.exe 打开但没有输出图。

int _tmain (int argc, LPTSTR argv [])

{
    DWORD i;
    HANDLE hReadPipe, hWritePipe;

    SECURITY_ATTRIBUTES PipeSA = {sizeof (SECURITY_ATTRIBUTES), NULL, TRUE};
            /* Init for inheritable handles. */
    TCHAR outBuf[ ] = TEXT("a=2; plot sin(a*x)/x; pause mouse; plot exp(-a*x); pause mouse") ;  
    TCHAR inBuf[80];
    DWORD dwWritten, dwRead ;
    BOOL  bSuccess = FALSE;
    PROCESS_INFORMATION  ProcInfo2;
    STARTUPINFO StartInfoCh2;


    /* Startup info for the Gnuplot process. */

    GetStartupInfo (&StartInfoCh2);

    /* Create an anonymous pipe with default size.
        The handles are inheritable. */

    bSuccess = CreatePipe (&hReadPipe, &hWritePipe, &PipeSA, 0);
    if (bSuccess == TRUE) printf("pipe created\n");

    WriteFile(hWritePipe, outBuf, sizeof(outBuf), &dwWritten, NULL) ;   
    printf("Wrote %d bytes to Gnuplot\n", dwWritten) ;

    CloseHandle (hWritePipe);

    /* Repeat (symmetrically) for the child process. */

    StartInfoCh2.hStdInput  = hReadPipe;
    StartInfoCh2.hStdError  = GetStdHandle (STD_ERROR_HANDLE);
    StartInfoCh2.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
    StartInfoCh2.dwFlags = STARTF_USESTDHANDLES;
    bSuccess = FALSE ;
    bSuccess = CreateProcess ("C:\\Program Files\\gnuplot\\bin\\wgnuplot.exe", NULL, NULL, NULL,
            TRUE,0, NULL, NULL, &StartInfoCh2, &ProcInfo2);
    if (bSuccess == TRUE)
      printf("Created Gnuplot Process\n" ) ;

    WaitForSingleObject (ProcInfo2.hProcess, INFINITE);
    CloseHandle (ProcInfo2.hThread); 
    CloseHandle (hReadPipe);

    /* Wait for Gnuplot process to complete.*/

    CloseHandle (ProcInfo2.hProcess);
    return 0;
}

最佳答案

我认为问题不在于您的代码,而是 -persist 在 Windows 上没有执行任何操作。这意味着图表的显示时间不会超过一瞬间。您可以生成如下所示的图像,而不是显示 gnuplot 窗口。

#include <stdio.h>
#include <stdlib.h>

int main()
{
  FILE* gp;
  gp = _popen("gnuplot", "w");

  if (gp == NULL)
    return -1;

  fprintf(gp, "set terminal png\nset output 'tmp.png'\n");
  fprintf(gp, "set isosample 100\n");
  fprintf(gp, "min=-1\n");
  fprintf(gp, "max=1\n");
  fprintf(gp, "pi=3.141592\n");
  fprintf(gp, "set hidden3d\n");
  fprintf(gp, "set pm3d\n");
  fprintf(gp, "set contour\n");
  fprintf(gp, "splot [min:max] [min:max] x*x+2*y*y-0.3*cos(3*pi*x)-0.4*cos(4*pi*y)+0.7\n");
  fflush(gp);
  pclose(gp);

  return 0;
}

或者你可以引入某种等待。

#include <stdio.h>
#include <stdlib.h>

int main()
{
  FILE* gp;
  gp = _popen("gnuplot", "w");

  if (gp == NULL)
    return -1;

  fprintf(gp, "set isosample 100\n");
  fprintf(gp, "min=-1\n");
  fprintf(gp, "max=1\n");
  fprintf(gp, "pi=3.141592\n");
  fprintf(gp, "set hidden3d\n");
  fprintf(gp, "set pm3d\n");
  fprintf(gp, "set contour\n");
  fprintf(gp, "splot [min:max] [min:max] x*x+2*y*y-0.3*cos(3*pi*x)-0.4*cos(4*pi*y)+0.7\n");
  fflush(gp);
  for (;;) { }

  return 0;
}

关于c++ - fprintf 不写入管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10099768/

相关文章:

gnuplot - 具有倒序的水平键

c# - int[] 到字符串 c#

c++ - 为什么C++在默认情况下不移动构造右值引用?

c - 为什么使用 bzero 而不是 memset?

gnuplot - 如何改进 Gnuplot 中渐变和填充元素的渲染?

gnuplot - 设置 splot 输出的定义区域

c++ - "position"是 C++ 中的保留字吗?

c++ - OpenCV - Ptr 语法和类定义/声明 - 混淆?

Android - NDK - 需要 1+ args 的 Variadic 宏

c - C编译时出现错误 "error: stray '\34 2' "、 "stray '\20 0' "、 "stray '\23 4' "