Skip to content

Commit 859d9f6

Browse files
committed
test
1 parent d2b688a commit 859d9f6

7 files changed

+297
-23
lines changed

compose/asc-icon-policy.c

+173
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,48 @@ asc_icon_policy_class_init (AscIconPolicyClass *klass)
114114
object_class->finalize = asc_icon_policy_finalize;
115115
}
116116

117+
/**
118+
* asc_icon_state_to_string:
119+
* @istate: the #AscIconState.
120+
*
121+
* Converts the enumerated value to an text representation.
122+
*
123+
* Returns: string version of @istate
124+
**/
125+
const gchar *
126+
asc_icon_state_to_string (AscIconState istate)
127+
{
128+
if (istate == ASC_ICON_STATE_CACHED_REMOTE)
129+
return "cached-remote";
130+
if (istate == ASC_ICON_STATE_CACHED_ONLY)
131+
return "cached";
132+
if (istate == ASC_ICON_STATE_REMOTE_ONLY)
133+
return "remote";
134+
135+
return "ignored";
136+
}
137+
138+
/**
139+
* asc_icon_state_from_string:
140+
* @state_str: the string.
141+
*
142+
* Converts the text representation to an enumerated value.
143+
*
144+
* Returns: a #AscIconState
145+
**/
146+
AscIconState
147+
asc_icon_state_from_string (const gchar *state_str)
148+
{
149+
if (as_str_equal0 (state_str, "cached-remote"))
150+
return ASC_ICON_STATE_CACHED_REMOTE;
151+
if (as_str_equal0 (state_str, "cached"))
152+
return ASC_ICON_STATE_CACHED_ONLY;
153+
if (as_str_equal0 (state_str, "remote"))
154+
return ASC_ICON_STATE_REMOTE_ONLY;
155+
156+
return ASC_ICON_STATE_IGNORED;
157+
}
158+
117159
/**
118160
* asc_icon_policy_set_policy:
119161
* @ipolicy: an #AscIconPolicy instance.
@@ -230,6 +272,137 @@ asc_icon_policy_iter_next (AscIconPolicyIter *iter, guint *size, guint *scale, A
230272
return TRUE;
231273
}
232274

275+
/**
276+
* asc_icon_policy_to_string:
277+
* @ipolicy: an #AscIconPolicy instance.
278+
*
279+
* Converts the current icon policy into a textual representation.
280+
*
281+
* Returns: The icon policy serialized into a string. Free with g_free()
282+
**/
283+
gchar *
284+
asc_icon_policy_to_string (AscIconPolicy *ipolicy)
285+
{
286+
AscIconPolicyPrivate *priv = GET_PRIVATE (ipolicy);
287+
GString *result = g_string_new ("");
288+
289+
for (guint i = 0; i < priv->entries->len; i++) {
290+
AscIconPolicyEntry *e = g_ptr_array_index (priv->entries, i);
291+
if (e->scale > 1)
292+
g_string_append_printf (result,
293+
"%dx%d@%d=%s,",
294+
e->size,
295+
e->size,
296+
e->scale,
297+
asc_icon_state_to_string (e->state));
298+
else
299+
g_string_append_printf (result,
300+
"%dx%d=%s,",
301+
e->size,
302+
e->size,
303+
asc_icon_state_to_string (e->state));
304+
}
305+
306+
/* trim trailing comma */
307+
if (result->len > 0)
308+
g_string_truncate (result, result->len - 1);
309+
310+
return g_string_free (result, FALSE);
311+
}
312+
313+
/**
314+
* asc_icon_policy_from_string:
315+
* @ipolicy: an #AscIconPolicy instance.
316+
* @serialized_policy: A policy string as returned by %asc_icon_policy_to_string
317+
* @error: A #GError
318+
*
319+
* Loads the icon policy from a textual representation.
320+
*
321+
**/
322+
gboolean
323+
asc_icon_policy_from_string (AscIconPolicy *ipolicy, const gchar *serialized_policy, GError **error)
324+
{
325+
AscIconPolicyPrivate *priv = GET_PRIVATE (ipolicy);
326+
g_auto(GStrv) policy_blocks = NULL;
327+
gboolean success = TRUE;
328+
gboolean have_64x64_cached = FALSE;
329+
g_return_val_if_fail (serialized_policy != NULL, FALSE);
330+
331+
policy_blocks = g_strsplit (serialized_policy, ",", -1);
332+
if (policy_blocks == NULL) {
333+
g_set_error_literal (error,
334+
AS_UTILS_ERROR,
335+
AS_UTILS_ERROR_FAILED,
336+
"Unable to parse icon policy string representation.");
337+
return FALSE;
338+
}
339+
340+
/* delete existing entries */
341+
g_ptr_array_set_size (priv->entries, 0);
342+
343+
/* parse data */
344+
for (guint i = 0; policy_blocks[i] != NULL; i++) {
345+
guint size = 0;
346+
guint scale = 1;
347+
gchar *scale_ptr;
348+
g_auto(GStrv) size_scale = NULL;
349+
g_auto(GStrv) parts = g_strsplit (policy_blocks[i], "=", 2);
350+
351+
if (parts == NULL || g_strv_length (parts) != 2) {
352+
success = FALSE;
353+
continue;
354+
}
355+
size_scale = g_strsplit (parts[0], "x", 2);
356+
if (size_scale == NULL || g_strv_length (size_scale) != 2) {
357+
success = FALSE;
358+
continue;
359+
}
360+
361+
size = g_ascii_strtoull (size_scale[0], NULL, 10);
362+
scale_ptr = g_strrstr (size_scale[1], "@");
363+
if (scale_ptr != NULL)
364+
scale = g_ascii_strtoull (scale_ptr + 1, NULL, 10);
365+
366+
if (size == 0 || scale == 0) {
367+
success = FALSE;
368+
continue;
369+
}
370+
371+
asc_icon_policy_set_policy (ipolicy,
372+
size,
373+
scale,
374+
asc_icon_state_from_string (parts[1]));
375+
}
376+
377+
/* we must have 64x64px icons cached, to satisfy policy */
378+
for (guint i = 0; i < priv->entries->len; i++) {
379+
AscIconPolicyEntry *e = g_ptr_array_index (priv->entries, i);
380+
if (e->size == 64 && e->scale == 1) {
381+
if (e->state == ASC_ICON_STATE_CACHED_REMOTE ||
382+
e->state == ASC_ICON_STATE_CACHED_ONLY)
383+
have_64x64_cached = TRUE;
384+
break;
385+
}
386+
}
387+
388+
if (!have_64x64_cached) {
389+
g_set_error_literal (error,
390+
AS_UTILS_ERROR,
391+
AS_UTILS_ERROR_FAILED,
392+
"64x64@1 icons were not selected for being cached, which is not permitted.");
393+
asc_icon_policy_set_policy (ipolicy, 64, 1, ASC_ICON_STATE_CACHED_ONLY);
394+
return FALSE;
395+
}
396+
397+
if (!success)
398+
g_set_error_literal (error,
399+
AS_UTILS_ERROR,
400+
AS_UTILS_ERROR_FAILED,
401+
"Unable to parse icon policy string representation.");
402+
403+
return success;
404+
}
405+
233406
/**
234407
* asc_icon_policy_new:
235408
*

compose/asc-icon-policy.h

+8
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ typedef enum {
6666
ASC_ICON_STATE_REMOTE_ONLY
6767
} AscIconState;
6868

69+
const gchar *asc_icon_state_to_string (AscIconState istate);
70+
AscIconState asc_icon_state_from_string (const gchar *state_str);
71+
6972
AscIconPolicy *asc_icon_policy_new (void);
7073

7174
void asc_icon_policy_set_policy (AscIconPolicy *ipolicy,
@@ -79,4 +82,9 @@ gboolean asc_icon_policy_iter_next (AscIconPolicyIter *iter,
7982
guint *scale,
8083
AscIconState *state);
8184

85+
gchar *asc_icon_policy_to_string (AscIconPolicy *ipolicy);
86+
gboolean asc_icon_policy_from_string (AscIconPolicy *ipolicy,
87+
const gchar *serialized_policy,
88+
GError **error);
89+
8290
G_END_DECLS

docs/xml/man/appstreamcli-compose.1.xml

+34-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<refentryinfo>
1515
<title>appstreamcli compose</title>
1616
<copyright>
17-
<year>2020-2022</year>
17+
<year>2020-2024</year>
1818
<holder>Matthias Klumpp</holder>
1919
</copyright>
2020
<productname>AppStream</productname>
@@ -69,7 +69,7 @@
6969
<variablelist>
7070

7171
<varlistentry>
72-
<term><replaceable>SOURCE DIRECTORIES</replaceable></term>
72+
<term><replaceable>SOURCE-DIRECTORIES</replaceable></term>
7373
<listitem>
7474
<para>
7575
A list of directories to process needs to be provided as positional parameters.
@@ -184,6 +184,38 @@
184184
</listitem>
185185
</varlistentry>
186186

187+
<varlistentry>
188+
<term><option>--no-partial-urls</option></term>
189+
<listitem>
190+
<para>
191+
If set, all URLs in the generated data will be absolute and <code>media_baseurl</code> will not be used.
192+
This makes changing the media mirror harder without regenerating all data and is generally not recommended,
193+
to increase flexibility.
194+
</para>
195+
</listitem>
196+
</varlistentry>
197+
198+
<varlistentry>
199+
<term><option>--icon-policy <replaceable>POLICY-STRING</replaceable></option></term>
200+
<listitem>
201+
<para>
202+
Override the existing icon policy with a custom one. The icon policy sets how icons of
203+
different sizes should be dealt with. They can be in the icon cache only, be a remote icon in
204+
the media location or be both cached and available in the remote location.
205+
</para>
206+
<para>
207+
The icon-policy string is comprised of comma-separated <code>%{size}x%{size}@%{scale}=%{state}</code> statements.
208+
The <code>size</code> and <code>scale</code> are that of the respective icon, with the scale being allowed to be
209+
omitted if it is 1. The <code>state</code> can be one of <literal>remote</literal>, <literal>cached</literal> or
210+
<literal>cached-remote</literal>.
211+
</para>
212+
<para>
213+
By default, a policy of <code>48x48=cached,48x48@2=cached,64x64=cached,64x64@2=cached,128x128=cached-remote,128x128@2=cached-remote</code>
214+
is selected.
215+
</para>
216+
</listitem>
217+
</varlistentry>
218+
187219
<varlistentry>
188220
<term><option>--components <replaceable>COMPONENT-IDs</replaceable></option></term>
189221
<listitem>

src/as-relation.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -1912,11 +1912,12 @@ as_relation_is_satisfied (AsRelation *relation,
19121912
* AS_RELATION_ITEM_KIND_INTERNET
19131913
*/
19141914

1915-
g_set_error (error,
1916-
AS_RELATION_ERROR,
1917-
AS_RELATION_ERROR_NOT_IMPLEMENTED,
1918-
_("Satisfiability check for relation items of type '%s' is not implemented yet."),
1919-
as_relation_item_kind_to_string (priv->item_kind));
1915+
g_set_error (
1916+
error,
1917+
AS_RELATION_ERROR,
1918+
AS_RELATION_ERROR_NOT_IMPLEMENTED,
1919+
_("Satisfiability check for relation items of type '%s' is not implemented yet."),
1920+
as_relation_item_kind_to_string (priv->item_kind));
19201921

19211922
return NULL;
19221923
}

tests/test-compose.c

+40
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,44 @@ test_compose_font (void)
949949
asc_assert_no_hints_in_result (cres);
950950
}
951951

952+
static void
953+
test_compose_icon_policy_serialize (void)
954+
{
955+
g_autoptr(AscIconPolicy) ipolicy = NULL;
956+
g_autofree gchar *tmp = NULL;
957+
gboolean ret;
958+
g_autoptr(GError) error = NULL;
959+
960+
ipolicy = asc_icon_policy_new ();
961+
tmp = asc_icon_policy_to_string (ipolicy);
962+
g_assert_cmpstr (tmp,
963+
==,
964+
"48x48=cached,48x48@2=cached,64x64=cached,64x64@2=cached,"
965+
"128x128=cached-remote,128x128@2=cached-remote");
966+
g_free (g_steal_pointer (&tmp));
967+
968+
ret = asc_icon_policy_from_string (
969+
ipolicy,
970+
"48x48@2=ignored,64x64=cached,64x64@2=cached-remote,128x128=remote,128x128@2=remote",
971+
&error);
972+
g_assert_no_error (error);
973+
g_assert_true (ret);
974+
g_clear_error (&error);
975+
976+
tmp = asc_icon_policy_to_string (ipolicy);
977+
g_assert_cmpstr (
978+
tmp,
979+
==,
980+
"48x48@2=ignored,64x64=cached,64x64@2=cached-remote,128x128=remote,128x128@2=remote");
981+
g_free (g_steal_pointer (&tmp));
982+
983+
ret = asc_icon_policy_from_string (ipolicy,
984+
"48x48-2:ignored,64x64:cached",
985+
&error);
986+
g_assert_error (error, AS_UTILS_ERROR, AS_UTILS_ERROR_FAILED);
987+
g_assert_false (ret);
988+
}
989+
952990
int
953991
main (int argc, char **argv)
954992
{
@@ -988,6 +1026,8 @@ main (int argc, char **argv)
9881026
g_test_add_func ("/AppStream/Compose/SourceLocale", test_compose_source_locale);
9891027
g_test_add_func ("/AppStream/Compose/VideoInfo", test_compose_video_info);
9901028
g_test_add_func ("/AppStream/Compose/Font", test_compose_font);
1029+
g_test_add_func ("/AppStream/Compose/IconPolicySerialize",
1030+
test_compose_icon_policy_serialize);
9911031

9921032
ret = g_test_run ();
9931033
g_free (datadir);

0 commit comments

Comments
 (0)