summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalev Lember <klember@redhat.com>2016-12-29 23:56:53 +0100
committerKalev Lember <klember@redhat.com>2016-12-30 00:00:36 +0100
commit80cd5c18dd44003d81c35ce6ea197a8879f7daa0 (patch)
tree47818e9a5a356bfd82e29f710885a684f2134a4c
parent959972c57e1b73a8ffd60e5719f8e10301a2ab3c (diff)
downloadappstream-glib-wip/kalev/spdx-+-tokenize.tar.gz
Add support for "+" operator at the end of SPDX license identifierswip/kalev/spdx-+-tokenize
SPDX v2.0 and later support an unary "+" operator suffix at the end of license identifiers, e.g. "CC-BY-SA-3.0+". This commit adds support for tokenizing and detokenizing this and adds new tests.
-rw-r--r--libappstream-glib/as-app-validate.c11
-rw-r--r--libappstream-glib/as-self-test.c12
-rw-r--r--libappstream-glib/as-utils.c18
3 files changed, 33 insertions, 8 deletions
diff --git a/libappstream-glib/as-app-validate.c b/libappstream-glib/as-app-validate.c
index 7833722..3fa686b 100644
--- a/libappstream-glib/as-app-validate.c
+++ b/libappstream-glib/as-app-validate.c
@@ -928,6 +928,7 @@ as_app_validate_license (const gchar *license_text, GError **error)
for (i = 0; licenses[i] != NULL; i++) {
if (g_strcmp0 (licenses[i], "&") == 0 ||
g_strcmp0 (licenses[i], "|") == 0 ||
+ g_strcmp0 (licenses[i], "+") == 0 ||
g_strcmp0 (licenses[i], "(") == 0 ||
g_strcmp0 (licenses[i], ")") == 0)
continue;
@@ -951,20 +952,12 @@ as_app_validate_is_content_license_id (const gchar *license_id)
return TRUE;
if (g_strcmp0 (license_id, "@CC-BY-3.0") == 0)
return TRUE;
- if (g_strcmp0 (license_id, "@CC-BY-3.0+") == 0)
- return TRUE;
if (g_strcmp0 (license_id, "@CC-BY-4.0") == 0)
return TRUE;
- if (g_strcmp0 (license_id, "@CC-BY-4.0+") == 0)
- return TRUE;
if (g_strcmp0 (license_id, "@CC-BY-SA-3.0") == 0)
return TRUE;
- if (g_strcmp0 (license_id, "@CC-BY-SA-3.0+") == 0)
- return TRUE;
if (g_strcmp0 (license_id, "@CC-BY-SA-4.0") == 0)
return TRUE;
- if (g_strcmp0 (license_id, "@CC-BY-SA-4.0+") == 0)
- return TRUE;
if (g_strcmp0 (license_id, "@GFDL-1.1") == 0)
return TRUE;
if (g_strcmp0 (license_id, "@GFDL-1.2") == 0)
@@ -977,6 +970,8 @@ as_app_validate_is_content_license_id (const gchar *license_id)
return TRUE;
if (g_strcmp0 (license_id, "|") == 0)
return TRUE;
+ if (g_strcmp0 (license_id, "+") == 0)
+ return TRUE;
return FALSE;
}
diff --git a/libappstream-glib/as-self-test.c b/libappstream-glib/as-self-test.c
index d54ec54..e7c914b 100644
--- a/libappstream-glib/as-self-test.c
+++ b/libappstream-glib/as-self-test.c
@@ -4151,6 +4151,16 @@ as_test_utils_spdx_token_func (void)
g_strfreev (tok);
g_free (tmp);
+ /* "+" operator */
+ tok = as_utils_spdx_license_tokenize ("CC-BY-SA-3.0+ AND Zlib");
+ tmp = g_strjoinv (" ", tok);
+ g_assert_cmpstr (tmp, ==, "@CC-BY-SA-3.0 + & @Zlib");
+ g_free (tmp);
+ tmp = as_utils_spdx_license_detokenize (tok);
+ g_assert_cmpstr (tmp, ==, "CC-BY-SA-3.0+ AND Zlib");
+ g_strfreev (tok);
+ g_free (tmp);
+
/* detokenisation literals */
tok = as_utils_spdx_license_tokenize ("Public Domain");
tmp = as_utils_spdx_license_detokenize (tok);
@@ -4188,6 +4198,8 @@ as_test_utils_spdx_token_func (void)
g_assert (as_utils_is_spdx_license ("LicenseRef-proprietary"));
g_assert (as_utils_is_spdx_license ("CC0 and GFDL-1.3"));
g_assert (as_utils_is_spdx_license ("CC0 AND GFDL-1.3"));
+ g_assert (as_utils_is_spdx_license ("CC-BY-SA-3.0+"));
+ g_assert (as_utils_is_spdx_license ("CC-BY-SA-3.0+ AND Zlib"));
g_assert (as_utils_is_spdx_license ("NOASSERTION"));
g_assert (!as_utils_is_spdx_license ("CC0 dave"));
g_assert (!as_utils_is_spdx_license (""));
diff --git a/libappstream-glib/as-utils.c b/libappstream-glib/as-utils.c
index ba5e11a..84ced4b 100644
--- a/libappstream-glib/as-utils.c
+++ b/libappstream-glib/as-utils.c
@@ -342,6 +342,18 @@ as_utils_spdx_license_tokenize_drop (AsUtilsSpdxHelper *helper)
return;
}
+ /* is license enum with "+" */
+ if (g_str_has_suffix (tmp, "+")) {
+ g_autofree gchar *license_id = g_strndup (tmp, strlen (tmp) - 1);
+ if (as_utils_is_spdx_license_id (license_id)) {
+ g_ptr_array_add (helper->array, g_strdup_printf ("@%s", license_id));
+ g_ptr_array_add (helper->array, g_strdup ("+"));
+ helper->last_token_literal = FALSE;
+ g_string_truncate (helper->collect, 0);
+ return;
+ }
+ }
+
/* is old license enum */
for (i = 0; licenses[i].old != NULL; i++) {
if (g_strcmp0 (tmp, licenses[i].old) != 0)
@@ -466,6 +478,10 @@ as_utils_spdx_license_detokenize (gchar **license_tokens)
g_string_append (tmp, " OR ");
continue;
}
+ if (g_strcmp0 (license_tokens[i], "+") == 0) {
+ g_string_append (tmp, "+");
+ continue;
+ }
if (license_tokens[i][0] != '@') {
g_string_append (tmp, license_tokens[i]);
continue;
@@ -518,6 +534,8 @@ as_utils_is_spdx_license (const gchar *license)
continue;
if (g_strcmp0 (tokens[i], "|") == 0)
continue;
+ if (g_strcmp0 (tokens[i], "+") == 0)
+ continue;
return FALSE;
}
return TRUE;