mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-04-03 12:21:16 +02:00
Remove usage of g_ptr_array_foreach()
This function does not appear to provide any benefits compared to a standard loop, and it may prevent some compiler optimizations, like inlining.
This commit is contained in:
parent
5c3e3522c0
commit
c62cbe01c6
@ -640,31 +640,22 @@ bygfoot_json_serialize_team(const Team *team, GHashTable *fields)
|
|||||||
return team_obj;
|
return team_obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
serialize_team_pointers_callback(gpointer team, gpointer user_data)
|
|
||||||
{
|
|
||||||
gchar *fields[] = {
|
|
||||||
"name",
|
|
||||||
"id"
|
|
||||||
};
|
|
||||||
GHashTable *hash_table = fields_to_hash_table(fields);
|
|
||||||
struct json_object *obj = (struct json_object*)user_data;
|
|
||||||
json_object_array_add(obj, bygfoot_json_serialize_team_ptr((Team*)team));
|
|
||||||
}
|
|
||||||
|
|
||||||
struct json_object *
|
struct json_object *
|
||||||
bygfoot_json_serialize_team_ptrs(GPtrArray *team_ptrs, GHashTable *fields)
|
bygfoot_json_serialize_team_ptrs(GPtrArray *team_ptrs, GHashTable *fields)
|
||||||
{
|
{
|
||||||
struct json_object *array_obj;
|
struct json_object *teams_array;
|
||||||
|
gint i;
|
||||||
|
|
||||||
if (!team_ptrs)
|
if (!team_ptrs)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
array_obj = json_object_new_array_ext(team_ptrs->len);
|
teams_array = json_object_new_array_ext(team_ptrs->len);
|
||||||
|
|
||||||
g_ptr_array_foreach(team_ptrs, serialize_team_pointers_callback, array_obj);
|
for (i = 0; i < team_ptrs->len; i++) {
|
||||||
|
const Team *team = g_ptr_array_index(team_ptrs, i);
|
||||||
return array_obj;
|
json_object_array_add(teams_array, bygfoot_json_serialize_team_ptr(team));
|
||||||
|
}
|
||||||
|
return teams_array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user