<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div><br></div><span id="zwchr" data-marker="__DIVIDER__">----- On Jun 2, 2017, at 2:27 AM, craig harmer <charmster@gmail.com> wrote:<br></span><div data-marker="__QUOTED_TEXT__"><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">hi all,<br><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">has anyone looked at porting LTTng to <a href="https://en.wikipedia.org/wiki/Go_%28programming_language%29" target="_blank">Go</a> (AKA <a href="https://golang.org/" target="_blank">Golang</a>)?</div></div></blockquote><div><br></div><div>Not yet ! I'm glad someone is looking into it. :)<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Go is a language very similar to C, but it has intrinsic support for concurrency and better memory protection (at the expense of including garbage collection).  its from Google and is pretty hot these days for big data and "web scale" distributed systems.  the similarity to C is not surprising since two of the three authors were also involved in the development of UNIX in at AT&T in the 1970's: Rob Pike and Ken Thompson (Robert Griesemer is the third author).<br><br>Go is able to link with C object files, so implementing support for tracef(3) should not be very difficult. <br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br>but i want to have full support for user-defined tracepoint() events.  that looks to be much trickier since the LTTng tracepoint() functionality relies heavily on (some might say abuses) the C pre-processor, and Go does not have an equivalent of the C pre-processor.  however, i don't see an obvious reason why Go source files that contain tracepoints couldn't be run through the C pre-processor -- except that Go specific LTTng header files would be required.<br><br><a href="https://tour.golang.org/welcome/1" target="_blank">here is an example of "hello, world" in Go</a>.  (note the use of "import" rather then "#include").<br><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">i've spent more than a few hours looking at the C code generated by the C pre-processor trying to track down exactly why a tracepoint() definition is causing a compiler error, so i think i have an idea of just how hard it would be to development equivalent header files for Go + C pre-processor.  it may be the case that the Go "header files", once developed, would be compiler specific, i.e only work with <a href="https://golang.org/doc/install/gccgo" target="_blank">gccgo</a> (the gcc front-end for Go).<br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">anyway, i'm wondering if anybody has attempted this and/or what your thoughts would be.</div></div></blockquote><div>In the case of C/C++ code, using the C preprocessor got the job done without requiring any additional<br></div><div>dependency. Given the context you describe, perhaps it would be wise to consider introducing a dedicated</div><div>"lttng probe description" parser. The idea here would be to parse the tracepoint probe definitions and</div><div>translate those into native code for various languages (e.g. Golang).<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div>This would create a new lttng utility that would be required to to produce the language-specific files from</div><div>those descriptions. I would allow us to port the "tracepoint" concept to many more languages easily, and</div><div>not be so much tied to the C preprocessor anymore.<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div>So perhaps adding this new tool as a dependency that needs to be invoked prior to compilation might</div><div>not be too much of an issue ? I see it as being slightly similar to the role accomplished by Flex and<br data-mce-bogus="1"></div><div>Bison: they are required to translate from source files to an intermediary language, and then the<br data-mce-bogus="1"></div><div>resulting files can be included into the distribution source packages, so only those who aim at<br data-mce-bogus="1"></div><div>changing the source descriptions need to have the translation tool installed.<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div>Thoughts ?<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div>Thanks,<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div>Mathieu<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">--craig<br></div></div><br>_______________________________________________<br>lttng-dev mailing list<br>lttng-dev@lists.lttng.org<br>https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev<br></blockquote></div><br><div data-marker="__SIG_POST__">-- <br></div><div>Mathieu Desnoyers<br>EfficiOS Inc.<br>http://www.efficios.com</div></div></body></html>