You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Hudson (JIRA)" <ji...@apache.org> on 2014/11/05 05:48:37 UTC

[jira] [Commented] (THRIFT-1266) generated C code for iterating over nested maps is wrong

    [ https://issues.apache.org/jira/browse/THRIFT-1266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14197478#comment-14197478 ] 

Hudson commented on THRIFT-1266:
--------------------------------

SUCCESS: Integrated in Thrift #1331 (See [https://builds.apache.org/job/Thrift/1331/])
THRIFT-1266 generated C code for iterating over nested maps is wrong (roger: rev d62473c3b0fff3f50f5d1f7e9dd6f8bdf91d4a66)
* compiler/cpp/src/generate/t_c_glib_generator.cc


> generated C code for iterating over nested maps is wrong
> --------------------------------------------------------
>
>                 Key: THRIFT-1266
>                 URL: https://issues.apache.org/jira/browse/THRIFT-1266
>             Project: Thrift
>          Issue Type: Bug
>          Components: C glib - Compiler
>    Affects Versions: 0.8
>         Environment: Revision 1158683 of http://svn.apache.org/repos/asf/thrift/trunk.
>            Reporter: Aleksandrs Saveljevs
>            Assignee: Simon South
>            Priority: Critical
>              Labels: c_glib, cassandra
>             Fix For: 0.9.2
>
>         Attachments: batch_mutate.c, thrift-1266-c_glib-variable-collision-serializing-nested-maps.patch
>
>
> We are working with Cassandra API in C generated by Thrift and have noticed a bug in the generated code for cassandra_client_send_batch_mutate().
> Full code that Thrift generates for this function is attached, but here is the specification for Cassandra's batch_mutate method:
> {code}/**
>   Mutate many columns or super columns for many row keys. See also: Mutation.
>   mutation_map maps key to column family to a list of Mutation objects to take place at that scope.
> **/
> void batch_mutate(1:required map<binary, map<string, list<Mutation>>> mutation_map,
>                   2:required ConsistencyLevel consistency_level=ConsistencyLevel.ONE)
>      throws (1:InvalidRequestException ire, 2:UnavailableException ue, 3:TimedOutException te),
> {code}
> If we now look at the generated code, we will notice the following fragment:
> {code}GPtrArray * value;
> g_hash_table_foreach ((GHashTable *)  value, thrift_hash_table_get_keys, &key_list); /* LINE A */
> {code}
> We can see that in line A it uses the variable "value" as GHashTable, even though the GHashTable "value" was shadowed by GPtrArray "value" a line before.
> Similarly, we can see another fragment below that one, where one instance of variable "value" shadows another instance:
> {code}
> value = (GPtrArray *) g_hash_table_lookup (((GHashTable *)  value), (gpointer) key); /* LINE B */
> {code}
> We have worked around the bug in our particular case by renaming one of the "value" variables to "value2" (see "svn di -c 21176 svn://svn.zabbix.com/branches/dev/ZBXNEXT-844/src/libs/zbxcassa/cassandra.c@21176" for a diff), but it would be nice to fix it in Thrift, too.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)