version 0.3.29
[fms.git] / src / unicode / unicodeformatter.cpp
1 #include "../../include/unicode/unicodeformatter.h"\r
2 #include "../../include/unicode/utfconversion.h"\r
3 \r
4 std::wstring UnicodeFormatter::m_unicodenewline=L"\n";\r
5 std::wstring::value_type UnicodeFormatter::m_unicodewhitespace[]={0x0009,0x000A,0x000B,0x000C,0x000D,\r
6                                                                                                 0x0020,0x0085,0x00A0,0x1680,0x180E,\r
7                                                                                                 0x2000,0x2001,0x2002,0x2003,0x2004,\r
8                                                                                                 0x2005,0x2006,0x2007,0x2008,0x2009,\r
9                                                                                                 0x200A,0x200B,0x2029,0x202F,0x205F,\r
10                                                                                                 0x3000,0xFEFF};\r
11 \r
12 const bool UnicodeFormatter::LineWrap(const std::string &utf8input, const int linelength, const std::string &ignorechars, std::string &utf8output)\r
13 {\r
14         std::wstring wcstring=L"";\r
15         std::wstring wcignorechars=L"";\r
16 \r
17         if(UTFConversion::FromUTF8(utf8input,wcstring) && UTFConversion::FromUTF8(ignorechars,wcignorechars))\r
18         {\r
19 \r
20                 std::wstring::size_type currentpos=0;\r
21                 std::wstring::size_type lastnewlinepos=0;\r
22                 std::wstring::size_type whitespacepos=0;\r
23 \r
24                 while(currentpos+linelength<wcstring.length())\r
25                 {\r
26                         if(ignorechars.size()==0 || wcstring.find_first_of(wcignorechars,currentpos)!=currentpos)\r
27                         {\r
28                                 lastnewlinepos=wcstring.rfind(m_unicodenewline,currentpos+linelength);\r
29                                 whitespacepos=wcstring.find_last_of(m_unicodewhitespace,currentpos+linelength);\r
30                                 // newline found within line length - we don't need to wrap\r
31                                 if(lastnewlinepos!=std::wstring::npos && lastnewlinepos>=currentpos)\r
32                                 {\r
33                                         currentpos=lastnewlinepos+1;\r
34                                 }\r
35                                 // whitespace found within line length - erase whitespace and insert newline\r
36                                 else if((lastnewlinepos<currentpos || lastnewlinepos==std::wstring::npos) && whitespacepos!=std::wstring::npos && whitespacepos>=currentpos)\r
37                                 {\r
38                                         wcstring.erase(whitespacepos,1);\r
39                                         wcstring.insert(whitespacepos,m_unicodenewline);\r
40                                         currentpos=whitespacepos+m_unicodenewline.length();\r
41                                 }\r
42                                 // whitespace or newline not found within line length - force newline at line length\r
43                                 else\r
44                                 {\r
45                                         wcstring.insert(currentpos+linelength,m_unicodenewline);\r
46                                         currentpos+=linelength+m_unicodenewline.length();\r
47                                 }\r
48                         }\r
49                         else\r
50                         {\r
51                                 currentpos=wcstring.find(m_unicodenewline,currentpos+1);\r
52                                 if(currentpos==std::string::npos)\r
53                                 {\r
54                                         currentpos=wcstring.size();\r
55                                 }\r
56                                 currentpos++;\r
57                         }\r
58                 }\r
59 \r
60                 if(UTFConversion::ToUTF8(wcstring,utf8output))\r
61                 {\r
62                         return true;\r
63                 }\r
64 \r
65         }\r
66 \r
67         return false;\r
68 \r
69 }\r