[
https://issues.apache.org/jira/browse/MINIFI-193?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15951567#comment-15951567
]
ASF subversion and git services commented on MINIFI-193:
--------------------------------------------------------
Commit a8de19653424454f8e6a889d89ec23e8f5dfa228 in nifi-minifi-cpp's branch
refs/heads/master from Marc Parisi
[ https://git-wip-us.apache.org/repos/asf?p=nifi-minifi-cpp.git;h=a8de196 ]
MINIFI-246: Adding tests that were used to find bug. Solved by MINIFI-193
MINIFI-246: Resolve second issue with provenance repository getting corrupt
This closes #72.
Signed-off-by: Aldrin Piri <[email protected]>
> writeUTF doesn't properly allow UTF-8 encoding
> ----------------------------------------------
>
> Key: MINIFI-193
> URL: https://issues.apache.org/jira/browse/MINIFI-193
> Project: Apache NiFi MiNiFi
> Issue Type: Bug
> Components: C++
> Affects Versions: cpp-0.1.0
> Reporter: marco polo
> Assignee: marco polo
> Priority: Blocker
> Fix For: cpp-0.2.0
>
>
> std::u16string should be used instead of std::string.
> The code that was copied and pasted into Provenance.cpp demonstrates this
> problem.
> {code:title=Provenance.cpp|borderStyle=solid}
> for (int i = 0; i < inLength; i++) {
> int c = str.at(i);
> {code}
> Since the return of std::string::at is actually a car our max size is 0-255;
> however, JAVA char is represented as a 16 bit unicode character whose value
> can actually be > 0x07ff. We lose the data in translation if we were to use
> these functions.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)