Slashdot Log In
IBM Offers to Help Sun Open Up Java
Posted by
michael
on Thu Feb 26, 2004 11:35 AM
from the with-friends-like-these dept.
from the with-friends-like-these dept.
dave writes "ESR has opened the issue of
pressuring Sun to open source Java, and today IBM throws in their own
commitment toward this end. IBM has published an open letter to
Sun, proposing that the two companies collaborate on an independent project
to open source Java, saying that IBM is ready to provide technical resources
and code for the open source Java implementation while Sun provides the open
source community with Sun materials, including Java specifications, tests and
code."
Related Stories
[+]
Java To Be Opened For Christmas? 243 comments
MBCook writes "At the Oracle OpenWorld conference, Sun's CEO Jonathan Schwartz announced on Wednesday morning that Java would be opened within 30-60 days, which would would mean about Christmas Day at the latest. Sun first announced they would do this back in May at JavaOne but didn't give a date. We've seen rumblings before on this topic. Schwartz also commented on the companies Sun Fire servers, Sun's relationship with Oracle, and general trends."
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
How nice of IBM.. (Score:5, Insightful)
Just playing Devil's Advocate here: IBM sounds touchy-feely about open source but how would they react if Sun were to offer to help IBM open up AIX?
Re:How nice of IBM.. (Score:5, Interesting)
Just playing Devil's Advocate here: IBM sounds touchy-feely about open source but how would they react if Sun were to offer to help IBM open up AIX?
Second thing... bad example, since IBM has already released stuff from AIX as OSS (see the whole SCO vs. IBM debacle)... and they could never open-source the whole thing, because of licensing issues for the base SysV stuff it's built on.
Unless IBM was to buy SCO... in which case, who knows, AIX might just get open-sourced.
Parent
Re:How nice of IBM.. (Score:5, Informative)
This is what the FUDsters would have us believe, but it's not true. As Eben Moglen, General Counsel for the FSF, has repeatedly pointed out [wikipedia.org], the GPL is a license, not a contract.
One of the consequence os this is that you can't force someone to open up their own code if they link against GPL'ed code in violation of the license. At most, you can force them to stop using the GPL'ed code.
See this lengthy rebuttal [groklaw.net] by Pamela Jones of Groklaw fame, or this [lwn.net] more accessible, shorter version.
Ulrik
Parent
Re:How nice of IBM.. (Score:5, Insightful)
Nevertheless, I just dont understand what opening Java is supposed to mean? ANSI-Java? I don't get it, anyone can make their own JVM and release it as a Java JVM long as it conforms to the JLS right!? IBM has already done this right?
Parent
Re:How nice of IBM.. (Score:5, Interesting)
Sure, cloning Swing and many of the other massive libraries in recent JDK versions is a mammoth undertaking and life would be a great deal easier for everyone if Sun would open up the reference implementation. But don't discount the work of the people who are already doing it - they're further along than you think!
(BTW, the reason those URLs point to kaffe.org is just because my own domain for them expired; kaffe.org graciously agreed to host the files, but the results are independently generated and not biased in favor or against any of kaffe's "competitors". Having said that, Kaffe is another project that's made leaps and bounds recently. There are, in fact, multiple completely Free/Open Source implementations of Java now that can run many high-profile Java apps, including Eclipse and Tomcat)
Parent
Re:How nice of IBM.. (Score:5, Interesting)
If I were at Sun, one of my concerns would be which of their development projects to open, and when. "Java" isn't just Java 2 Standard Edition - the Enterprise Edition and Mobile/Wireless Edition have lives of their own; then there's (still) Jini and all their XML stuff. Sun is sinking cash into lots of different efforts, trying to establish Java in market niches (like mobile phones) and building in tool support, documentation, etc. Throwing the doors open and letting the world at their code base may not be the smartest thing at the moment (esp. if there's licensed IP in there somewhere that they need to go negotiate to open, or remove).
I'd like to see them phase in open-source. Give 'em six months or so for the 3 major "platforms", including all the java.* and javax.* packages, then another six months for the com.sun.* packages - with an expectation that other players would start working on them immediately. After that, every new thing they do should be opened no later than beta... and the JCP should allow participants to collaborate on implementations at the source-code level, so JCP members could work in semi-privacy until the code got fully opened at their beta release.
But that's just an idea....
Parent
Re:How nice of IBM.. (Score:5, Informative)
I HAVE written a VM from scratch, and worked on Sun and IBM's Virtual Machines. I can tell you from experience that writing a VM is definately not a trivial task. In fact, it is probably harder than the libraries. The libraries are by definition Java code. The major problem is the sheer size of them.
A modern VM on the other-hand, covers a wide range of techniques. Writing an efficient thin-locking implementation is far from trivial - the code is extremely complex, and even a slight mistake can lead to race conditions, leading to unexpected behaviour which is very difficult to track down.
Likewise, a modern garbage collector is an advanced field in itself (e.g. parallel collectors, generational collectors, etc.). Again, a simple mistake can take weeks to find.
Have you also forgotten about the JIT? Or more accurately a DAC (dynamic adaptive compiler). Whereas a standard compiler can spend as long as it likes optimising the code and be slow as hell, a modern VM must profile the code on the fly, and transfer control between compiled and interpreted modes efficiently. Again, not trivial.
Even following the spec is non-trivial. There's enough grey areas to cause a VM implementor to pull their hair out.
Sun and IBM have large teams working on these VM's, many from research backgrounds and with PhDs (including me). Thanks for calling us all monkeys.
Parent
Re:How nice of IBM.. (Score:5, Interesting)
Not "any monkey" can write a VM. They're non-trivial (just ask the Kaffe folks), and IBM has several irons in the fire. As well as licensing Sun's VM (and improving it vastly for their customers) they also have their own VM under development, entirely free of Sun IP.
On the issue of class libraries, you're also nearly right. Swing would be hard work, and pointless. There's a reason that eclipse [eclipse.org] doesn't use Swing... IBM isn't interested in it - it sucks.
IBM also has their own set of class libraries under development - entirely free of Sun IP.
So, in my opinion, this is just a huge red herring. IBM has enough projects under heavy development to release a completely open-source VM and set of class libraries within 18 months if they want to.
Personally, I think it's going to happen, and this is them tapping on Sun's window going "if you don't do it, we will, and we'll do it without using your IP".
Parent
Re:How nice of IBM.. (Score:5, Insightful)
Sun is trying to have it both ways- claim their language will "free" them from the clutches of MS while trying to clutch the language specification/certification for its own.
Parent
Re:How nice of IBM.. (Score:5, Insightful)
A gesture is met with a gesture and we all win.
It will never happen.
Parent
Re:How nice of IBM.. (Score:5, Interesting)
They say are trying to build a community around Java and it seems to me that given those two points Sun really should release Java to the open source community.
I think this really would give Java a HUGE boost over
Besides, JBoss and Linux distros make money on packaging and supporting Free but hugely complex systems.
Parent
Re:How nice of IBM.. (Score:5, Funny)
Can you opensource DB2, we don't have a database at Sun so this would really help
Parent
Why doesn't IBM open source it's own VM? (Score:5, Informative)
Re:Why doesn't IBM open source it's own VM? (Score:5, Interesting)
*IBM is ready to provide technical resources and code*
Parent
Re:Why doesn't IBM open source it's own VM? (Score:5, Insightful)
Parent
Not said... (Score:5, Funny)
[Open Source Java or you risk relegating it, while .NET on commodity hardware gobbles up both the development and hardware markets to Sun's eventual doom. Work with us
and Java will be strong as many eyes and hands (ours included) clean it up and expand it where need and demand lay. Ignore this request and we'll pick it up at your bankruptcy auction.
Regards,
Rod
Open letter (Score:5, Interesting)
Nice. (Score:5, Insightful)
As for Sun, it's almost lose, lose. If Sun goes for it, they lose complete control over Java, which is a cash crop for them. If they don't, they look stingy to the open source community, and alienate a lot of us.
Poor sun, nice IBM. .
Re:Nice. (Score:5, Insightful)
If they dual license it, then they get to retain complete control over the commercial fork of it. Sun would be unique in that no other entity would have the rights that Sun does to use Java other than under the GPL.
I think that would keep Sun pretty firmly in the driver's seat.
If IBM is serious about this and Sun refuses to play ball, then I'd be surprised if IBM didn't suddenly decide to champion the Kaffe project [kaffe.org] or perhaps even start their own open Java system.
IBM, being, well, IBM, will have an open Java one way or another, if that's really what they want.
Parent
What about gjc? (Score:5, Interesting)
Re:What about gjc? (Score:5, Insightful)
IBM doesn't NEED Sun's help with providing the software, but without a commitment from Sun IBM would be in the same situation with them as with Microsoft: They can change the specs whenever they feel like it to keep their competitive advantage over other tools.
Frankly I see IBM's comments as an ingenious PR move. Either Sun opens Java, and it will be a great PR win for IBM and great for business, or Sun doesn't in which case it's a big PR win for IBM towards customers (look guys, we're promoting open standards, but Sun just doesn't want to play ball - do you REALLY want to get tied in to a company like that?)
Parent
Re:What about gjc? (Score:5, Informative)
I'd recommend looking at this page [ibm.com] for more info on IBM + Java + OSS.
IBM has already written at least one high-quality JVM implementation which is not OSS because of contracts that IBM has with Sun. Of course, suggesting that IBM work on GCJ and Classpath has some merit in and of itself. But realize that IBM has sunk untold man-hours and dolars into developing its own JVM - resources that they now wish to contribute to the community at-large as OSS. I personally can't blame them if they didn't wish to spend a similar amount of resources on GCJ and Classpath when what they've got works.
Perhaps with this Open Letter IBM is looking for permission to open up the code. Perhaps they are looking to collaborate with Sun to create an even better project. Perhaps this is all just marketing/PR bs. Time will tell.
Dom
Parent
Re:What about gjc? (Score:5, Informative)
Parent
ESR: not so bad after all? (Score:5, Insightful)
Re:ESR: not so bad after all? (Score:5, Funny)
Sorry, forgot, I'll just check your webpage for info.
Parent
Licensing issues (Score:5, Interesting)
Listen to Ganesh Prashad (Score:5, Informative)
Ganesh very clearly demonstrates how Sun will lose J2EE's 'lingua franca of business logic' status to
Missing the point (Score:5, Insightful)
Things are tight fisted because Sun wants a solid, CONSISTANT platform. This was a MAJOR REASON for the lawsuit that they fought and WON against Microsoft and their VM implementation.
Opening it up not only kills that idea (anyone can alter the platform specifications for whatever selfish reasons), but it would undermine all of the fight they have put up at this point.
Re:Missing the point (Score:5, Insightful)
This will only happen (in a bad way) if Sun are neglecting Java development and not doing things people want.
(I do personally belive Java could stand some cleaning up, but it doesn't have to happen overnight)
Parent
Re:Missing the point (Score:5, Insightful)
Parent
Re:Missing the point (Score:5, Insightful)
And, open-source software would be inconsistent because.......?
Inconsistent, like Apache [apache.org]?
or, perhaps, MySQL [mysql.org]?
I get it. You mean inconsistent like this [kernel.org], this [postgresql.org], or this [openoffice.org]?
Oh, the above aren't languages, like php [php.net] or perl [perl.org]?
Eh, wait a minute. These are all *successful* projects, that are consistent?
If Sun were to open Java sources, it would be trivial to introduce a license (EG: GPL) that would largely offset forking of the codebase. Their best bet would be to pull a "QT [trolltech.com]" - open the source as GPL, then sell commercial licenses.
Parent
Java is not PHP (Score:5, Interesting)
You mention Apache, MySql, Perl, PHP, and so on, but none of these projects are at risk of a malicious fork the way Java is.
We all know what Microsoft did with Java the first time around -- added in a bunch of MS-only extensions and more subtle incompatibilities, then shipped their version with every version of Windows, and put out an IDE that encouraged the use of their proprietary extensions. They also put a lot of work into making their JVM the fastest one out there, which further encouraged its use (and misuse).
Why in the world wouldn't they do that again, given this golden opportunity? Dual licensing, GPL restrictions, etc., don't help from what I can see.
Okay, under the GPL they would have to distribute it for free -- no problem, that's what they were doing before. Ah, and they'd have to release the source -- again, no problem, since it's all Windows-only extensions that cannot be supported in a cross-platform Java (do you think Sun really wants to be playing catch-up with MS, anyway?).
Java on the server would still be safer than on the client. MS could add in extensions to encourange interaction with
It wouldn't matter if they couldn't call it "Java". It would simply be the same old jview.exe that ran when you hit a JNLP link, applet, or application JAR.
Am I missing something here? I'm not neccessarily against open-sourcing Java (because I'd feel slightly safer, and I think the GUI libs would get a boost), but I think this needs to be addressed first.
Parent
Whoa... (Score:5, Funny)
I'm impressed; unless he has an "in," of course...
MySQL License (Score:5, Interesting)
Open source Java already exists. (Score:5, Informative)
GNU Compiler for Java [gnu.org] is available from the FSF. There is also work to make a Mozilla plugin for using GCJ to allow Java Applets to run.
Kaffe [kaffe.org] PersonalJava 1.1 compliant Java.
Kaffe once shipped with RedHat. GCJ currently ships with most major linux distributions right now.
Open Source dangers... (Score:5, Interesting)
The problem they're afraid of is Microsoft embracing & extending Java. The ability that Sun had to sue Microsoft and force them to cease their modifications would no longer exist.
Now imagine Bill Gates at home in his Medina mansion.. (only 10 minutes away from here actually... sad...). Everywhere he tries to push
I don't know. And for the time being, I'm fine not knowing...
Re:Open Source dangers... (Score:5, Interesting)
That's what the GPL is for. Who cares if MS modifies it if their modifications have to be open source?
Parent
Sun & IBM have a good alliance (Score:5, Interesting)
But does IBM honestly think that open-source
is the best path to creating successful software?
If so, how about an open-source WebSphere & DB2?
It would be great if IBM could use its muscle
to move Java forward in the areas that need it,
like advocating for open-source J2EE servers,
and ideally more sensible ways to deploy J2EE.
Anyone here playing with Java 1.5?
Sun made things more sensible like
autoboxing and generics and loops--
how about making J2EE more sensible?
IMHO, Sun & IBM both need this to happen
before MS gets momentum on the big servers.
Cheers, Joel
Like Fidel? (Score:5, Funny)
Just wondering... (Score:5, Insightful)
I mean, these are Open Standards right? So the Language spec is not really OSS, but I can down load it from ANSI and implement it if I like, right?
So, why doesn't somebody just get the freely available Java spec and implemented? Isn't that what the GCJ is doing? Isn't that Open Source? Why doesn't everyone whine to IBM to Opensource THEIR implementation of the spec, or BEA JRockit or Apple?
Sun acts as the keeper of the flame for the various Java specs, in concert with the JCP (which is an open organization BTW). Those specs are free to read and implement. FWIW, I think Sun has done a great job of keeping Java open and compatible, especially when MS tried to "embrace and extend" in '97 - '99.
I say, if it ain't broke, don't fix it.
Re:A Question (Score:5, Insightful)
IBM are being very intelligent. They are moving with the market.
It used to be that everyone in the IT world was closed and proprietary. OSS is changing that, and IBM know it. IBM are going with the flow, not fighting it.
Parent
Re:A Question (Score:5, Insightful)
Parent
Re:A Question (Score:5, Insightful)
Exactly. I spent some time contracting at IBM, and that's the main thing I learned about their business model: all the software stuff they do has the goal of selling IBM hardware. That's a plan that plays quite well with open source / free software.
Parent
Re:A Question (Score:5, Insightful)
Parent
Re:A Question (Score:5, Informative)
opened the architecture, thay had ISA ripped from them, I think Compaq cleaned room the BIOS which led to the clones. MCA, remember that. Token ring. SNA.
IBM in the 80s was at it's most arrogant. They had beaten everybody including the DOJ. The salesmen were insufferable. Then M$ changed the landscape by beating IBM at their own game.
Only in the last five years has IBM embraced Open Standards. Even now one of their hardware lines is still very closed, AS/400.
Parent
Re:A Question (Score:5, Interesting)
Parent
Re:A Question (Score:5, Interesting)
If the open development and open business models take hold, I think we may see a paradigm shift in industry (though possibly only in software) where no one makes a product, but each (company, community, individual) may add something or change something, and if it takes off well and the resources are there, they will be compensated.
People who say that this model won't work forget (or maybe never learned!) that people are often noticed for their abilities despite the fact that they may not be employed by a company in that field, or may not be particularly well-versed in it, but because they can still understand a particular problem and solve it well.
This is my hope, at least.
Parent
Re:Doubtful... (Score:5, Insightful)
Oh, bullshit.
When Microsoft wants to include a new technology (such as their web browser), they integrate it in such a way that you are forced to use it, can't replace it with something else, and end up using it for unrelated functions whether you want to or not. And half the interface is undocumented and inaccessible to people outside of Microsoft.
Sure, you can download and install your own web browser, but IE is always there, sucking up resources, no matter what you do.
When Sun wants to integrate something new into Java, the JCP develops a standard API for accessing it. Sun develops or licenses their own implementation of it, but allows you to use any implementation you choose so long as it implements the standard. Other VM distributors are free to replace Sun's implementation with their own. In fact, it's remarkably easy to be completely unaware of which implementation you are using.
If Microsoft had developed a standard web browsing API which allowed you to swap out IE in favor of Mozilla, and allowed computer manufacturers the right to do so on preinstalled machines if they chose, nobody would be complaining about the IE integration.
Well, that's exactly how Sun would have chosen to do it, based on their track record. They make it remarkably easy to swap out portions of the runtime library with alternate implementations.
Parent
Re:Doubtful... (Score:5, Interesting)
then perhaps you should take a look at experimentalstuff.com [experimentalstuff.com] - sun's site for experimental code. lots of it is opensource including an entire operating system (chorus os [experimentalstuff.com]).
looks like a committment to opensource to me.
Parent
Re:Doubtful... (Score:5, Insightful)
Parent