linux使用管道命令執行ps擷取cpu與記憶體佔用率_linux shell

來源:互聯網
上載者:User

複製代碼 代碼如下:

#include <stdio.h>
#include <unistd.h>
int main()
{
    char caStdOutLine[1024]; // ps 命令的標準輸出中的一行資訊
    char* pcTmp = NULL;      // 指向以空格拆分後的字串

    char caSelfPID[10];      // 自身進程的PID字串
    char caPSCmd[24];        // "ps aux | grep PID"命令字串

    memset( caSelfPID, 0, sizeof( caSelfPID ) );
    sprintf( caSelfPID,
             "%d",
             getpid() );

    memset( caPSCmd, 0, sizeof( caPSCmd ) );
    sprintf( caPSCmd,
             "ps aux | grep %d",
             getpid() );

    do // 非迴圈,只是為了方便控制分支層次,便於控制分支流向
    {
        // 通過建立一個管道,調用 fork 產生一個子進程,
        // 執行一個 shell 以運行命令來開啟一個進程。
        // 這個進程必須由 pclose() 函數關閉。
        FILE* fp = popen( caPSCmd, // 一個指向以 NULL 結束的 shell 命令字串的指標,
                                   // 這行命令將被傳到 bin/sh 並使用 -c 標誌,
                                   // 那麼 shell 將執行這個命令從這個字串中讀取。
                          "r" );   // 檔案指標串連到 shell 命令的標準輸出

        if ( NULL == fp )
        {
            printf( "call popen is failed\n" );
            break;
        }

        memset( caStdOutLine, 0, sizeof( caStdOutLine ) );
        while ( NULL != fgets( caStdOutLine,
                               sizeof( caStdOutLine ),
                               fp ) )
        {
            // 再以空格分隔字元拆分字串
            pcTmp = strtok( caStdOutLine, " " );

            // 使用者名稱跳過,直接匹配 PID ,不匹配跳過
            pcTmp = strtok( NULL, " " );
            if ( 0 != strncasecmp( caSelfPID,
                                   pcTmp,
                                   strlen( caSelfPID ) ) )
            {
                continue;
            }

            // 讀出進程自身 CPU 佔用率
            pcTmp = strtok( NULL, " " );
            printf( "CPU = %s %%\n", pcTmp );

            // 讀出進程自身 MEM 佔用率
            pcTmp = strtok( NULL, " " );
            printf( "MEM = %s %%\n", pcTmp );

            break;
        }

        // 關閉標準 I/O 流,等待命令執行結束,然後返回 shell 的終止狀態。
        // 如果 shell 不能被執行,
        // 則 pclose() 返回的終止狀態與 shell 已執行 exit 一樣。
        pclose( fp );

    }while ( 0 );
}

複製代碼 代碼如下:

$ gcc main.c -o test
$ ./test
CPU = 1.0 %
MEM = 0.0 %

$ ps  aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
nsc      24505  1.0  0.0   2004   232 pts/0    S+   09:46   0:00 ./test

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.