Skip to content

Commit

Permalink
[C] Remove the dimension member from the codec classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
denizevrenci committed May 9, 2019
1 parent a15319d commit c03a9b7
Showing 1 changed file with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,8 @@ private static void generateGroupStruct(
final List<Token> tokens,
final int index)
{
final String dimensionsStructName = formatScopedName(scope, tokens.get(index + 1).name());

sb.append(String.format("\n" +
"struct %1$s\n" +
"struct %s\n" +
"{\n" +
" char *buffer;\n" +
" uint64_t buffer_length;\n" +
Expand All @@ -230,9 +228,8 @@ private static void generateGroupStruct(
" uint64_t index;\n" +
" uint64_t offset;\n" +
" uint64_t acting_version;\n" +
" struct %2$s dimensions;\n" +
"};\n",
groupName, dimensionsStructName));
groupName));
}

private static void generateGroupHeaderFunctions(
Expand Down Expand Up @@ -265,12 +262,13 @@ private static void generateGroupHeaderFunctions(
"{\n" +
" codec->buffer = buffer;\n" +
" codec->buffer_length = buffer_length;\n" +
" if (!%2$s_wrap(&codec->dimensions, codec->buffer, *pos, acting_version, buffer_length))\n" +
" struct %2$s dimensions;\n" +
" if (!%2$s_wrap(&dimensions, codec->buffer, *pos, acting_version, buffer_length))\n" +
" {\n" +
" return NULL;\n" +
" }\n" +
" codec->block_length = %2$s_blockLength(&codec->dimensions);\n" +
" codec->count = %2$s_numInGroup(&codec->dimensions);\n" +
" codec->block_length = %2$s_blockLength(&dimensions);\n" +
" codec->count = %2$s_numInGroup(&dimensions);\n" +
" codec->index = -1;\n" +
" codec->acting_version = acting_version;\n" +
" codec->position_ptr = pos;\n" +
Expand Down Expand Up @@ -305,12 +303,13 @@ private static void generateGroupHeaderFunctions(
"#endif\n" +
" codec->buffer = buffer;\n" +
" codec->buffer_length = buffer_length;\n" +
" if (!%5$s_wrap(&codec->dimensions, codec->buffer, *pos, acting_version, buffer_length))\n" +
" struct %5$s dimensions;\n" +
" if (!%5$s_wrap(&dimensions, codec->buffer, *pos, acting_version, buffer_length))\n" +
" {\n" +
" return NULL;\n" +
" }\n" +
" %5$s_set_blockLength(&codec->dimensions, (%2$s)%3$d);\n" +
" %5$s_set_numInGroup(&codec->dimensions, (%4$s)count);\n" +
" %5$s_set_blockLength(&dimensions, (%2$s)%3$d);\n" +
" %5$s_set_numInGroup(&dimensions, (%4$s)count);\n" +
" codec->index = -1;\n" +
" codec->count = count;\n" +
" codec->block_length = %3$d;\n" +
Expand Down

0 comments on commit c03a9b7

Please sign in to comment.