@@ -114,6 +114,48 @@ asc_icon_policy_class_init (AscIconPolicyClass *klass)
114
114
object_class -> finalize = asc_icon_policy_finalize ;
115
115
}
116
116
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
+
117
159
/**
118
160
* asc_icon_policy_set_policy:
119
161
* @ipolicy: an #AscIconPolicy instance.
@@ -230,6 +272,137 @@ asc_icon_policy_iter_next (AscIconPolicyIter *iter, guint *size, guint *scale, A
230
272
return TRUE;
231
273
}
232
274
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
+
233
406
/**
234
407
* asc_icon_policy_new:
235
408
*
0 commit comments