• Login
sketchucation logo sketchucation
  • Login
πŸ€‘ SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

[Tutorial] SketchUp Ruby C Extension

Scheduled Pinned Locked Moved Developers' Forum
176 Posts 16 Posters 25.9k Views 16 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    Dan Rathbun
    last edited by 5 Jan 2012, 20:04

    BTW your on Windows 7 ??

    Is the path:
    %(#BF0080)["C:/Program Files (x86)/Google/Google SketchUp 8/Plugins/SX_HelloWorld.so"]

    and what is the result of (at the console):
    puts $LOAD_PATH

    I'm not here much anymore.

    1 Reply Last reply Reply Quote 0
    • J Offline
      jefftrull
      last edited by 5 Jan 2012, 20:09

      @dan rathbun said:

      BTW your on Windows 7 ??

      That's right, Windows 7 Professional SP1

      @unknownuser said:

      Is the path:
      %(#BF0080)["C:/Program Files(x86)/Google/Google SketchUp 8/Plugins/SX_HelloWorld.so"]

      No, it's "C:/Program Files/Google/Google Sketchup 8/Plugins/SX_HelloWorld.so" (no "(x86)")

      @unknownuser said:

      and what is the result of (at the console):
      puts $LOAD_PATH

      
      puts $LOAD_PATH
      C;/Program Files/Google/Google SketchUp 8/Plugins
      C;/Program Files/Google/Google SketchUp 8/Tools
      nil
      
      

      Thanks!

      1 Reply Last reply Reply Quote 0
      • T Offline
        thomthom
        last edited by 5 Jan 2012, 20:45

        @jefftrull said:

        1. I can use this module OK in Ruby standalone

        Hm... it works in IRB, but not SketchUp?

        @jefftrull said:

        (whichever one I built with)

        Exactly what version of Ruby did you use to build the extension?
        Also - did you remember to modify the config.h file as described in the README?

        Thomas Thomassen β€” SketchUp Monkey & Coding addict
        List of my plugins and link to the CookieWare fund

        1 Reply Last reply Reply Quote 0
        • T Offline
          thomthom
          last edited by 5 Jan 2012, 20:48

          The error you report is mentioned in this article: http://apocryph.org/2007/06/16/totally_bullshit_ruby_extension_experience_windows/

          However, I did not experience such error... not really sure what the difference is here...

          Thomas Thomassen β€” SketchUp Monkey & Coding addict
          List of my plugins and link to the CookieWare fund

          1 Reply Last reply Reply Quote 0
          • D Offline
            Dan Rathbun
            last edited by 5 Jan 2012, 21:01

            @jefftrull said:

            @dan rathbun said:

            BTW your on Windows 7 ??

            That's right, Windows 7 Professional SP1

            @unknownuser said:

            Is the path:
            %(#BF0080)["C:/Program Files(x86)/Google/Google SketchUp 8/Plugins/SX_HelloWorld.so"]

            No, it's "C:/Program Files/Google/Google Sketchup 8/Plugins/SX_HelloWorld.so" (no "(x86)")

            So (just to be clear:

            1) You installed the 32bit version of Windows 7 ??

            2) Are you running Sketchup with the Google supplied "msvcrt-ruby18.DLL" (which is v1.8.6-p287,) or did you replace the "msvcrt-ruby18.DLL" library file in the Sketchup program dir, with the one that you built ??

            I'm not here much anymore.

            1 Reply Last reply Reply Quote 0
            • D Offline
              Dan Rathbun
              last edited by 5 Jan 2012, 21:14

              .. and did you try: require('SX_HelloWorld.so')
              (ie, specifying the extension, which should skip the search for a "SX_HelloWorld.rb" file.)

              I'm not here much anymore.

              1 Reply Last reply Reply Quote 0
              • J Offline
                jefftrull
                last edited by 5 Jan 2012, 21:23

                thomthom, thanks for your help. I've suddenly found a formula that works. The key thing is to use the Ruby built from the one-click installer you reference in the README http://rubyforge.org/frs/download.php/47082/ruby186-27_rc2.exe
                I hope it doesn't go away anytime soon (it's no longer listed on their index page) - I'm glad you had the direct link, because using either of the two Ruby builds I made from source (one VS2008, one VS2010) fails.

                To answer your questions:

                1. yes, it works in irb for all three Ruby builds without problems
                2. I did the config.h hack for the one-click version, but for the VS2008 and VS2010 I was able to compile the extension with the same version of VC++ I used to build Ruby itself, so it wasn't necessary... I think?
                3. All Ruby versions were 1.8.6-p287, chosen to match SketchUp
                4. The apocryph report relates to the need to embed a manifest into the .so file. Following that advice allowed me to compile under VS2008 - under VS2010 no manifest was produced (and its integration was apparently unnecessary)
                1 Reply Last reply Reply Quote 0
                • J Offline
                  jefftrull
                  last edited by 5 Jan 2012, 21:27

                  Thanks again for considering this problem of mine, Dan. As you can see from my previous message, it's now working, but I'm still not sure what was wrong.

                  @unknownuser said:

                  So (just to be clear:

                  1) You installed the 32bit version of Windows 7 ??

                  Looks like it. "system properties" says "32-bit operating system"

                  @unknownuser said:

                  2) Are you running Sketchup with the Google supplied "msvcrt-ruby18.DLL" (which is v1.8.6-p287,) or did you replace the "msvcrt-ruby18.DLL" library file in the Sketchup program dir, with the one that you built ??

                  That's an interesting question. I haven't changed anything in the Sketchup program dir, beyond copying the SX_HelloWorld.so into Plugins. What is the significance of those msvcrt* files?

                  Thanks,
                  Jeff

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    thomthom
                    last edited by 5 Jan 2012, 21:55

                    Ah, so you initially used a Ruby version you built yourself?
                    I don't really know what makes the difference there. I just tried to find a minimum work solution - so I started out with a pre-built Ruby.

                    @jefftrull said:

                    1. I did the config.h hack for the one-click version, but for the VS2008 and VS2010 I was able to compile the extension with the same version of VC++ I used to build Ruby itself, so it wasn't necessary... I think?

                    Dunno - you might not need it if you built Ruby yourself. The version you had might not have that check in it. With the pre-built version I used I had to remove that check otherwise it would not compile.

                    Thomas Thomassen β€” SketchUp Monkey & Coding addict
                    List of my plugins and link to the CookieWare fund

                    1 Reply Last reply Reply Quote 0
                    • D Offline
                      Dan Rathbun
                      last edited by 5 Jan 2012, 23:24

                      @jefftrull said:

                      That's an interesting question. I haven't changed anything in the Sketchup program dir, beyond copying the SX_HelloWorld.so into Plugins. What is the significance of those msvcrt* files?

                      It's THE Ruby interpreter that the Sketchup executable loads. (Copied from the pre-built v1.8.6-p287 binary package.)

                      The one that your full Ruby install (ruby.exe and rubyw.exe,) loads is in the "bin" subdir of the full install folder heirarchy.
                      see: Ruby Interpreter DLLs (Win32)

                      and making sure you saw this link list: [Info] C/C++ Ruby extensions & SketchUp plugins

                      I'm not here much anymore.

                      1 Reply Last reply Reply Quote 0
                      • J Offline
                        jefftrull
                        last edited by 6 Jan 2012, 01:04

                        Thanks again for the helpful information, Dan. I gathered from the "Ruby Interpreter DLLs" link that you can replace the interpreter used by Sketchup with a different one; indeed that seemed to work, but it made no difference in my ability to load the .so file. Still works OK in irb (when the compiler versions match), fails in Sketchup. The good news is it doesn't really matter - I have a working recipe now. The one-click binary is the only thing that's worked for me over all the combinations, and with that, either VS2008 or VS2010 works fine.

                        I'm off to turn this into a CMake recipe (this application is cross-platform); would anyone be interested in seeing that when it's done?

                        Cheers,
                        Jeff

                        1 Reply Last reply Reply Quote 0
                        • D Offline
                          Dan Rathbun
                          last edited by 6 Jan 2012, 06:26

                          Be aware that Mac Sketchup still distro's with Ruby v1.8.5 initial release.

                          I'm not here much anymore.

                          1 Reply Last reply Reply Quote 0
                          • T Offline
                            thomthom
                            last edited by 6 Jan 2012, 08:25

                            @jefftrull said:

                            I'm off to turn this into a CMake recipe (this application is cross-platform); would anyone be interested in seeing that when it's done?

                            Yes! If you want to add it to the existing project just let me know. I think you can just make a pull request anyway (though I've never used this feature.)

                            I know that Dana tried to set up a CMake project - which AFAIK failed under SU. So a lean clean CMake bare bone recipe would be very much welcome!

                            Thomas Thomassen β€” SketchUp Monkey & Coding addict
                            List of my plugins and link to the CookieWare fund

                            1 Reply Last reply Reply Quote 0
                            • J Offline
                              jefftrull
                              last edited by 8 Jan 2012, 18:59

                              Let's see how this works for people. Tested only under Windows, although I tried to make the analogous changes for OSX based on my reading of extconf.rb. This file is intended to live under "src" and will create targets for both extensions.


                              CMake control file for Sketchup Ruby C Extension

                              1 Reply Last reply Reply Quote 0
                              • T Offline
                                thomthom
                                last edited by 15 Jan 2012, 11:12

                                @jefftrull said:

                                Let's see how this works for people. Tested only under Windows, although I tried to make the analogous changes for OSX based on my reading of extconf.rb. This file is intended to live under "src" and will create targets for both extensions.

                                Sorry, haven't had time to look at this yet. I've got quite a list of things to do for the time being... 😞

                                Thomas Thomassen β€” SketchUp Monkey & Coding addict
                                List of my plugins and link to the CookieWare fund

                                1 Reply Last reply Reply Quote 0
                                • C Offline
                                  chyn2000
                                  last edited by 18 Jan 2012, 06:42

                                  Hey guys,

                                  So, I got the ruby extension process to work, but I seem to be running into one little catch... multithreading.

                                  FYI: I'm using Pelle's C with the options TBD suggested in his SUExt example. I'm on a Win 7 (64 bit) system (though hopefully that won't matter).

                                  I'm trying to use _beginthread, but using TBD's settings, it seems I have an unresolved symbol '_beginthread'.

                                  Just to let you know, I am kind of new to multithreading and DLLs. I have created threaded applications, but never a threaded dll.

                                  Taking an example program that I have gotten to compile and run as a standalone app (pelle's C option multithreaded (lib)), I add the libs, includes and functions required to make it a ruby extension and it suddenly can't resolve _beginthread.

                                  A couple of modifications to TBD's project settings and I get it to compile and even be recognized by the irb. However, it seems the second the thread tries to run, the whole irb closes.

                                  The settings I modified to "get it to work" was:
                                  Runtime library from multithread (dll) to multithread (lib)
                                  and turn off "Omit default library in object files"

                                  Any ideas?

                                  Thanks,
                                  Reg

                                  
                                  // general Windows
                                  #pragma comment(lib, "kernel32.lib")
                                  #pragma comment(lib, "gdi32.lib")
                                  #pragma comment(lib, "user32.lib")
                                  #pragma comment(lib, "shell32.lib")
                                  #pragma comment(lib, "advapi32.lib")
                                  
                                  // Ruby
                                  #define HAVE_ISINF 1  // isinf macro redefinition workaround
                                  #pragma comment(lib, "msvcrt-ruby18.lib");
                                  
                                  // DLL
                                  #pragma comment(lib, "crt.lib");
                                  
                                  #include <stdio.h>
                                  #include <windows.h>
                                  #include <process.h>         // needed for _beginthread()
                                   
                                  // Ruby headers 
                                  #include "ruby.h"
                                  
                                  void  silly( void * );       // function prototype
                                  
                                  // De fining a space for information and references about the module to be stored internally
                                  VALUE KMRH = Qnil;
                                  
                                  int j = -1;
                                  
                                  // our function
                                  VALUE method_display_model(VALUE self, VALUE input)
                                  {
                                      // Our program's first thread starts in the main function.
                                      printf( "Now in the main function.\n" );
                                  
                                      // Let's now create our second thread and ask it to start
                                      // in the silly() function.
                                  //    _beginthread( silly, 0, (void*)12 );  //Commented out to see if the program would stay alive and it does
                                  
                                      // From here on there are two separate threads executing
                                      // our one program.
                                  
                                      // This main thread can call the silly() function if it wants to.
                                  	while(j != 0)
                                  	{
                                      	silly( (void*)j );
                                  		j--;
                                  	}
                                  
                                      Sleep( 10000 );
                                  
                                  	int i = NUM2INT(input);
                                  	return INT2NUM(i + 1);
                                  }
                                  
                                  // The initialization method for this module
                                  void Init_KMRH(void)
                                  {
                                  	KMRH = rb_define_class("KMRH", rb_cObject);
                                  	rb_define_method(KMRH, "display", method_display_model, 1);
                                  }
                                  
                                  
                                  void  silly( void *arg )
                                  {
                                  	int k = 10;
                                  	while(k-- != 0)
                                  	{
                                  //    	printf( "The silly() function was passed %d\n", (INT_PTR)arg );
                                      	printf( "The silly() function was passed %d\n", k );
                                  	}
                                  }
                                  
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • T Offline
                                    thomthom
                                    last edited by 18 Jan 2012, 08:19

                                    That's way beyond me. I've not dealt with threading at all. But I'll be keeping an eye on this as it something I might want to do in the future.

                                    Thomas Thomassen β€” SketchUp Monkey & Coding addict
                                    List of my plugins and link to the CookieWare fund

                                    1 Reply Last reply Reply Quote 0
                                    • C Offline
                                      chyn2000
                                      last edited by 18 Jan 2012, 15:40

                                      So, I have to apologize for wasting your time...

                                      First thing I need to do (yet again) is RTFM.

                                      The answer to threading is incredibly simple:
                                      _beginthread( silly, 0, (void*)12 );

                                      becomes

                                      rb_thread_create( silly, (void*)12);

                                      found it on:
                                      http://ruby-doc.org/docs/ProgrammingRuby/html/ext_ruby.html

                                      So, if you will excuse me, I need to go beat myself half to death...

                                      1 Reply Last reply Reply Quote 0
                                      • T Offline
                                        thomthom
                                        last edited by 18 Jan 2012, 15:52

                                        You will not get any joy from using Ruby threads. They are "green" threads. It's just Ruby dividing up the tasks itself - not the system. So making a thread in Ruby will not prevent SU from freezing.

                                        Link Preview Image
                                        Parallelism is a Myth in Ruby - igvita.com

                                        favicon

                                        (www.igvita.com)

                                        Thomas Thomassen β€” SketchUp Monkey & Coding addict
                                        List of my plugins and link to the CookieWare fund

                                        1 Reply Last reply Reply Quote 0
                                        • D Offline
                                          Dan Rathbun
                                          last edited by 18 Jan 2012, 18:06

                                          And Daniel Berger's win32-thread package that wraps native threads is still Alpha and unstable (AFAIK.)

                                          I'm not here much anymore.

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 3
                                          • 4
                                          • 5
                                          • 6
                                          • 7
                                          • 8
                                          • 9
                                          • 4 / 9
                                          4 / 9
                                          • First post
                                            78/176
                                            Last post
                                          Buy SketchPlus
                                          Buy SUbD
                                          Buy WrapR
                                          Buy eBook
                                          Buy Modelur
                                          Buy Vertex Tools
                                          Buy SketchCuisine
                                          Buy FormFonts

                                          Advertisement