- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在逐行读取一个小文件,并将第一列存储为键,并将后续列存储为不同哈希中的各种值。我正在使用从 How to delete element from hsearch 获得的建议使用 POSIX 哈希函数。
但是,我无法将哈希读入内存而不出现内存错误。
我正在读取的数据是一个制表符分隔的表格:
sample detailed_category primary disease or tissue _primary_site _sample_type _gender _study
TCGA-V4-A9EE-01 Uveal Melanoma Uveal Melanoma Eye Primary Tumor Male TCGA
TCGA-VD-AA8N-01 Uveal Melanoma Uveal Melanoma Eye Primary Tumor Male TCGA
TCGA-V4-A9EI-01 Uveal Melanoma Uveal Melanoma Eye Primary Tumor Male TCGA
TCGA-VD-AA8O-01 Uveal Melanoma Uveal Melanoma Eye Primary Tumor Male TCGA
我的C程序如下:
#include <stdio.h>
#include <stdlib.h>
#define GNU_SOURCE
#define __USE_GNU
#include <search.h>//hcreate_r, h*_r
#include <string.h>//strok_r
#define NIL (-1L)
//https://stackoverflow.com/questions/25971505/how-to-delete-element-from-hsearch
void hadd_char(struct hsearch_data *restrict tab, char *restrict key, const char *restrict value) {
ENTRY item = {key, (char *restrict ) value};
ENTRY *pitem = &item;
if (hsearch_r(item, ENTER, &pitem, tab)) {
pitem->data = (char *restrict ) value;
}
}
char * hfind(struct hsearch_data *restrict tab, char *restrict key) {
ENTRY item = {key};
ENTRY *pitem = &item;
if (hsearch_r(item, FIND, &pitem, tab)) {
return (char *) pitem->data;
}
return NULL;
}
int main(void) {
const char PHENOTYPE_FILENAME[] = "head_TcgaTargetGTEX_phenotype.txt";
FILE *restrict phenotype_fh = fopen(PHENOTYPE_FILENAME, "r");
if (phenotype_fh == NULL) {
printf("failed to open %s\n", PHENOTYPE_FILENAME);
perror("");
exit(EXIT_FAILURE);
}
char *line = NULL;//necessary for reading file
size_t len = 0;//necessary for reading file
ssize_t read = 0;//necessary for reading file
_Bool header = 0;//necessary for reading file
struct hsearch_data patient_disease = {0};//the hash
hcreate_r(15, &patient_disease);//bigger than it needs to be
//start reading file
while ((read = getline ( &line, &len, phenotype_fh)) != -1) {
if (header == 0) {//skip header
header = 1;
continue;
}
char *restrict tmp_string = NULL;
char * tmp_pointer = NULL;
tmp_string = strtok_r(line, "\t", &tmp_pointer);
char *restrict patient = strdup(tmp_string);
unsigned short int column = 1;
while (tmp_string != NULL) {//read each field in line
tmp_string = strtok_r(NULL, "\t", &tmp_pointer);
if (tmp_string == NULL) {
break;
}
column++;
if (column == 2) {
printf("patient %s = %s\n", patient, tmp_string);
hadd_char(&patient_disease, patient, tmp_string);
}
}
free(patient); patient = NULL;
}
free(line); line = NULL;
fclose(phenotype_fh);
//try to get a value back from the hash
char *restrict x = hfind(&patient_disease, "TCGA-V4-A9EI-01");
puts(x);
free(x); x = NULL;
hdestroy_r(&patient_disease);
return 0;
}
然而,这个段错误从 valgrind 中获取错误:
=17700== HEAP SUMMARY:
==17700== in use at exit: 0 bytes in 0 blocks
==17700== total heap usage: 9 allocs, 9 frees, 6,144 bytes allocated
==17700==
==17700== All heap blocks were freed -- no leaks are possible
==17700==
==17700== ERROR SUMMARY: 24 errors from 2 contexts (suppressed: 0 from 0)
==17700==
==17700== 2 errors in context 1 of 2:
==17700== Invalid read of size 1
==17700== at 0x4C33DA3: strcmp (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x4F4BDCA: hsearch_r (hsearch_r.c:171)
==17700== by 0x108A93: hadd_char (graeme.c:15)
==17700== by 0x108A93: main (graeme.c:65)
==17700== Address 0x521d510 is 0 bytes inside a block of size 16 free'd
==17700== at 0x4C30D3B: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x108AB8: main (graeme.c:68)
==17700== Block was alloc'd at
==17700== at 0x4C2FB0F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x4ECFC99: strdup (strdup.c:42)
==17700== by 0x108A0B: main (graeme.c:55)
==17700==
==17700==
==17700== 22 errors in context 2 of 2:
==17700== Invalid read of size 1
==17700== at 0x4C33DC7: strcmp (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x4F4BDCA: hsearch_r (hsearch_r.c:171)
==17700== by 0x108A93: hadd_char (graeme.c:15)
==17700== by 0x108A93: main (graeme.c:65)
==17700== Address 0x521d511 is 1 bytes inside a block of size 16 free'd
==17700== at 0x4C30D3B: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x108AB8: main (graeme.c:68)
==17700== Block was alloc'd at
==17700== at 0x4C2FB0F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==17700== by 0x4ECFC99: strdup (strdup.c:42)
==17700== by 0x108A0B: main (graeme.c:55)
==17700==
==17700== ERROR SUMMARY: 24 errors from 2 contexts (suppressed: 0 from 0)
我真的很喜欢链接帖子中的作者添加功能的方式,但我无法复制他的成功。
最后,应该测试输出,以便每个键都匹配正确的值。
我怎样才能像这样成功地读取和写入这个哈希?
最佳答案
Valgrind 指示您在第 55 行使用 strdup
,此处:
char *restrict patient = strdup(tmp_string);
并在第 68 行释放该字符串:
free(patient); patient = NULL;
但是您将它(第 65 行)作为 key
参数传递给 hadd_char()
:
void hadd_char(struct hsearch_data *restrict tab, char *restrict key, const char *restrict value) {
ENTRY item = {key, (char *restrict ) value};
ENTRY *pitem = &item;
if (hsearch_r(item, ENTER, &pitem, tab)) {
pitem->data = (char *restrict ) value;
}
}
指针被复制到 ITEM
中,并且 hsearch_r(..., ENTER, ...)
复制该 ITEM
>,包括指针,并将其放入哈希表中。因此,当您释放(病人)
时,您会在哈希表中留下一个悬空指针。
您需要安排,当您将新数据插入哈希表时,只要它存在,就保持它的事件状态(这在 C++ 中更容易;在 C 中,管理对象生命周期是最难的问题之一) .
关于c - 哈希读/写中的 hsearch_r 内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49304963/
我正在尝试 grep conf 文件中所有不以 开头的有效行 哈希(或) 任意数量的空格(0 个或多个)和一个散列 下面的正则表达式似乎不起作用。 grep ^[^[[:blank:]]*#] /op
我正在使用哈希通过 URL 发送 protected 电子邮件以激活帐户 Hash::make($data["email"]); 但是哈希结果是 %242y%2410%24xaiB/eO6knk8sL
我是 Perl 的新手,正在尝试从文本文件创建散列。我有一个代码外部的文本文件,旨在供其他人编辑。前提是他们应该熟悉 Perl 并且知道在哪里编辑。文本文件本质上包含几个散列的散列,具有正确的语法、缩
我一直在阅读 perl 文档,但我不太了解哈希。我正在尝试查找哈希键是否存在,如果存在,则比较其值。让我感到困惑的是,我的搜索结果表明您可以通过 if (exists $files{$key}) 找到
我遇到了数字对映射到其他数字对的问题。例如,(1,2)->(12,97)。有些对可能映射到多个其他对,所以我真正需要的是将一对映射到列表列表的能力,例如 (1,2)->((12,97),(4,1))。
我见过的所有 Mustache 文档和示例都展示了如何使用散列来填充模板。我有兴趣去另一个方向。 EG,如果我有这个: Hello {{name}} mustache 能否生成这个(伪代码): tag
我正在尝试使用此公式创建密码摘要以获取以下变量,但我的代码不匹配。不确定我做错了什么,但当我需要帮助时我会承认。希望有人在那里可以提供帮助。 文档中的公式:Base64(SHA1(NONCE + TI
我希望遍历我传递给定路径的这些数据结构(基本上是目录结构)。 目标是列出根/基本路径,然后列出所有子 path s 如果它们存在并且对于每个子 path存在,列出 file从那个子路径。 我知道这可能
我希望有一个包含对子函数的引用的散列,我可以在其中根据用户定义的变量调用这些函数,我将尝试给出我正在尝试做的事情的简化示例。 my %colors = ( vim => setup_vim()
我注意到,在使用 vim 将它们复制粘贴到文件中后尝试生成一些散列时,散列不是它应该的样子。打开和写出文件时相同。与 nano 的行为相同,所以一定有我遗漏的地方。 $ echo -n "foo"
数组和散列作为状态变量存在限制。从 Perl 5.10 开始,我们无法在列表上下文中初始化它们: 所以 state @array = qw(a b c); #Error! 为什么会这样?为什么这是不允
在端口 80 上使用 varnish 5.1 的多网站设置中,我不想缓存所有域。 这在 vcl_recv 中很容易完成。 if ( req.http.Host == "cache.this.domai
基本上,缓存破坏文件上的哈希不会更新。 class S3PipelineStorage(PipelineMixin, CachedFilesMixin, S3BotoStorage): pa
eclipse dart插件在“变量” View 中显示如下内容: 在“值”列中可见的“id”是什么意思? “id”是唯一的吗?在调试期间,如何确定两个实例是否相同?我是否需要在所有类中重写toStr
如何将Powershell中的命令行参数读入数组?就像是 myprogram -file file1 -file file2 -file file3 然后我有一个数组 [file1,file2,fil
我正尝试在 coldfusion 中为我们的安全支付网关创建哈希密码以接受交易。 很遗憾,支付网关拒绝接受我生成的哈希值。 表单发送交易的所有元素,并发送基于五个不同字段生成的哈希值。 在 PHP 中
例如,我有一个包含 5 个元素的哈希: my_hash = {a: 'qwe', b: 'zcx', c: 'dss', d: 'ccc', e: 'www' } 我的目标是每次循环哈希时都返回,但没
我在这里看到了令人作呕的类似问题,但没有一个能具体回答我自己的问题。 我正在尝试以编程方式创建哈希的哈希。我的问题代码如下: my %this_hash = (); if ($user_hash{$u
我正尝试在 coldfusion 中为我们的安全支付网关创建哈希密码以接受交易。 很遗憾,支付网关拒绝接受我生成的哈希值。 表单发送交易的所有元素,并发送基于五个不同字段生成的哈希值。 在 PHP 中
这个问题已经有答案了: Java - how to convert letters in a string to a number? (9 个回答) 已关闭 7 年前。 我需要一种简短的方法将字符串转
我是一名优秀的程序员,十分优秀!