Archive for the ‘Ruby’ Category

Rails Cookbook Released

Friday, January 19th, 2007

Rob Orsini’s Rails Cookbook has finally hit the store shelves. Go grab a copy because of how nice it makes you look:

Rob's Daughter Reading Father's Book

More from Rob here.

Multipart POST in Ruby

Wednesday, November 1st, 2006

In Merb is the new black Josh Susser mentions:

I also wrote a little client command line script in Ruby that wraps curl to upload the files to the web service. (I had to use curl because Ruby doesn’t have a simple solution for doing multipart file uploads.)

I ran into this once, and ended up writing a solution (for essentially the same problem) as a Multipart module. It’s ugly but functional, and almost all borrowed from here and Bill Stilwell.

[Update: See the comments for more useful versions]

Inherit from the Standard Library

Tuesday, September 19th, 2006

As always, Google manages to fail for even the stupidest programming queries because it ignores special characters ” < ", etc...

So, it turns out that I've never actually inherited from the standard library before. Time to get some stupid errors that make me look like a fool on Ruby-talk when I ask about them. Specifically:
~/ruby/lib/foohelper.rb:432:NameError:
uninitialized constant FooHelper::Logger

Huh?

irb(main):001:0> module Foo
irb(main):002:1> class Bar < Logger
irb(main):003:2> def self.baz(t); p t; end
irb(main):004:2> end; end
NameError: uninitialized constant Foo::Logger
from (irb):2
irb(main):005:0> module Foo
irb(main):006:1> require 'logger'
irb(main):007:1> class Bar < Logger
irb(main):008:2> def self.baz(t); p t; end
irb(main):009:2> end; end
=> nil
irb(main):010:0> Foo::Bar.baz("How to inherit from the stdlib")
"How to inherit from the stdlib"
=> nil

irb to the rescue and I didn’t even post to Ruby-talk, but missing ‘require’ made me feel pretty dumb…

Win32OLE + DRb – Windows = Fun

Wednesday, February 8th, 2006

Posted to the Boston.rb mailing list

Since we didn’t get to any code last night, I wanted to share one of the things that I’ve gotten a kick out of.

It sounds like quite a few of us have already discovered how nice DRb is for helping less-able machines do more interesting things. I’ve used it twice: once because I couldn’t make SSL connections with Net:HTTPS on Solaris 5.6 and once when I wanted to be able to use Word from *nix.

My Word solution consists of a few small parts in different places, a command-line program for human use, a little module to encapsulates what I wanted to do with Word, and a DRb server running on the Windows box.

Note: The following code is not intended to be a secure, elegant solution ready for production deployment–clean this up if you want to use it for real.

Requirements: A Windows box with Word that you can run Ruby on and is addressable. The Windows box and the calling boxen should share some drive that you know how to get to. Mine is just an NFS mounted drive. Some understanding of the Word object model is extremely useful.

This example explains converting Word (.doc) files into WordprocessingML (.xml, though I call them .wml) [the XML file format in Word2003] files.

Command line tool to convert on *nix:

===============================================

#!/usr/bin/env ruby
require 'drb/drb'
PORT = 2774   # Some open port
HOSTNAME = 'foo.bar.com'   # IP of Windows box
DRb.start_service

# Connect to the Windows box
drb = DRbObject.new(nil, "druby://#{HOSTNAME}:#{PORT}")

# Ask it to make sure Word is running
word = drb.start_word

ARGV.each {|f|
  # inelegant way of converting my *nix paths to something the
  # Windows box liked
  unix_filename = File.expand_path(f)
  win_filename = unix_filename.gsub(/\//, "\\")
  win_filename.sub!(/^\\work/, "R:")  

  # Call the transformation, macro, whatever
  resp = drb.wdtowml(win_filename)
  puts "Converted to WML file: #{resp}"
}
drb.quit

===============================================

My server for the Windows box:
===============================================

require 'drb'
require 'thread'
require 'drb/acl'
require 'wordhelper' # the module that does the work

PORT = 2774
HOSTNAME = 'foo.bar.com'

# Security?
acl = ACL.new(%w(deny all
                 allow localhost
                 allow zoo.bar.com
                 allow goo.bar.com)) # Some set of boxen you like
DRb.install_acl(acl)

# Let people talk to me, bind me to the Word module
DRb.start_service("druby://#{HOSTNAME}:#{PORT}", WordHelper::Word.new)

# Keep running
DRb.thread.join

===============================================

The WordHelper module, where the work is done:
===============================================

module WordHelper
  class Word
    require 'win32ole'

    WORD_HTML = 8  # Ugly, don't use
    WORD_XML = 11  # Much nicer, you should use this
    WORD_95 = 106  # Help old programs
    WORD_DOC = 0  # The regular filetype

    attr_reader :wd, :wrd

    def start_word
      @wd = WIN32OLE.new('Word.Application')
      # Win32OLE sometimes barf, so try to start Word
      # in two ways
      begin
        @wrd = WIN32OLE.connect('Word.Application')
      rescue WIN32OLERuntimeError
        @wrd = WIN32OLE.new('Word.Application')
      end

      # Set this to 0 if you want to run invisibly
      # Be warned: you'll end up with a lot of zombie Word
      # processes if you're not careful
      @wd.Visible = 1
      return @wd, @wrd
    end

    # Word to WordprocessingML (xml)
    def wdtowml(file)
      begin
        # Expect a proper Windows-ready filename
        doc = @wd.Documents.Open(file)
        new_filename = file.sub(/doc$/, "wml")
        doc.SaveAs(new_filename, WORD_XML)
        doc.Close()
        return new_filename
      rescue
        # Just fail blindly on errors
        @wd.Quit()
        raise "Word encountered an unknown error and crashed."
      end
    end

    # Almost the same method, just as an example
    def wdtohtml(file)
      begin
        # Expect a proper Windows-ready filename
        doc = @wd.Documents.Open(file)
        new_filename = file.sub(/doc$/, "html")
        doc.SaveAs(new_filename, WORD_HTML)
        doc.Close()
        return new_filename
      rescue
        @wd.Quit()
        raise "Word encountered an unknown error and crashed."
      end
    end

    def quit
      @wd.Quit()
    end
  end
end # of WordHelper Module

===============================================

Another example with the use of macros or the Ruby equivalent:

Now, if you know that your Word instance will always have a set of macros (from a template, say), you can call them thusly:
===============================================

    def wdrunmacro(file, macro)
      begin
        # Expect a proper Windows-ready filename
        doc = @wd.Documents.Open(file)
        @wrd.Run("TheMacroIAlwaysRun", doc)
        @wrd.Run(macro, doc)  # the macro name passed in
        doc.Save()
        doc.Close()
        return new_filename
      rescue
        @wd.Quit()
        raise "Word encountered an unknown error and crashed."
      end
    end

===============================================

The above suffers from relying on macros being available whenever the method is called. With a little work, you should be able to translate your VBA macros into Ruby code, callable from anywhere.

Here’s a stupid example that checks the first character of Body paragraphs following Heading 1 paragraphs for weirdness, deletes that first character, removes the all the character formatting from the Body paragraph and styles the paragraph Heading 2 (I said it was stupid..).

Note: This is written in a very VBAish way, which may or may not be good for you, since it’s a pretty direct mapping.
===============================================

def deletestupid(doc)
  doc.Paragraphs.each do |para|
    if para.Style.NameLocal.match(/Heading\s?1/)
      p = para.Next  # Won't work if this is the last para
      r = p.Range()  # So you can talk about characters
      if p.Style.NameLocal.match(/Body/)
        unless r.Characters.First.Text =~ /[ A-Za-z0-9]/
          # could also be r.Characters(1).Delete()
          r.Characters.First.Delete()  

          # Blast away character formatting
          p.Range.Font.Reset()

          # Apply a new paragraph style
          p.Style = doc.Styles("Heading 2")
        end
      end
    end
  end
end

===============================================

Why Does the Google Search API Suck?

Saturday, December 10th, 2005

First attempts

Ruby doesn’t have CPAN

I spent quite a bit of time Friday evening and this morning trying to get a simple Ruby script to pull search data from Google’s crappy search API. There is a standard library for SOAP/WSDL stuff for Ruby here. It is, like so many other potentially good Ruby libraries, almost totally undocumented.

I played around with that for a while and failed to get anything useful. After a little more searching, I found ruby-google on the RAA. It looked promising, specifically:

Ruby/Google offers a higher-level abstraction of Google’s SOAP-driven Web API. It allows you to programmatically query the Google search-engine from the comfort of your favourite programming language, as long as that’s Ruby.

The aim of the library is to make the details of the raw data structures returned by the Web API irrelevant, in the process making the API more accessible for everyday use.

After installing it on amartya, our development server, I tried using the thing. It barfed with some error. I then tried tweaking it for a bit but gave up because the thing hadn’t been updated since mid-2003.

More Annoyed

The rest of the evening and this morning progressed in the same way. Long story short: tried to get a Ruby version to work on 3 different machines (and OSes), gave up on Ruby.

Perl has CPAN

I switched to Perl and happily found CPAN modules that looked promising, specifically Net::Google .

Not if you haven’t got a good version or Perl

I then spent hours trying to install all of the dependencies for the CPAN meta-module on amartya before realizing that it was using 5.005_03!. After that, I gave up completely on amartya, tried on my Dreamhost machine, failed because I wasn’t root [yes, I know how to fix that but was too annoyed by this point], then failed on my iBook because I somehow screwed up the urllist to download from [yeah, I tried fixing that too].

Why Google?

Then I stopped and looked at Yahoo’s API. It worked out of the box (in Ruby). Here’s the basic code: (with Wordpress escaping the double quotes for some reason)

require 'rexml/document'
require 'net/http'
APP_ID = "whatever_you_asked_Yahoo_for"
query = "a%20search%20string"
url ="http://api.search.yahoo.com/WebSearchService/V1/webSearch?appid=#{APP_ID}&query=#{query}"
  response = Net::HTTP.get_response(URI.parse(url))
data_xml = REXML::Document.new(response.body)
data_xml.elements.each("ResultSet/Result") {|r|
  puts r.elements["Title"].text,
  puts r.elements["Url"].text,
  puts r.elements["Summary"].text
}

I wish I would have tried Yahoo in the beginning.