Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #9009 > unrolled thread

naming convention

Started byRoedy Green <see_website@mindprod.com.invalid>
First post2011-10-19 15:19 -0700
Last post2011-11-06 16:24 -0500
Articles 10 — 8 participants

Back to article view | Back to comp.lang.java.programmer


Contents

  naming convention Roedy Green <see_website@mindprod.com.invalid> - 2011-10-19 15:19 -0700
    Re: naming convention Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2011-10-19 15:40 -0700
    Re: naming convention markspace <-@.> - 2011-10-19 16:09 -0700
      Re: naming convention Lew <lewbloch@gmail.com> - 2011-10-19 18:53 -0700
        Re: naming convention markspace <-@.> - 2011-10-19 19:30 -0700
          Re: naming convention Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-10-20 06:42 -0300
        Re: naming convention Travers Naran <tnaran@gmail.com> - 2011-10-20 07:23 -0700
        Re: naming convention Tom Anderson <twic@urchin.earth.li> - 2011-10-20 20:42 +0100
        Re: naming convention Arne Vajhøj <arne@vajhoej.dk> - 2011-11-06 16:22 -0500
    Re: naming convention Arne Vajhøj <arne@vajhoej.dk> - 2011-11-06 16:24 -0500

#9009 — naming convention

FromRoedy Green <see_website@mindprod.com.invalid>
Date2011-10-19 15:19 -0700
Subjectnaming convention
Message-ID<iviu97l56qk00qhu8vtmb471l6slhv294v@4ax.com>
I write a lot of code of this form:

1. method that reads all files in a set one at a time
2. method the processes contents of one file, scanning for chunks
3. method that processes one chunk.

There are basically two types: read only and read-modify.

It should be a design pattern.

My question is, what naming convention do you use so that when methods
are listed alphabetically they group logically?

-- 
Roedy Green Canadian Mind Products
http://mindprod.com
It should not be considered an error when the user starts something
already started or stops something already stopped. This applies
to browsers, services, editors... It is inexcusable to 
punish the user by requiring some elaborate sequence to atone,
e.g. open the task editor, find and kill some processes.

[toc] | [next] | [standalone]


#9012

FromDaniel Pitts <newsgroup.nospam@virtualinfinity.net>
Date2011-10-19 15:40 -0700
Message-ID<NlInq.2903$cK3.2180@newsfe20.iad>
In reply to#9009
On 10/19/11 3:19 PM, Roedy Green wrote:
> I write a lot of code of this form:
>
> 1. method that reads all files in a set one at a time
> 2. method the processes contents of one file, scanning for chunks
> 3. method that processes one chunk.
>
> There are basically two types: read only and read-modify.
>
> It should be a design pattern.
>
> My question is, what naming convention do you use so that when methods
> are listed alphabetically they group logically?
>

Methods group logically if they are in the right class. Alphabetizing 
them within the class should have no effect on the logic of their 
grouping.  Alphabetizing them across classes is insanity.

[toc] | [prev] | [next] | [standalone]


#9013

Frommarkspace <-@.>
Date2011-10-19 16:09 -0700
Message-ID<j7nlb6$t1o$1@dont-email.me>
In reply to#9009
On 10/19/2011 3:19 PM, Roedy Green wrote:

> There are basically two types: read only and read-modify.
>
> It should be a design pattern.


I can't think of any design patterns for "read a bunch a files." 
However, what you're doing, with some additions or modifications, sounds 
suspiciously similar to map-reduce.  You might want to take a look at 
that to see if your use model could be adapted to fit the map reduce 
pattern.

It's not officially a design pattern, but it comes up often enough where 
I think perhaps it should be, at least for some specialized forms of 
processing data.

<http://hadoop.apache.org/common/docs/r0.20.2/mapred_tutorial.html>

[toc] | [prev] | [next] | [standalone]


#9014

FromLew <lewbloch@gmail.com>
Date2011-10-19 18:53 -0700
Message-ID<24535832.204.1319075629822.JavaMail.geo-discussion-forums@prfk19>
In reply to#9013
On Wednesday, October 19, 2011 4:09:24 PM UTC-7, markspace wrote:
> On 10/19/2011 3:19 PM, Roedy Green wrote:
> 
> > There are basically two types: read only and read-modify.
> >
> > It should be a design pattern.
> 
> 
> I can't think of any design patterns for "read a bunch a files." 
> However, what you're doing, with some additions or modifications, sounds 
> suspiciously similar to map-reduce.  You might want to take a look at 
> that to see if your use model could be adapted to fit the map reduce 
> pattern.
> 
> It's not officially a design pattern, but it comes up often enough where 
> I think perhaps it should be, at least for some specialized forms of 
> processing data.
> 
> <http://hadoop.apache.org/common/docs/r0.20.2/mapred_tutorial.html>

What makes something "officially" a design pattern?  Is there a Design Pattern Agency that issues official a DPA Seal of Approval?

If it's a pattern, and it is at the design level, isn't it perforce a design pattern, "officially" or not notwithstanding?

-- 
Lew

[toc] | [prev] | [next] | [standalone]


#9015

Frommarkspace <-@.>
Date2011-10-19 19:30 -0700
Message-ID<j7o14s$jc$1@dont-email.me>
In reply to#9014
On 10/19/2011 6:53 PM, Lew wrote:


> What makes something "officially" a design pattern?


Consensus?  Honestly I don't know.  I've never seen map-reduce called a 
"pattern" though so I'm being conservative in my terminology.  *I* don't 
know that it's a pattern, so I don't want to suggest that it is.


> If it's a pattern, and it is at the design level, isn't it perforce a
> design pattern, "officially" or not notwithstanding?


I don't think that calling everything that occurs frequently in 
programing a "pattern" is useful terminology.  For the term "pattern" to 
have meaning besides "thing" it has to have some sort of restricted or 
qualified domain.  And I haven't see a definition of pattern, besides 
what GOF put in their book.  So for now, I think it's not, until there's 
some sort of consensus about what to call these things.

And I do think that map-reduce deserves some sort of special 
nomenclature, but whether "pattern" is the best word I don't know. 
What's the difference between a pattern, an algorithm, and a system?  I 
don't rightly know.  Thinking about now just off the top of my head, the 
GOF design patterns were all fairly small in their scope, and map-reduce 
is a rather large system in its scope and use.

Anyway, for now map-reduce is special enough to have its own name: 
map-reduce.

[toc] | [prev] | [next] | [standalone]


#9019

FromArved Sandstrom <asandstrom3minus1@eastlink.ca>
Date2011-10-20 06:42 -0300
Message-ID<x2Snq.8407$xY3.4143@newsfe04.iad>
In reply to#9015
On 11-10-19 11:30 PM, markspace wrote:
> On 10/19/2011 6:53 PM, Lew wrote:
> 
>> What makes something "officially" a design pattern?
> 
> Consensus?  Honestly I don't know.  I've never seen map-reduce called a
> "pattern" though so I'm being conservative in my terminology.  *I* don't
> know that it's a pattern, so I don't want to suggest that it is.

You cannot read an article or book on concurrency, or yourself start
thinking about concurrency, without confronting the idea that many
algorithms lend themselves to data parallelism. With some low-level
implementation details like key-value pairs, that's all that map-reduce is.

Is a parallel programming approach as fundamental as "split the data up
into chunks, operate independently on each chunk to get an intermediate
result, then combine the results" worthy of being called a design
pattern? I sure hope not.

Unfortunately it has already happened. I can find at least one reference
book from Microsoft Press on Parallel Programming, to wit, "Design
Patterns for Decomposition and Coordination on Multicore Architectures",
where "data aggregation with map-reduce" is called a design pattern. One
of the authors is Ralph Johnson of GOF fame, which doesn't help (in fact
he's been working for some years on shoehorning design patterns into the
parallel programming space).

>> If it's a pattern, and it is at the design level, isn't it perforce a
>> design pattern, "officially" or not notwithstanding?
> 
> I don't think that calling everything that occurs frequently in
> programing a "pattern" is useful terminology.  For the term "pattern" to
> have meaning besides "thing" it has to have some sort of restricted or
> qualified domain.  And I haven't see a definition of pattern, besides
> what GOF put in their book.  So for now, I think it's not, until there's
> some sort of consensus about what to call these things.

The "restricted" or "qualified" domain for design patterns (and you're
quite right, a design pattern should be a reuseable solution to a common
problem within a given context) was originally behavioral, structural
and creational problems in the object-oriented space. Now they've gone
apeshit and added concurrency and security and business models and user
interfaces and...well, everything.

These days they _do_ call everything that "occurs frequently in
programming" a pattern of one sort or another. So - IMHO - the term
stopped being useful years ago. It used to mean a way of solving a
design problem in OO, drawn from a manageable set of some dozens of
solutions. Now you've got people telling you that data parallelization
or object/thread pools are patterns.

> And I do think that map-reduce deserves some sort of special
> nomenclature, but whether "pattern" is the best word I don't know.

I'm cool with calling it (map-reduce) "an unavoidably obvious way for
operating on data in chunks and combining the results". Human computers
probably did it a century ago or more. Hell, people solving various
problems with paper and pencil for hundreds of years have been doing
data parallelization.

I read one blog by a guy
(http://karticks.wordpress.com/2009/07/29/the-mapreduce-design-pattern-demystified/)
who has this to say:

"Over the last 5-6 years there has been quite a lot of buzz about the
Map/Reduce design pattern (yes, it is a design pattern)..."

and

"The key pattern in the above example is that a huge task is broken down
into smaller tasks, and each small task after it has finished produces
an intermediate result, and these intermediate results are combined to
produce the final result. That is the core of the Map/Reduce design
pattern."

God help us. _That_ is a design pattern? And Kartick (the author) has
summarized it well, incidentally, so there is no confusion here.

You may as well calling filtering lists a design pattern.

HINT: when someone protests that something is a design pattern, even
they know (maybe subconsciously) that there is a smell.

> What's the difference between a pattern, an algorithm, and a system?  I
> don't rightly know.  Thinking about now just off the top of my head, the
> GOF design patterns were all fairly small in their scope, and map-reduce
> is a rather large system in its scope and use.

Some specific implementations of map-reduce, perhaps the MapReduce
specialization of the general concept, maybe even using the specific
Hadoop implementation, _are_ large-scale. But I could do a useful pen &
pencil map-reduce operation example on a Java Map that would take a few
minutes and be very small-scale. Or maybe I'd just sum up the values in
an array by summing up parts of the array in turn, and summing the
intermediate results... :-)

> Anyway, for now map-reduce is special enough to have its own name:
> map-reduce.

And let's not call it MapReduce.

AHS

-- 
I tend to watch a little TV... Court TV, once in a while. Some of the
cases I get interested in.
-- O. J. Simpson

[toc] | [prev] | [next] | [standalone]


#9029

FromTravers Naran <tnaran@gmail.com>
Date2011-10-20 07:23 -0700
Message-ID<j7pat4$5s0$1@dont-email.me>
In reply to#9014
On 19/10/2011 6:53 PM, Lew wrote:
> What makes something "officially" a design pattern?  Is there a
> Design Pattern Agency that issues official a DPA Seal of Approval?

Of course!  The DPA spans the globe certifying design patterns and 
giving them their gold seal of approval. :-)

Sorry, I work in enterprise software and see a lot of so called 
"official" and "certified" crap in software vendor marketing material. :-)

Although, in a serious vein, isn't the Portland repository considered 
sort of official by a lot of design pattern folks?

[toc] | [prev] | [next] | [standalone]


#9047

FromTom Anderson <twic@urchin.earth.li>
Date2011-10-20 20:42 +0100
Message-ID<alpine.DEB.2.00.1110202040010.27998@urchin.earth.li>
In reply to#9014
On Wed, 19 Oct 2011, Lew wrote:

> On Wednesday, October 19, 2011 4:09:24 PM UTC-7, markspace wrote:
>> On 10/19/2011 3:19 PM, Roedy Green wrote:
>>
>>> There are basically two types: read only and read-modify.
>>>
>>> It should be a design pattern.
>>
>> It's not officially a design pattern, but it comes up often enough 
>> where I think perhaps it should be, at least for some specialized forms 
>> of processing data.
>
> What makes something "officially" a design pattern?  Is there a Design 
> Pattern Agency that issues official a DPA Seal of Approval?

Yes. It's called the Hillside Group.

I hope you haven't been using uncertified patterns. Their inspectors take 
that *very* seriously.

tom

-- 
Kein Mehrheit Fur Die Mitleid

[toc] | [prev] | [next] | [standalone]


#9679

FromArne Vajhøj <arne@vajhoej.dk>
Date2011-11-06 16:22 -0500
Message-ID<4eb6fab1$0$290$14726298@news.sunsite.dk>
In reply to#9014
On 10/19/2011 9:53 PM, Lew wrote:
> On Wednesday, October 19, 2011 4:09:24 PM UTC-7, markspace wrote:
>> On 10/19/2011 3:19 PM, Roedy Green wrote:
>>
>>> There are basically two types: read only and read-modify.
>>>
>>> It should be a design pattern.
>>
>>
>> I can't think of any design patterns for "read a bunch a files."
>> However, what you're doing, with some additions or modifications, sounds
>> suspiciously similar to map-reduce.  You might want to take a look at
>> that to see if your use model could be adapted to fit the map reduce
>> pattern.
>>
>> It's not officially a design pattern, but it comes up often enough where
>> I think perhaps it should be, at least for some specialized forms of
>> processing data.
>>
>> <http://hadoop.apache.org/common/docs/r0.20.2/mapred_tutorial.html>
>
> What makes something "officially" a design pattern?  Is there a Design Pattern Agency that issues official a DPA Seal of Approval?
>
> If it's a pattern, and it is at the design level, isn't it perforce a design pattern, "officially" or not notwithstanding?

The criteria must be whether the name and semantics are widely
agreed on.

Arne

[toc] | [prev] | [next] | [standalone]


#9680

FromArne Vajhøj <arne@vajhoej.dk>
Date2011-11-06 16:24 -0500
Message-ID<4eb6fb17$0$290$14726298@news.sunsite.dk>
In reply to#9009
On 10/19/2011 6:19 PM, Roedy Green wrote:
> I write a lot of code of this form:
>
> 1. method that reads all files in a set one at a time
> 2. method the processes contents of one file, scanning for chunks
> 3. method that processes one chunk.
>
> There are basically two types: read only and read-modify.
>
> It should be a design pattern.
>
> My question is, what naming convention do you use so that when methods
> are listed alphabetically they group logically?

Never try and put things alphabetically.

Regarding the names then:

readAllFiles
readOneFile
processChunk

seems rather obvious based on the descriptions.

Arne

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.programmer


csiph-web