<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Oct 19, 2017 at 10:20 PM, Manuel Klimek <span dir="ltr"><<a href="mailto:klimek@google.com" target="_blank">klimek@google.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><span class="gmail-"><div dir="ltr">On Thu, Oct 19, 2017 at 11:24 AM Sam McCall <<a href="mailto:sammccall@google.com" target="_blank">sammccall@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div><div class="gmail_extra"><div class="gmail_quote">On Oct 19, 2017 6:50 PM, "Chandler Carruth" <<a href="mailto:chandlerc@google.com" target="_blank">chandlerc@google.com</a>> wrote:<br type="attribution"><blockquote class="gmail-m_1380779799216190186m_-6809374048414095655quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div class="gmail-m_1380779799216190186m_-6809374048414095655quoted-text"><div dir="ltr">On Thu, Oct 19, 2017 at 3:48 AM Sam McCall <<a href="mailto:sammccall@google.com" target="_blank">sammccall@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">clangd communicates with an editor via JSON-RPC. It parses JSON with YAMLParser, which is awkward, and generates JSON with printf and friends, which is miserable. Much of LLVM does things this way, but clangd does it a lot.<div><br></div><div>I'd like to try replacing this with a JSON library. nlohmann/json[1] seems like a reasonable fit: C++11 with exceptions optional, simple build, MIT license.</div><div><br></div><div>I'd propose vendoring it under tools/clang/tools/extra/<wbr>clangd/nlohmann-json so there's no question of it "leaking" into runtimes as described in this thread[2].</div><div>This also means it wouldn't solve llvm's general JSON-parser problem :-)</div><div> </div><div>Any LLVM-level objections or concerns? (Whether that library is the right technical choice for clangd can be discussed elsewhere, I think)</div><div>If anyone wants to argue that we *shouldn't* bury it in clang/tools/extra/clangd, that's fine too!</div></div></blockquote><div><br></div></div><div>Generally, I feel like we have continued to find JSON and YAML uses in LLVM. I think it would be a shame to have more code in that space in the repository.</div><div><br></div><div>But that brings us to another problem: outside of tests, we really shouldn't add more third-party code with different licenses to LLVM. As a compiler, LLVM has rather unique licensing requirements. So while this might be "fine" inside of clangd, if it moves elsewhere (and in many ways it should!) it would become a problem. Worse, it might be easily missed, or accidentally end up being used elsewhere.</div></div></div></blockquote></div></div></div></div><div dir="auto"><div dir="auto">Fair enough - we do need JSON facilities in many places.</div><div dir="auto">I'm both surprised and unsurprised that licensing is a concern here :-)</div><div dir="auto"><br></div><div dir="auto"><div class="gmail_extra"></div></div></div><div dir="auto"><div dir="auto"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail-m_1380779799216190186m_-6809374048414095655quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div>I would personally be fairly reluctant to take this on unless there is a pretty huge reason why it is needed. For example, if we had a absolute need to do proper XML parsing and manipulation, the amount of code required for that would be untenable without using one of the existing XML libraries. LLDB for example actually does use an XML library IIRC.</div><div><br></div><div>I'm hoping that the problem domain here is substantially simpler and it is tenable (if never really appealing) to just roll our own....</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"></div>
</blockquote></div></div>
</blockquote></div></div></div></div><div dir="auto"><div dir="auto"><div class="gmail_extra">Of course, my first inclination was to start writing one, and I had to restrain myself!</div><div class="gmail_extra" dir="auto"><br></div><div class="gmail_extra" dir="auto">Happy to have a crack at this and start a bikeshed thread over the design.</div><div class="gmail_extra" dir="auto">My main concerns:</div><div class="gmail_extra" dir="auto"> - compromising ease-of-use to satisfy every use case in LLVM. In particular, I really want an eager parser rather than the streaming style of YAMLparser.</div></div></div></blockquote><div><br></div></span><div>Did you look at the one that I referenced that was already in LLVM at some point?</div></div></div></blockquote><div>Yes - it seems a little easier to use than YAMLParser (forward iterators rather than input iterators, easy to validate the whole document up front).</div><div>But the common things are still awkward, particular random access of object properties.</div><div>And the ownership model (everything owned by the Parser) means you can't use and compose JSON objects as value types.</div><div>(e.g. RequestContext::reply in <a href="https://reviews.llvm.org/D39098">https://reviews.llvm.org/D39098</a>, where ID is an arbitrary subtree of an earlier parsed document, and Result could/should be passed by value).</div><div>Something closer to nlohmann seems worthwhile to me even if allocations aren't optimal - but that might be a tough sell for a general LLVM support lib.</div><div> </div><div>On Thu, Oct 19, 2017 at 10:53 PM, Chandler Carruth <span dir="ltr"><<a href="mailto:chandlerc@google.com" target="_blank">chandlerc@google.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><span class="gmail-"><div dir="ltr">On Thu, Oct 19, 2017 at 11:07 AM Manuel Klimek <<a href="mailto:klimek@google.com" target="_blank">klimek@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div dir="ltr"><span style="color:rgb(33,33,33)">If compelling, could an alternative be to make it a build time dep for folks wanting to build clangd, as opposed to putting it in svn?</span></div></div></div></blockquote><div><br></div></span><div>FWIW, while I don't like this personally, I also don't see any real problem with this. </div></div></div></blockquote><div>Does this mean it somehow addresses the licensing issue? I don't really see how, but this is hardly my area.</div><div>It does seem pretty inconvenient. </div></div></div></div></div>