]>
Commit | Line | Data |
---|---|---|
9e832665 JS |
1 | #ifndef GIT_UTF8_H |
2 | #define GIT_UTF8_H | |
3 | ||
ef3ca954 EN |
4 | struct strbuf; |
5 | ||
396ccf1f JH |
6 | typedef unsigned int ucs_char_t; /* assuming 32bit int */ |
7 | ||
1640632b | 8 | size_t display_mode_esc_sequence_len(const char *s); |
44b25b87 | 9 | int utf8_width(const char **start, size_t *remainder_p); |
2bc1e7ec | 10 | int utf8_strnwidth(const char *string, int len, int skip_ansi); |
8a9391e9 | 11 | int utf8_strwidth(const char *string); |
9e832665 | 12 | int is_utf8(const char *text); |
677cfed5 | 13 | int is_encoding_utf8(const char *name); |
0e18bcd5 | 14 | int same_encoding(const char *, const char *); |
4621085b | 15 | __attribute__((format (printf, 2, 3))) |
c0821965 | 16 | int utf8_fprintf(FILE *, const char *, ...); |
677cfed5 | 17 | |
dde843e7 | 18 | extern const char utf8_bom[]; |
55454427 | 19 | int skip_utf8_bom(char **, size_t); |
dde843e7 | 20 | |
e0db1765 | 21 | void strbuf_add_wrapped_text(struct strbuf *buf, |
a94410c8 | 22 | const char *text, int indent, int indent2, int width); |
e0db1765 | 23 | void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len, |
98acc837 | 24 | int indent, int indent2, int width); |
a7f01c6b NTND |
25 | void strbuf_utf8_replace(struct strbuf *sb, int pos, int width, |
26 | const char *subst); | |
9e832665 | 27 | |
b45974a6 | 28 | #ifndef NO_ICONV |
b782bbab | 29 | char *reencode_string_iconv(const char *in, size_t insz, |
aab2a1ae | 30 | iconv_t conv, size_t bom_len, size_t *outsz); |
c7d017d7 | 31 | char *reencode_string_len(const char *in, size_t insz, |
b782bbab NTND |
32 | const char *out_encoding, |
33 | const char *in_encoding, | |
c7d017d7 | 34 | size_t *outsz); |
b45974a6 | 35 | #else |
c7d017d7 JK |
36 | static inline char *reencode_string_len(const char *a, size_t b, |
37 | const char *c, const char *d, size_t *e) | |
e654eb29 | 38 | { if (e) *e = 0; return NULL; } |
b45974a6 JH |
39 | #endif |
40 | ||
b782bbab NTND |
41 | static inline char *reencode_string(const char *in, |
42 | const char *out_encoding, | |
43 | const char *in_encoding) | |
44 | { | |
45 | return reencode_string_len(in, strlen(in), | |
46 | out_encoding, in_encoding, | |
47 | NULL); | |
48 | } | |
49 | ||
6cd3c053 KS |
50 | int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding); |
51 | ||
6162a1d3 | 52 | /* |
832c0e5e | 53 | * Returns true if the path would match ".git" after HFS case-folding. |
6162a1d3 JK |
54 | * The path should be NUL-terminated, but we will match variants of both ".git\0" |
55 | * and ".git/..." (but _not_ ".../.git"). This makes it suitable for both fsck | |
56 | * and verify_path(). | |
0fc333ba JK |
57 | * |
58 | * Likewise, the is_hfs_dotgitfoo() variants look for ".gitfoo". | |
6162a1d3 JK |
59 | */ |
60 | int is_hfs_dotgit(const char *path); | |
0fc333ba JK |
61 | int is_hfs_dotgitmodules(const char *path); |
62 | int is_hfs_dotgitignore(const char *path); | |
63 | int is_hfs_dotgitattributes(const char *path); | |
6162a1d3 | 64 | |
110dcda5 KN |
65 | typedef enum { |
66 | ALIGN_LEFT, | |
67 | ALIGN_MIDDLE, | |
68 | ALIGN_RIGHT | |
69 | } align_type; | |
70 | ||
71 | /* | |
72 | * Align the string given and store it into a strbuf as per the | |
73 | * 'position' and 'width'. If the given string length is larger than | |
74 | * 'width' than then the input string is not truncated and no | |
75 | * alignment is done. | |
76 | */ | |
77 | void strbuf_utf8_align(struct strbuf *buf, align_type position, unsigned int width, | |
78 | const char *s); | |
79 | ||
10ecb82e LS |
80 | /* |
81 | * If a data stream is declared as UTF-16BE or UTF-16LE, then a UTF-16 | |
82 | * BOM must not be used [1]. The same applies for the UTF-32 equivalents. | |
83 | * The function returns true if this rule is violated. | |
84 | * | |
85 | * [1] http://unicode.org/faq/utf_bom.html#bom10 | |
86 | */ | |
87 | int has_prohibited_utf_bom(const char *enc, const char *data, size_t len); | |
88 | ||
c6e48652 LS |
89 | /* |
90 | * If the endianness is not defined in the encoding name, then we | |
91 | * require a BOM. The function returns true if a required BOM is missing. | |
92 | * | |
93 | * The Unicode standard instructs to assume big-endian if there in no | |
94 | * BOM for UTF-16/32 [1][2]. However, the W3C/WHATWG encoding standard | |
95 | * used in HTML5 recommends to assume little-endian to "deal with | |
96 | * deployed content" [3]. | |
97 | * | |
98 | * Therefore, strictly requiring a BOM seems to be the safest option for | |
99 | * content in Git. | |
100 | * | |
101 | * [1] http://unicode.org/faq/utf_bom.html#gen6 | |
102 | * [2] http://www.unicode.org/versions/Unicode10.0.0/ch03.pdf | |
103 | * Section 3.10, D98, page 132 | |
104 | * [3] https://encoding.spec.whatwg.org/#utf-16le | |
105 | */ | |
106 | int is_missing_required_utf_bom(const char *enc, const char *data, size_t len); | |
107 | ||
9e832665 | 108 | #endif |