我正在使用C
文件IO从sysfs
中的linux
接口读取值。寄存器的路径和样本值如下:
cat /sys/class/powercap/intel-rapl/intel-rapl\:0/energy_uj
56039694184
代码:在\
之后添加intel-rapl\
以考虑unknown escape sequence
#define FILE_SIZE 512
static FILE *fp;
char filename[FILE_SIZE];
char TEMP[FILE_SIZE];
int FILE, READ;
long int POWER;
FILE = open("/sys/class/powercap/intel-rapl/intel-rapl\\:0/energy_uj", O_RDONLY);
READ = read(FILE, TEMP, sizeof(TEMP));
POWER= strtod(TEMP,NULL);
close(FILE);
sprintf(filename,"test.csv");
fp = fopen(filename,"a+");
fprintf(fp,"\n");
fprintf(fp, "%ld", POWER);
代码编译没有任何错误,但在输出文件中我得到的值为0
。这是由于我如何考虑转义序列?
感谢。
答案 0 :(得分:3)
由于sysfs文件虽然在某种意义上是“文件”,但也可能是节点等,而不是传统的文本文件,通常最好让shell与sysfs文件交互,只需从中读取所需的值使用shell命令调用popen
后的管道,例如
#include <stdio.h>
int main (void) {
long unsigned energy_uj = 0;
FILE *proc = popen (
"cat /sys/class/powercap/intel-rapl/intel-rapl\\:0/energy_uj", "r");
if (!proc) { /* validate pipe open for reading */
fprintf (stderr, "error: process open failed.\n");
return 1;
}
if (fscanf (proc, "%lu", &energy_uj) == 1) /* read/validate value */
printf ("energy_uj: %lu\n", energy_uj);
pclose (proc);
return 0;
}
示例使用/输出
$ ./bin/sysfs_energy_uj
energy_uj: 29378726782
这并不是说您无法直接从sysfs文件中读取,但如果您有任何问题,那么从管道中读取就可以了。对于 energy_uj 值,可以直接读取它而不会出现问题:
#include <stdio.h>
int main (void) {
long unsigned energy_uj = 0;
FILE *fp = fopen (
"/sys/class/powercap/intel-rapl/intel-rapl:0/energy_uj", "r");
if (!fp) { /* validate file open for reading */
fprintf (stderr, "error: file open failed.\n");
return 1;
}
if (fscanf (fp, "%lu", &energy_uj) == 1) /* read/validate value */
printf ("energy_uj: %lu\n", energy_uj);
fclose (fp);
return 0;
}
示例使用/输出
$ ./bin/sysfs_energy_uj_file
energy_uj: 33636394660