Talk:Subject-oriented programming
I jsu
Don't know if this is a copyvio or not, as I didn't check it out, but I do know it was copied from the IBM site, at least much of it. Zuiram 00:53, 27 April 2007 (UTC)
I just don't see how it differs from component oriented programming. --Zslevi (talk) 23:36, 8 January 2008 (UTC)
Deleted then recreated
This article was listed at WP:CP as a copyright infringement of http://www.research.ibm.com/sop/sopoverv.htm, an IBM page that is _not_ part of FOLDOC. I investigated and found that all versions, going back to the article's creation and first edit, were plagiarized from IBM. I had no choice but to delete the article. I created a new stub with the actual text from the FOLDOC article on subject-oriented programming instead of IBM's text. Thanks. KrakatoaKatie 04:32, 30 April 2008 (UTC)
But what does it mean?
It may be just be me, but I read the stub and while I know reasonably well what object oriented programming does, I now know nothing more about subject oriented programming. The stub is nice marketing material in its wooly wordsalad-ness, but doesn't seem to contain actual information. Anyone? 85.178.104.148 (talk) 15:41, 30 April 2008 (UTC)
- Indeed, the article provides very little insight, so I didn't get much out of it myself (and I have a grad. degree in CS, albeit not in PL). For starters, what is a subject in this paradigm? VG ☎ 13:36, 15 October 2008 (UTC)
How is this different from Aspect Oriented Programming (AOP)
That's my primary question. Is Subject Oriented Programming (SOP) an IBM term while AOP is from PARC? How are HyperJ and AspectJ different? I'm sure there are differences -- this is a young field of research and even better known terms like Aspect aren't very well defined. The IBM pages don't even mention AOP.
I also understand that IBM wants to use and popularize its own words, if only for trademark purposes.
So I guess we need more abstract examples of what a Subject is, and how it's different from an Aspect. And also some less abstract examples of how a Subject is expressed in HyperJ, contrasted with AspectJ.
Partial Answer
http://www.ccs.neu.edu/research/demeter/SOP/ provides some answers, although it still sounds like AOP. Here are some excerpts from that paper:
Adaptive Programming (AP) vs SOP: The unique feature which distinguishes AP from SOP is that in AP many of the join points are left implicit and are only specified explicitly if they are important. For example a traversal strategy "from A to B" can define implicitly any number of join points for the traversal methods which bring us from A to B. If we want to print tracing information during the traversal, we would write a visitor like "before * this.print()" which would exercise all the join points (* means: all classes in the traversal scope). But explicitly mentioned are only source A and target B.
What's a subject: A subject is a collection of class fragments whose class graph models its domain in its own subjective way. Subject composition combines subjects to produce new subjects combining the functionality of the sub-subjects.
SOP is better at isolation (than the comparative implementation of AP): A subject has an affinity to an adaptive program. While a subject deals with class fragments, an adaptive program deals with class-valued variables which are mapped later onto class fragments automatically generating the necessary glue code. While a subject has to deal with all involved class fragments explicitly, an adaptive program only talks about the important class-valued variables. After the mapping to classes, code will be generated automatically for the less important classes based on the information in the traversal strategies and the class graph.
FrickFrack (talk) 17:38, 9 April 2009 (UTC)
Another answer
Here's another take on the contrast between SOP and AOP (from http://www.cs.umd.edu/class/spring2003/cmsc838p/Design/aop.pdf):
8.4 Subjective Programming
A natural question to ask is whether subjective programming [5] is AOP or vice versa. We believe that AOP and subjective programming are different in important ways. Analogously to the way object-oriented programming supports automatic selection among methods for the same message from different classes, subjective programming supports automatic combination of methods for a given message from different subjects. In both cases, the methods involved are components in the AOP sense, since they can be well localized in a generalized procedure. It is even possible to program in either an object oriented style or a subjective style on top of an ordinary procedural language, without significant tangling. The same is not true of AOP. Thus, while the aspects of AOP tend to be about properties that affect the performance or semantics of components, the subjects of subjective programming tend to be additional features added onto other subjects. We believe that subjective programming is complementary to, and compatible with, AOP.
FrickFrack (talk) 17:37, 9 April 2009 (UTC)
Complete Replacement
Having encountered the stub and looked at the above discussion, I was compelled to try to write a more complete and annotated entry on the subject. I do not believe my doing so will cause offense to earlier editors, and have attempted to cite published material at any point that may seem questionable. I hope we can make further improvements from this base.CSProfBill (talk) 14:26, 15 September 2009 (UTC)