Manipulating an Array of Structs

I have data that I've extracted from a database, that I wish to pass to
a calling (external) piece of software through Drb.

The are a large number of data set formats, but an employee based
example might look something like:

ID Name Age
1 Mary Smith 23
3 Frank Zappa 52
19 Mary Jones 41

I'm trying to find a "nice" structure to pass this data around in, so
that it can be easily understood and manipulated.

I'm currently using an Array of Hashes so it looks something like:

[ { :id => 1, :name => "Mary Smith", :age => 23 }, { :id => 3, :name =>
"Frank Zappa", :age => 52 }, { :id =>19, :name => "Mary Jones", :age =>
41 } ]

or more nicely formatted

[
  { :id => 1, :name => "Mary Smith", :age => 23 },
  { :id => 3, :name => "Frank Zappa", :age => 52 },
  { :id =>19, :name => "Mary Jones", :age => 41 }
]

This is fine if I want to extract single pieces of information, but it's
clumsy to manipulate the whole array, for example, extract out all the
names, sort the array by age, create a new array containing employees
over 40. It's also inefficient as I'm repeating the labels on every record.

I realise I can do this by writing block code to process the array, but
I feel there must be a cleaner way to store and manipulate data of this
form in ruby. Something on the lines of Struct would be great to remove
the excessing labels, but Struct doesn't help with the array manipulation.

Suggestions would be really welcome, preferabling using standard
classes, but will look at extensions.

thanks,

Anthony Wright.

I don't see your issue with the "array manipulation". Fact is, that
if you have a collection of items you have to either iterate through
all to process and filter them or you need to create indexes which you
need to keep in sync with the base data (much the same way a RDBMS
does btw.).

We have Enumerable#map, #select, #reject and a few more methods which
work pretty well. If you use Struct or OpenStruct you can even use
map like this:

all_names = employees.map(&:name)

If find that succinct enough. And even with Hashes you get

all_names = employees.map {|emp| emp[:name]}

This is a bit more verbose but still not too way off I'd say. My 0.02EUR.

Kind regards

robert

···

2010/4/7 Anthony Wright <anthony@overnetdata.com>:

I have data that I've extracted from a database, that I wish to pass to
a calling (external) piece of software through Drb.

The are a large number of data set formats, but an employee based
example might look something like:

ID Name Age
1 Mary Smith 23
3 Frank Zappa 52
19 Mary Jones 41

I'm trying to find a "nice" structure to pass this data around in, so
that it can be easily understood and manipulated.

I'm currently using an Array of Hashes so it looks something like:
[
{ :id => 1, :name => "Mary Smith", :age => 23 },
{ :id => 3, :name => "Frank Zappa", :age => 52 },
{ :id =>19, :name => "Mary Jones", :age => 41 }
]

This is fine if I want to extract single pieces of information, but it's
clumsy to manipulate the whole array, for example, extract out all the
names, sort the array by age, create a new array containing employees
over 40. It's also inefficient as I'm repeating the labels on every record.

I realise I can do this by writing block code to process the array, but
I feel there must be a cleaner way to store and manipulate data of this
form in ruby. Something on the lines of Struct would be great to remove
the excessing labels, but Struct doesn't help with the array manipulation.

--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/

If you want to spare the client of that data to be performing the same
kind of work, you can build a class that provides those methods. For
example:

Employee = Struct.new(:id, :name, :age)

class EmployeeSet
  def initialize
    @employee_list =
  end
  def add emp
    @employee_list << emp
  end

  def all_names
    @employee_list.map {|e| e.name}
  end
  # and so on for all the method you would provide
end

list = EmployeeSet.new
list.add Employee.new(1, "Mary", 23)
#...
list.all_names

Jesus.

···

On Wed, Apr 7, 2010 at 6:39 PM, Robert Klemme <shortcutter@googlemail.com> wrote:

2010/4/7 Anthony Wright <anthony@overnetdata.com>:

I have data that I've extracted from a database, that I wish to pass to
a calling (external) piece of software through Drb.

The are a large number of data set formats, but an employee based
example might look something like:

ID Name Age
1 Mary Smith 23
3 Frank Zappa 52
19 Mary Jones 41

I'm trying to find a "nice" structure to pass this data around in, so
that it can be easily understood and manipulated.

I'm currently using an Array of Hashes so it looks something like:
[
{ :id => 1, :name => "Mary Smith", :age => 23 },
{ :id => 3, :name => "Frank Zappa", :age => 52 },
{ :id =>19, :name => "Mary Jones", :age => 41 }
]

This is fine if I want to extract single pieces of information, but it's
clumsy to manipulate the whole array, for example, extract out all the
names, sort the array by age, create a new array containing employees
over 40. It's also inefficient as I'm repeating the labels on every record.

I realise I can do this by writing block code to process the array, but
I feel there must be a cleaner way to store and manipulate data of this
form in ruby. Something on the lines of Struct would be great to remove
the excessing labels, but Struct doesn't help with the array manipulation.

I don't see your issue with the "array manipulation". Fact is, that
if you have a collection of items you have to either iterate through
all to process and filter them or you need to create indexes which you
need to keep in sync with the base data (much the same way a RDBMS
does btw.).

We have Enumerable#map, #select, #reject and a few more methods which
work pretty well. If you use Struct or OpenStruct you can even use
map like this:

all_names = employees.map(&:name)

If find that succinct enough. And even with Hashes you get

all_names = employees.map {|emp| emp[:name]}

This is a bit more verbose but still not too way off I'd say. My 0.02EUR.