Testing Ruby VALUES in C-extension.
-
@unknownuser said:
Visual Studio Express editions are free. Are you using any features in Ultimate which Express doesn't have? (VS2013 is really nice - I like it so much more than VS2010.)
And using the Test Explorer with the Google Runner extensions is also very nice for setting up unit tests.Ah, dang! I just looked it up, it's allowed to do commersial products with the express-version. Well, that's good to know though in any case.
I'm not bound to any features. This all for Sketchup development.
I might try 2013 later. It took quite a while to install 2010 and not without hassle..@unknownuser said:
Make will work. Any version of SketchUp that support the RubyStartup argument. (I don't recall when that was added.)
Right. I actually had 2013 and 2014(beta-tester version) installed.
So I can link to those.@unknownuser said:
You will get complaints about VS not finding debug symbols for SketchUp. You can ignore that. for mscms.dll, that's a MS component. If you enable the Microsoft Symbols Server it will load most of the PDBs:
Great! 1 step closer. I still get the PDB complaint but later, but VS seams to be loading a lot of symbols in the background now.
Should I locate the project directory in the "symbol pdb locations" ?
I don't know what I doing..@unknownuser said:
Ahhh, Greece. Man, that would have been nice...
You can't make it?
Doubt it. This "programming lifestyle" is limiting my budget.
-
I'm noticing a lot of features lacking in 2010 the more I get into it. So I installed VS 2013.
(It's quite annoying working with the lack of stl initiallizers in 2010 btw)Indeed I get a conversion promt when starting up Hello_world Project.
So I did convert.Thomthom, you said one should alter the Ruby headers.
Can I have some more info on that? I assume we are talking about ruby.h file included in external dependancies ? Or do you mean doing changes in the project properties.
In any case I'm a bit lost..Sorry about the noob questions
-
@jolran said:
Thomthom, you said one should alter the Ruby headers.
Can I have some more info on that? I assume we are talking about ruby.h file included in external dependancies ? Or do you mean doing changes in the project properties.
In any case I'm a bit lost..Yes, ruby.h and/or config.h. I don't recall exactly right now. But if I recall, one of the things where that Ruby define a "inline" macro that conflicts with VS2013.
@jolran said:
Sorry about the noob questions
No worries! I just learned this stuff myself and it's only due to my great colleagues helping me along. I'm still learning.
I'll try to go through the upgrade process again and make notes to what I had to change.
-
Check out the VS2013 branch in my private fork:
https://github.com/thomthom/ruby-c-extension-examples/tree/VS2013I just checked in a commit with some changes that should make it compile.
https://github.com/thomthom/ruby-c-extension-examples/commit/0d4090d47fc563754b57efcc003114e3973cabc7There might be other changes required as you pull in more libraries though.
-
Exellent!!
@unknownuser said:
But if I recall, one of the things where that Ruby define a "inline" macro that conflicts with VS2013.
Yeah, that's exactly what's happening. That also leads to hundreds of other sub-error messages.
I give it a try and report back!
Thanks again.
-
It worked! To make it simple for myself, I just launched your version..
I can now launch the debugger and Sketchup's correct version launch, all good to go.Just some rookie notes: (things that may be taken for granted by proffesionals )
- Working with the ruby console in debugg-mode, theres no need to require the module. Just call the C-extension functions.
* To switch release-version go into Configuration Manager (See pic below). One might think changing Release from 2.0 to 1.8 in the dropdown meny changes the project settings, But it don't(?). Not for me it diden't..EDIT: Scratch that. It worked after a project clean.
Thanks a million Thomthom!! Now it's only the small detail of adding code, left to do.
-
@jolran said:
Just some rookie notes: (things that may be taken for granted by proffesionals )
- Working with the ruby console in debugg-mode, theres no need to require the module. Just call the C-extension functions.
That's due to how the project is set up to launch SketchUp with the loading-helper that loads the extension. It's not automatic unless you configured the project to do so.
We need to add more info for the project. Please fill out issues on the GitHub bug tracker to help us keep track of this.@jolran said:
- To switch release-version go into Configuration Manager (See pic below). One might think changing Release from 2.0 to 1.8 in the dropdown meny changes the project settings, But it don't(?). Not for me it diden't..
When you change from the drop down menu that will change what is built. In order to build multiple go BUILT > Batch Build
-
Ah, post edited...
-
Yeah, sorry about that.
I was to exited. -
I might have mucked up the debug config with that VS2013 branch... Just looked at the diff of changes and something looks amiss. Just so you are aware.
I'm not sure I have time until next week to look into that. -
Ok, thanks for telling.
I havent tested it much yet. Will dig in more intensly after the weekend.
Anyway it seams to be working correctly when just calling functions from the C module in the Ruby console. -
So I finally managed to bring in 100 000 points convert them to C++ class and then convert back to Sketchup Point3d objects.
Timing the response back in Alex S-Ruby console clocks ~ 0.50 which is amazingly fast.
Did some other tests, bloody hell it's blitz..However if I clock a new "puts time" in the row after the C -callback. it gets increasingly
slower for each C-functioncall.
C-callback response still clocks about the same each time..Is it the Ruby garbage collector running ? Adding this amount of points aught to slow Sketchup down, I know..
So I take it one cannot rely on C-response when things are "ready" to go forth in Ruby ?
For ex if I expect an array as responce will there be an error in following code.
Or does not following code execute until the array is ready ?
(havent tested stuff on so many points yet)I don't think I'm creating a memory leak in C++ since I have seen the destructor activate during some tests. And this test is done within 1 function so.. Points in points out..
Note: I did this in debug-mode(SU 2013), so maybe that affects threading or something.
-
@jolran said:
Timing the response back in Alex S-Ruby console clocks ~ 0.50 which is amazingly fast.
Did some other tests, bloody hell it's blitz..@jolran said:
Note: I did this in debug-mode(SU 2013), so maybe that affects threading or something.
Debug builds are a lot slower than release as it execute a lot more debug code and doesn't have any optimizations enabled.
@jolran said:
However if I clock a new "puts time" in the row after the C -callback. it gets increasingly
slower for each C-functioncall.
C-callback response still clocks about the same each time..Is it the Ruby garbage collector running ? Adding this amount of points aught to slow Sketchup down, I know..
Hm... not sure. Might be. When I run performance tests in Ruby I tend to call GC.start at the beginning of my profiling to ensure the GC is reset before each test. Otherwise you have no idea when it will trigger.
@jolran said:
So I take it one cannot rely on C-response when things are "ready" to go forth in Ruby ?
For ex if I expect an array as responce will there be an error in following code.
Or does not following code execute until the array is ready ?
(havent tested stuff on so many points yet)I don't think I'm creating a memory leak in C++ since I have seen the destructor activate during some tests. And this test is done within 1 function so.. Points in points out..
Your tests, does it only create Point3ds, or are you also creating and erasing geometry?
-
Hi Thomas.
For that test I was sending in Ruby array with Sketchup Point3d's to a C++ function.
That function converted Ruby points to a simple C++ class representing Point3d.
That same function also converted back the C++ points to Sketchup Points.
So the return VALUE was a Ruby array of those points.
Not very useful, but interesting. Got to start somewhere...I use vectors as containers in C++, don't know if that is the way to go with Ruby C++-extensions. Vectors seam to be quite used though..
Do you use maps with Ruby hashes ? I havent tested yet. Vectors seams more flexible.What you say about Debug builds seams to hold true.
I managed to create an implementation for the points-indexing-triangulation I was talking about earlier, and ran that in my plugin compiled. Really fast compared to the Ruby version
It still has some quirks and needs refinements, but it was good enough to make a realistic comparison.@unknownuser said:
When I run performance tests in Ruby I tend to call GC.start at the beginning of my profiling to ensure the GC is reset before each test. Otherwise you have no idea when it will trigger
Ahhh yes. That's smart. Will try that, thanks.
Edit: Ehh duh! I wasent aware one could create breakpoints and step into the code while debugging in Sketchup. Most useful
-
@jolran said:
I use vectors as containers in C++, don't know if that is the way to go with Ruby C++-extensions. Vectors seam to be quite used though..
Do you use maps with Ruby hashes ? I havent tested yet. Vectors seams more flexible.Yes, vectors are your usual go-to container.
map and unordered_map is what one use instead of Ruby Hash. Unordered map is usually a little bit faster, but a C++11 feature.
set and unordered_set is similar to - surprise - Ruby Set.@jolran said:
Edit: Ehh duh! I wasent aware one could create breakpoints and step into the code while debugging in Sketchup. Most useful
One thing that cought me off guard is the breakpoints doesn't always work in Release due to compiler optimization. Visual Studio 2013 even has a nice profiler which let you get detailed profiling info of your C++ code. (Should do a quick tutorial on that once.)
Speaking of debuggers, you know taht from SU2014 you can hook up Ruby debuggers for Ruby code in SketchUp?
https://github.com/SketchUp/sketchup-ruby-debugger
It's so much nice to be able to set breakpoints and step than litter the code with puts. -
Btw, when you create a vector where you know the final number of item, call reserve to allocate enough memory in advance as you then avoid expensive memory reallocation as you populate the array. Even if you have only a rough estimate it's ok.
You can do something similar C++ std::vector<>.reserve with the Ruby C API by calling rb_ary_new2. You provide the number of final elements and it will allocate enough memory of the object up front.
-
@unknownuser said:
Visual Studio 2013 even has a nice profiler which let you get detailed profiling info of your C++ code. (Should do a quick tutorial on that once.)
Yes that would off course be very nice.
Realized this thread is staring to get really packed of usefull information. Unfortunately in some time it will be burried in the forum.
Maybe a C-extension sticky-thread or something similar wouldent hurt. Or maybe this old topic is being used for that purpose ?
http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=41077%26amp;p=363978One might not feel inclined to post silly C++ questions in that old thread.
Something like "Ruby C extensions for dummies" would be more approprioate. -
@unknownuser said:
One thing that cought me off guard is the breakpoints doesn't always work in Release due to compiler optimization. Visual Studio 2013 even has a nice profiler which let you get detailed profiling info of your C++ code. (Should do a quick tutorial on that once.)
Speaking of debuggers, you know taht from SU2014 you can hook up Ruby debuggers for Ruby code in SketchUp?
https://github.com/SketchUp/sketchup-ruby-debugger
It's so much nice to be able to set breakpoints and step than litter the code with puts.Well this keeps gets better and better. I did not know that.
Have been sending puts to ruby console from C++ but that wont work when stepping over code, so this sounds great.@unknownuser said:
You can do something similar C++ std::vector<>.reserve with the Ruby C API by calling rb_ary_new2. You provide the number of final elements and it will allocate enough memory of the object up front.
Handy! I do a lot of conversions so that will help. I'm not in a mode of optimizing code yet, but suppose best practices are worth picking up at an early stage.
I'm experiencing some problems in a loop here. Don't know if you can spot whats going on..
Have just included the important parts for brevity.I have a nested ruby array of points curves. The points are coming from a getter-method-call in a Ruby-class. The @points can be of vary length.
The problem is that RARRAY(curve_rbPoints)->len always gives the same length, so the code fails..
Is it because I'm hoisting the variable ?
I just found this bug so havent tested much yet..NOTE: I should mention it get's the correct length 1st time round.
edit: nope.// VALUE curves = [ curve, curve, etc ] // @points = [point3d, point3d, etc] const VALUE get_points = rb_intern("get_points"); //getter method for @points int curves_size = RARRAY(curves)->len; VALUE curve, curve_rbPoints; int rCrv_len, i; // Inside a loop for (i = 0; i < curves_size; i++) { curve = rb_ary_entry(curves, i); //My class Ec-curve instance" curve_rbPoints = rb_funcall(curve, get_points, 0); //Gets @points in current curves[index] rCrv_len = RARRAY(curve_rbPoints)->len; //WRONG LENGTH! //Nested for loop is coming based on rCrv_len length
-
@jolran said:
I have a nested ruby array of points curves. The points are coming from a getter-method-call in a Ruby-class. The @points can be of vary length.
The problem is that RARRAY(curve_rbPoints)->len always gives the same length, so the code fails..
Is it because I'm hoisting the variable ?
I just found this bug so havent tested much yet..NOTE: I should mention it get's the correct length 1st time round.
edit: nope.That only works with older Ruby I think, 1.8.6 or earlier. After that they changed the data structure so you should use the RARRAY_LEN macro. That macro doesn't exist on early Ruby so I conditionally define it:
#ifndef RARRAY_LEN #define RARRAY_LEN(x) (RARRAY(x)->len) #endif
When you look up info on Ruby C Extension programming make sure you check the date of the source. And refer to a recent version of README.EXT.
I also find a lot of clues in "Ruby MRI identifier search": http://rxr.whitequark.org/mri/ident
-
Ahhh. A solution perhaps
I'm running Sketchup 2013 in debug mode. So it should be running Ruby 1.8.6 though ?This has been a very annoying problem to solve. I'm clueless.
There's no error but irratic behavior with wrong values which makes it hard to track.
I was thinking it had something to do with me calling instance method from a class
sort of thing. The "curve" is an instance from a class I created and not a Sketchup curve, but I assume you got that part.I suppose I could make the Ruby array an accessor and then use instance var get, but I rather not.
Will try your code when I get to my workstation later.
Thanks!
Advertisement