boostorg / boostorg/program_options

Problems with displaying long option description with cyrillic characters

Đang mở
#24 2 bình luận 0 reaction 0 người được giao Xem trên GitHub
Ngôn ngữ chính
C++
Star
136
Fork
117
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

I'm having some weird issues with displaying long option description that contains cyrillic characters:

```
[program_options]$ ./example --help
Allowed options:
-h [ --help ] print usage message
-f [ --enforcewrite ] enforcewrite Всегда перезаписывать
файлы в директории с
преобразованной
политикой безопасност▒

```
Note that weird symbols at the description end.
Here's the code to reproduce it:

```
#include
using namespace boost::program_options;

#include
using namespace std;

int main(int argc, char* argv[])
{
string s;

options_description desc("Allowed options");
desc.add_options()
("help,h", "print usage message")
("enforcewrite,f", value(&s)->value_name("enforcewrite"),
"Всегда перезаписывать файлы в директории с преобразованной политикой безопасности");

variables_map vm;
store(parse_command_line(argc, argv, desc), vm);

if (vm.count("help")) {
cout << desc << "\n";
return 0;
}
}
```

Appearance of such symbols seems to depend somehow on the length of the text string associated with the option (including option name, default value and it's description). In my case I worked around the problem by increasing the column width.

program option version is: 1.62.0
OS: CentOS 7.1

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Hướng nghiên cứu

Start with the options_description help output and the add_options call shown in the reproducer, then run the example with the long Cyrillic description. Trace how the streamed help text wraps the option and check that the output ends without replacement symbols when the column width is unchanged. The workaround of increasing the column width provides a comparison case.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
cpp
Lĩnh vực
cli
Loại issue
Lỗi
Độ khó
3/5
Thời gian dự kiến
1-2 ngày
Mức độ hoạt động
Đình trệ
Độ rõ ràng
Khá rõ ràng
Mức phù hợp với người mới
35/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.