LWN.net Logo

Plasma Active Three released

Plasma Active Three released

Posted Oct 16, 2012 8:00 UTC (Tue) by boudewijn (subscriber, #14185)
Parent article: Plasma Active Three released

Good grief, people do love to whine these days, don't they?

I'm convinced that nobody here has actually tried Plasma Active on a tablet, yet they all know it's a horrible idea that will never fly. I guess it gives people satisfaction when they slag something, makes them feel superior to the people who actually created something, somehow.

I haven't tried it either, but I'll be putting it on an old exopc tonight and give it to my daughters to play with. They loved the previous incarnations, actually, and liked it much better than Android on those tablets.


(Log in to post comments)

Plasma Active Three released

Posted Oct 16, 2012 8:22 UTC (Tue) by GhePeU (subscriber, #56133) [Link]

Calling "whining" and haughtily dismissing some perfectly reasonable and civilly presented observations (that don't directly touch on the specific implementation but more on a general way of managing the interaction between users and their data)... Way to go, your post shows perfectly how some projects managed to squander a lot of their goodwill in the last years.

Plasma Active Three released

Posted Oct 16, 2012 9:54 UTC (Tue) by boudewijn (subscriber, #14185) [Link]

Yes, if someone who hasn't even tried it dismisses an experiment out of hand, then that is called "whining". Those "observations" you mention are nothing of the sort. They are not backed by experience, they are just knee-jerk negative pontifications. Maybe caused by the fact that being negative about somebody else makes people feel superior, maybe by fear for change, but still negative and unsubstantiated.

People should keep an open mind and welcome experiment. Give it a try, have some out-of-the-way fun some time. Stop posting "observations" that basically say "will never work, how could they be so stupid to do that".

Plasma Active Three released

Posted Oct 16, 2012 9:31 UTC (Tue) by efraim (subscriber, #65977) [Link]

That's probably because it's pretty arrogant to call filesystem an implementation detail. Actually filesystem (the concept) is an incredibly useful abstraction and it is ubiquitous exactly because it's useful. The type of the filesystem (and things like directory size limitations, allowed characters in file names) are implementation details, but filesystem itself is an abstract concept which exists exactly because generations of users found it useful.

Plasma Active Three released

Posted Oct 16, 2012 9:54 UTC (Tue) by ovitters (subscriber, #27950) [Link]

Various other tablets don't expose the filesystem. I don't think you're right to call it arrogant if they make the same choice. Meaning: you said that generations of users found it useful, but millions of existing tablet buyers do not seem to miss. Though I do think the "always has been this way" as well as "loads of people" argumentation is a weak discussion method.

Plasma Active Three released

Posted Oct 16, 2012 10:24 UTC (Tue) by efraim (subscriber, #65977) [Link]

And that's exactly one of the reasons (though not the only one to be sure) Android and other tablet OSes is mostly a toy when it comes to productivity applications.

I don't use "loads of people" argument. I use "loads of people found it useful" argument. Though this argument will probably fall on deaf ears, try to consider why different operating system came to the same hierarchical storage method - historically there is nothing linking FS implementation in DOS, UNIX and Mac OS classic yet they all have arrived to the "file system" idea. So maybe, just maybe, it's not an implementation detail, what's with all those systems implementing it without sharing a single line of source code.

Plasma Active Three released

Posted Oct 16, 2012 13:31 UTC (Tue) by viro (subscriber, #7872) [Link]

*snort*

Not to argue the merits or lack thereof of UI theorists and their, er, highly fertilizing output, but... You are spouting BS. DOS has introduced hierarchical filesystems in 2.0, which was essentially a v7 lookalike welded on top of CP/M clone. It *was* a Unix clone, wrt file-related interfaces. I suggest you to look at the file-related APIs in DOS 1.0 - those are copied from CP/M. FCB junk. 2.0 and later had normal file descriptors, chdir(), pathnames, etc. FS layout had been different (and v7 filesystem would be very painful on floppies with not enough RAM to cache the metadata), but the idea itself had not been independently created - it had been an explicit copy. I'm not familiar with the history of MacOS interfaces, but I very much doubt that it had been independent development there. Hell, it wasn't independent on Unix either, but there it was more that the whole thing started around the work by the core Multics filesystem developers after Bell Labs had pulled out of Multics project.

Plasma Active Three released

Posted Oct 16, 2012 16:00 UTC (Tue) by efraim (subscriber, #65977) [Link]

Before you accuse someone of "spouting BS" please make sure you understand what you read. You didn't. Of course DOS did not invent the concept. But it implemented it in entirely independent way. Which means only one thing - it was a useful concept worth copying - not an implementation detail.

Anyways, nice chat, see you.

Plasma Active Three released

Posted Oct 16, 2012 17:20 UTC (Tue) by viro (subscriber, #7872) [Link]

"Entirely independent way" meaning...? Implementing fs-related parts of v7 API is trivial, especially when you essentially don't care about races (and I wouldn't bet a dime on safety of fs syscalls from what-was-it-called... their "stay in background, get woken up on interrupts" kludge... TSR? At most I'd expect them to disable interrupts in what they deemed to be critical areas; most likely would've missed a bunch of races, at that).

So no, I don't think they bothered to nick actual v7 source. But that definitely had been a (trivial) reimplementation of existing interface.

It's about a man-month of work to implement and such reimplementations had been done quite a few times. Including initial debugging, enough to make it mostly usable, if not quite safe. In their case I'd expect the most PITA to have come from making it play nice with the preexisting pile of garbage (FCB syscalls).

If your point was that hierarchical filesystems had turned out to be useful enough for a lot of systems to reimplement them - sure, that's true, but what the hell does that have to do with independent anything? If we are talking about bitty-box parodies on OS, might as well bring Amiga - at least there it really seems that influence might have been not entirely from Unix (I don't know the TRIPOS history well enough to tell, but at least in that case a direct influence from Multics is plausible).

Since late 60s it had been fairly common. And it's simple enough to describe and implement by such description, at least in the basic forms[1]. More to the point, a lot of software depends on having that available, so not implementing a hierarchical fs means serious self-inflicted PITA in porting and redesigning user interfaces. The tricky part is maintaining a sane directory tree layout, but "let's not bother with that" is a lousy answer - all attempts so far seem to have been sucky. FWIW, I'm very sceptical about the tags-based approaches - the problem is real, but I don't think it's solvable that way...

[1] Once you have to deal with the UCB bad trips (cross-directory renames, handling of dangling symlinks, etc.) the things get more hairy, of course, but that's a separate story.

Plasma Active Three released

Posted Oct 16, 2012 19:37 UTC (Tue) by anselm (subscriber, #2796) [Link]

Even the Apple II had a hierarchical file system with an OS that was not an obvious Unix knockoff. It is reasonable to say that in the early 1980s, hierarchical file systems were simply an idea whose time had come.

Plasma Active Three released

Posted Oct 16, 2012 21:01 UTC (Tue) by dgm (subscriber, #49227) [Link]

> It is reasonable to say that in the early 1980s, hierarchical file systems were simply an idea whose time had come.

I would be, if you replaced the date with mid to late 60s.

Plasma Active Three released

Posted Oct 16, 2012 21:06 UTC (Tue) by rmini (subscriber, #4991) [Link]

Interestingly enough, MS was a v7 licensee before MS-DOS was around (Xenix). As an historical aside, MS-DOS handled protecting its non-reentrant APIs by setting a flag in memory that TSRs were supposed to check (with interrupts disabled) before making any DOS calls.

Plasma Active Three released

Posted Oct 21, 2012 23:06 UTC (Sun) by efraim (subscriber, #65977) [Link]

My original point is: the "original reimplementation" thing just means that the creators of those system found the feature useful enough to implement it.

If those systems were UNIX-derived, it would not say much - after all they'd inherit the implementation together with source code or at least API design.
That's why it's important to mention those system whose codebase was very different. Like DOS (BTW, as already mentioned, DOS DID have minimal support for FS usage from TSR - the very hairy idea of InDOS flag)

Plasma Active Three released

Posted Oct 17, 2012 22:51 UTC (Wed) by nix (subscriber, #2304) [Link]

DOS 2.0's implementation of a hierarchical filesystem was so unrelated to Unix that there was an undocumented switch you could flip which switched the path separator from \ (a choice forced on them by the CPM-inspired choice of / as the option character) to /. Just like, um, Unix.

Heck, some of the code even emulated Xenix interfaces to some degree. It was explicitly Unix-inspired.

Plasma Active Three released

Posted Oct 18, 2012 22:56 UTC (Thu) by BenHutchings (subscriber, #37955) [Link]

DOS system calls accept either path separator (and so does Win32). But since a leading '/' (and even an embedded '/' in some cases) is treated as introducing an option, it cannot really be used as a path separator.

MS-DOS 2.0 and some later releases supported changing the option character, typically to '-', resulting in a more Unix-like behaviour. However, command line parsing was left to each program and there was no widely used getopt() function, so this was never universally supported. There was also no convention of a special argument like '--' that would disable option parsing in subsequent arguments

Plasma Active Three released

Posted Oct 20, 2012 8:46 UTC (Sat) by nix (subscriber, #2304) [Link]

Oh, yes, it was never well-implemented and never worked properly. But that they tried at all pretty much proves Al's point that the whole DOS 2.0 directory thing was intended to emulate Unix (at that point the intention was to eventually ditch DOS and migrate everyone to Xenix, IIRC).

Plasma Active Three released

Posted Oct 20, 2012 14:35 UTC (Sat) by raven667 (subscriber, #5198) [Link]

How different he world would be if that had happened. Everything would be a unix-derivitave or unix-alike maybe aside from some very niche mainframe or embedded systems. The ecosystems between MS, Apple and Linux would be more directly cross-pollinated, if Linux was even started at all.

I don't know if that would have been a better world but I'd like to think so. At least it would have saved the world years of aggravation dealing with win/dos instability.

Plasma Active Three released

Posted Oct 20, 2012 16:26 UTC (Sat) by viro (subscriber, #7872) [Link]

You are overestimating the effects. Or just forgetting what the situation really had been.

* MacOS had not been thrown out and replaced by a Unix derivative until very late in the game.
* there had been AmigaOS, which was also not a Unix by any stretch of imagination. Might or might not have died off; hell knows.
* IBM mistake of using Intel's design failure (286 protected mode architecture) would still have happened. Results wouldn't have been any prettier than in real history. By the time Intel has fixed the worst of that it was too late - OS/2 interfaces had been deeply affected by that horror and it was too late to fix them.
* Gary Kildall and his pile of garbage. That's the guy you have to thank for the mess, far more than Gates&co. A lot of bitty-box software had been out there and it had been cheerfully ignoring the nearly inexistent kernel. Porting _that_ to anything resembling an operating system would have been slow and painful.

Plasma Active Three released

Posted Oct 20, 2012 19:43 UTC (Sat) by raven667 (subscriber, #5198) [Link]

> You are overestimating the effects. Or just forgetting what the situation really had been

That may be, this is speculative history fiction after all.

The seeds for MacOS were planted when NeXT was founded and successfully created its successor. Apple might have turned out very differently in the late 80's and 90's has NeXT been done in-house. Lets just change one thing for speculation purposes though.

I can see how 286 protected-mode could have thrown a monkey wrench into the design but Xenix was ported to the 386 and available at the time a switch over could have been made from DOS. Compatibility could have been maintained with Merge for example or some other DOSBox-like technology created. Windows could have been designed for Xenix instead of DOS.

The rest of the systems turned out to be small fry or have fundamental flaws either technically or in the management of the companies supporting them. I don't think the winners and losers of the 80s-90s would have turned out differently but there was an opportunity that was missed.

Plasma Active Three released

Posted Oct 20, 2012 21:54 UTC (Sat) by viro (subscriber, #7872) [Link]

There had been lots and lots of software that would be hell to port to anything OS-like. Unix, VMS, whatever. Nothing short of fully virtualized system would help and that would be prohibitively costly on 286 (not to mention 8086). It didn't have to be written that way; it just had been the common culture on CP/M boxen and it had been transported over to DOS. And no, MacOS of the period hadn't been any better in that respect. And 386 had been too late to really affect that - by the time it had been widely deployed, there had been a huge market and it had been way too late. I suspect that this is what had really doomed any plans of transition to Xenix.

As for 286, I really wonder what would an OS Intel had in mind for that beast look like. Some kind of Ada environment, perhaps? Definitely not something resembling Unix...

Plasma Active Three released

Posted Oct 21, 2012 15:47 UTC (Sun) by raven667 (subscriber, #5198) [Link]

Aside from os/2 I don't think the 286 was relevant except as a a faster 8086 and the 386 was the transition point. Dosbox shows that the vm route is viable.

Plasma Active Three released

Posted Oct 21, 2012 18:43 UTC (Sun) by nix (subscriber, #2304) [Link]

The VM route is viable *with modern hardware*, because its CPUs are much much faster and memory much more capacious than the systems being emulated. On late-1980s and early-1990s CPUs like the 80386 (which was introduced in 1985 and was becoming common in the early 1990s), it is wholly impractical to expect to be able to do instruction-level, let alone cycle-accurate, emulation of even an 8086, let alone a 286.

Plasma Active Three released

Posted Oct 22, 2012 5:13 UTC (Mon) by raven667 (subscriber, #5198) [Link]

The 386 does run 8086 software just fine. Sure some runs too fast or whatever but the CPU has the appropriate guts to run 8086 software in a VM and that feature was in use at the time. For example Concurrent DOS 386.

Of course the rest of this is high speculation as it wasn't what happened.

Plasma Active Three released

Posted Oct 22, 2012 15:21 UTC (Mon) by nix (subscriber, #2304) [Link]

I know it does. But if insn-level emulation was required, it couldn't possibly have (i.e. if it had done what dosbox et al do now).

Plasma Active Three released

Posted Oct 22, 2012 17:12 UTC (Mon) by raven667 (subscriber, #5198) [Link]

Win3.1 with virtual memory enabled and WinNT, Win95 had the same problem so how they solved it should be sufficient. DOSBox does better but that may because it creates virtual video, sound and network devices in its VM. I don't think it does any more instruction emulation/trapping than a WinNT DOS window.

Plasma Active Three released

Posted Oct 24, 2012 15:49 UTC (Wed) by nix (subscriber, #2304) [Link]

The two are quite different. Win3.1/NT/95 were all 32-bit systems, so they had the benefit of being able to use VM86 to do 90% of the work for them. In long mode (64-bit mode), vm86 no longer exists, so this approach cannot be used.

Plasma Active Three released

Posted Oct 24, 2012 16:27 UTC (Wed) by raven667 (subscriber, #5198) [Link]

Thanks for the clear response, I hadn't thought about that. I'd forgotten about the differences between 32bit and 64bit mode on modern CPUs, and that dosemu and dosbox aren't the same thing.

Plasma Active Three released

Posted Oct 21, 2012 19:07 UTC (Sun) by viro (subscriber, #7872) [Link]

Remind me, when had 386 boxen become widespread enough? IIRC, in the very late 80s... And overhead of vm86, while nowhere near that of hacks possible on 286, could still be heavy, depending on what the turd running in it had been doing. IRH the things had eventually gone that way, but it took a lot of time. IBM had invested too much into 286 boxen; OS/2 was only the software half of disaster...

AFAICS, there were two critical points in the making of that mess; one in mid-70s, when CP/M had been designed and spread, with resulting traditions of software that assumed it had essentially solitary control of bare hardware and another in the end of 70s, when internal politics in Intel has lead to 80286 design picked. Hell knows what happened in there - at the same time they had an even worse disaster going on (iAPX432) and chances of iAPX286 design to get accepted had to depend on how much could it be internally sold as aligned with iAPX432 one, but details are probably impossible to reconstruct by now.

Plasma Active Three released

Posted Oct 22, 2012 5:17 UTC (Mon) by raven667 (subscriber, #5198) [Link]

In my speculative revised history I would think that the Xenix transition would happen in the early 90's, maybe with Win3.x and instead of developing new kernels for WinNT and Win9x. The result would probably have looked a lot like NeXT.

Plasma Active Three released

Posted Oct 16, 2012 14:07 UTC (Tue) by ovitters (subscriber, #27950) [Link]

The loads of people I tried to refer to what I said: millions (10 of millions?) of tablets sold. This to illustrate what I was getting after: questioning existing things is useful to get something better.

At the moment directories are being done away with in very restricted devices (tablet is no pc). Seems to working out.

I don't see the relation to a tablet and productivity applications. I'd assume you'd do more data entry in something like that, which is pretty annoying if you have to do that with an on screen keyboard.

In any case, you mention "deaf ears", while at the same time calling things "toy" without (it seems) having tried it. I find it a little bit ironic.

When the iPad was introduced, the presentation made clear that it was made for only a few use cases. It (iPad) is not a big smartphone, nor is it meant to replace a laptop or a pc. So don't expect things to be the same, at least in the iPad that was not the intention (I guess that is also the reason that iPad is selling better than Android tablets.. though never used a iPad/Android/Plasma tablet).

Plasma Active Three released

Posted Oct 16, 2012 14:01 UTC (Tue) by nye (guest, #51576) [Link]

>Various other tablets don't expose the filesystem.

And the result of this is that the Play store contains a wide variety of extremely popular applications that provide a real file manager, because in practice not having one is completely hobbling.

Possibly - even probably - this is in large part because existing implementations of the idea suck, but that certainly gives rise to a reasonable doubt that some new implementation is going to solve all of the problems.

Does anyone know if there's a desktop build of the Files application that we can try? I found this: http://community.kde.org/Plasma/Active/Installation#Insta..., but there's a plethora of confusing options and it's not clear what images (if any) have been updated for PA3.

Plasma Active Three released

Posted Oct 17, 2012 11:35 UTC (Wed) by hummassa (subscriber, #307) [Link]

> And the result of this is that the Play store contains a wide variety of extremely popular applications that provide a real file manager, because in practice not having one is completely hobbling.

And still, I only use file managers (on Android) when I have to transfer files between apps that are (buggily IMHO) not prepared to transfer them back and forth (in the last months, the audiobook player and dropbox)...

Plasma Active Three released

Posted Oct 16, 2012 23:53 UTC (Tue) by ssmith32 (subscriber, #72404) [Link]

But they do miss it!
That's why this:

https://play.google.com/store/apps/details?id=com.metago....

(android file manager app)

exists, is pretty popular, and even *sells*.

The use case that made it necessary for me was the gmail client's long refusal to let me "save" attachments. I knew it had to be downloading them somewhere to open them in whatever preview app used (Adobe, etc), it just refused to show you where it put them, and make sure you could save them for later (esp useful if you have spotty data reception).

That said, I don't reject Aaron's ideas out of hand - I'm really looking forward to the KDE tablet, put the problem is usually apps that decide "the user doesn't need this, they have the cloud" or something dumb, and the only way to get to stuff is via the good ol' filesystem.

Assuming KDE let's you find everything, and let's you open files in programs you're not "supposed to" (e.g. binary files in gVim or some other "why would you do that" type of thing that I occasionally do have to do!), then I'm good..

Plasma Active Three released

Posted Oct 16, 2012 9:58 UTC (Tue) by boudewijn (subscriber, #14185) [Link]

And generations of users have found it confusing as hell, hence the big dump of files on the desktop you see everywhere. I can handle file systems, you can handle file systems, other people can't, so why be negative when people try help that set of users?.

Plasma Active Three released

Posted Oct 16, 2012 10:28 UTC (Tue) by efraim (subscriber, #65977) [Link]

Because calling a fundamental abstract concept which millions of people have found useful an implementation detail is not useful to the discussion in any way, shape or form. You can discuss its disadvantages but you cannot just dismiss it as an implementation detail.

I probably assume too much about others' motivations, but I think this casual dismissal is the reason for so negative a reaction.

Plasma Active Three released

Posted Oct 17, 2012 15:50 UTC (Wed) by boudewijn (subscriber, #14185) [Link]

I just think the idea that items need to be in boxes in boxes in boxes is really fundamental -- that's something tags can do as well, just as easily.

I mean, when you get down to it, what's the difference? I need to navigate to /home/boud/doc/rpg/current_campaigns/ysella_and_moyri/2nd_year/ to save a file called 03.txt because it's the 3rd write-up of the campaign where the players are using the Moyri and Ysella character sheets in our regular role-playing game which is something I write, not something I code (code goes in /home/boud/src -- with a similar hierarchy -- no wait, code I write goes into /home/boud/prj, src is for the source of other projects.)

That's just the same thing as tagging, when you get down to it.

Plasma Active Three released

Posted Oct 16, 2012 19:58 UTC (Tue) by flack (guest, #87247) [Link]

> And generations of users have found it confusing as hell, hence the big dump of files on the desktop you see everywhere. I can handle file systems, you can handle file systems, other people can't, so why be negative when people try help that set of users?.

You know,this line of reasoning has puzzled me ever since KDE4 came out: How exactly is it that the number of files on someone's desktop is somehow an indication of whether a) the desktop is useful or b) the user knows how to use filesystems?

I mean, I code for a living and manage a number of repos with thousands or tens of thousands of files in them, and the are organized in a sane and useful way. But that doesn't mean that my desktop (on Win, on Mac OS, and on KDE) isn't full of random crap. Attachments from emails, downloads, funny pictures I found somewhere, links to programs (on Win at least), it's all in there and for anybody but me it looks like random chaos, but it's not.

And from what I've seen in the usage patterns of the less computer-savvy, it's basically the same: desktop is for random crap that doesn't fit anywhere else, frequently used documents/programs, or urgent stuff. Just because it looks messy to you, that doesn't mean that the desktop's owner doesn't know what he's doing.

I'm not saying taking away file system access is wrong in all cases, but the perceived disorder of desktops is not a very solid justification for doing so.

Plasma Active Three released

Posted Oct 17, 2012 15:54 UTC (Wed) by boudewijn (subscriber, #14185) [Link]

That's because, not for you, but often, filling the desktop with thousands of files is often a sign of not understanding hierarchical file systems. Another sign is the Documents directory with tens of thousands of files, often numbered.

Maybe yet another sign is the manual for my very first PC (Spring Circle Super Turbo XT with _eight_ Mhz!). I kept the manuals because they are so cute: they explain file systems the unix way, including the /dev /bin/ /usr /tmp etc. division. It had nothing to do with the way MS-DOS worked, except, as Viro said earlier, that it showed where the dos file system was a copy from, without the manual writer showing any understanding what directories were for.

Way back, 27 years ago I took /bin to be the location for deleted files, and moved everything I didn't need there.

Plasma Active Three released

Posted Oct 17, 2012 15:56 UTC (Wed) by mpr22 (subscriber, #60784) [Link]

Way back, 27 years ago I took /bin to be the location for deleted files, and moved everything I didn't need there.

And I always thought people doing that was an urban legend! :)

Plasma Active Three released

Posted Oct 17, 2012 16:23 UTC (Wed) by boudewijn (subscriber, #14185) [Link]

Worse, those directories didn't exist after formatting a floppy disk, so I painstakingly created the directories the manual advised on every data disk I created.

Plasma Active Three released

Posted Oct 17, 2012 16:36 UTC (Wed) by dgm (subscriber, #49227) [Link]

I will do you a favor and add a bit of context to that story.

Plasma Active Three released

Posted Oct 17, 2012 18:42 UTC (Wed) by boudewijn (subscriber, #14185) [Link]

I should update that list :-)

Plasma Active Three released

Posted Oct 17, 2012 20:07 UTC (Wed) by ncm (subscriber, #165) [Link]

Pwned!

Who is asked to write the manual: The one who understands how things
are supposed to work, and makes them work, or the one who doesn't, and
mostly gets in the way? No points for guessing right.

Plasma Active Three released

Posted Oct 17, 2012 22:56 UTC (Wed) by nix (subscriber, #2304) [Link]

And if it comes from the Far East: who translates the manual? How much is she paid? Is it more than the people who clean the floors? (Probably not.)

Plasma Active Three released

Posted Oct 16, 2012 14:06 UTC (Tue) by kugel (subscriber, #70540) [Link]

I wholeheartedly agree with that. I find the file system (with a single root) concept brilliant.

Using a device which doesn't support this and requires me to make up tags for all my files sounds very unappealing to me.

Plasma Active Three released

Posted Oct 16, 2012 14:10 UTC (Tue) by Cyberax (✭ supporter ✭, #52523) [Link]

Unfortunately, some of us tried Windows Phone 7/8 that has the same mis-feature. It really really is a bad idea.

Copyright © 2013, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds