summaryrefslogtreecommitdiffstats
path: root/mpvcore/bstr.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-15 18:48:05 +0200
committerwm4 <wm4@nowhere>2013-08-15 23:40:02 +0200
commit380fa71fc79ba40936ea073cfdd183c708141420 (patch)
tree8874e1cadd3a21be5ddc5b94a25088c0de686614 /mpvcore/bstr.h
parent04bc16f6ea4eb89913324054e4f539f3feafa6d2 (diff)
downloadmpv-380fa71fc79ba40936ea073cfdd183c708141420.tar.bz2
mpv-380fa71fc79ba40936ea073cfdd183c708141420.tar.xz
bstr: add UTF-8 validation and sanitation functions
Diffstat (limited to 'mpvcore/bstr.h')
-rw-r--r--mpvcore/bstr.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/mpvcore/bstr.h b/mpvcore/bstr.h
index ce9e029ea5..67e85655c4 100644
--- a/mpvcore/bstr.h
+++ b/mpvcore/bstr.h
@@ -92,6 +92,23 @@ int bstr_decode_utf8(struct bstr str, struct bstr *out_next);
// On error, -1 is returned. On success, it returns a value in the range [1, 4].
int bstr_parse_utf8_code_length(unsigned char b);
+// Return >= 0 if the string is valid UTF-8, otherwise negative error code.
+// Embedded \0 bytes are considered valid.
+// This returns -N if the UTF-8 string was likely just cut-off in the middle of
+// an UTF-8 sequence: -1 means 1 byte was missing, -5 5 bytes missing.
+// If the string was likely not cut off, -8 is returned.
+// Use (return_value > -8) to check whether the string is valid UTF-8 or valid
+// but cut-off UTF-8.
+int bstr_validate_utf8(struct bstr s);
+
+// Force the input string to valid UTF-8. If invalid UTF-8 encoding is
+// encountered, the invalid bytes are interpreted as Latin-1.
+// Embedded \0 bytes are considered valid.
+// If replacement happens, a newly allocated string is returned (with a \0
+// byte added past its end for convenience). The string is allocated via
+// talloc, with talloc_ctx as parent.
+struct bstr bstr_sanitize_utf8_latin1(void *talloc_ctx, struct bstr s);
+
// Return the text before the next line break, and return it. Change *rest to
// point to the text following this line break. (rest can be NULL.)
// Line break characters are not stripped.