podQast no further packets in harbour

asked 2019-01-02 14:05:24 +0300

this post is marked as community wiki

This post is a wiki. Anyone with karma >75 is welcome to improve it.

updated 2019-01-03 12:16:31 +0300

cy8aer gravatar image

This is a post for the problems I have in developing the real good application with sailfish and why there will be no post 1.11 version of podQast in harbour.

Before you further read it: podQast was my first real prog I put out to the community though I am implementing stuff for decades for my own and at work. Probably my demands for applications are wrong. Probably my thoughts are not right - it is my honorably own opinion (aka IMHO)! Probably I am simply too stupid to do it right...

You may figured out that podQast has a paragon app in the iOS world and I tried out how helpful the sailfishos infrastructure (sdk, harbour...) is to implement an equal application like in other mobile systems/infrastructures. When I look at the podQast wishlists in harbour, tmo (https://talk.maemo.org/showthread.php?p=1552198), and openrepos (https://openrepos.net/content/cy8aer/podqast), I found out that most of the wishes of the end users correspond to functionality in the paragon and by now not implemented in podQast. And now exactly these end user wishes are nearly not able to fullfill with the harbour rules.

The strain from the end users for basic features (mpris, bluetooth keys) let me convince to have a "Forbidden Fruits (!)" version on openrepos for these main functionality I would demand for my own. But now I am at the point where main functionality is not implementable with the restrictions of harbour anymore. And these special wishes are the main blocker for many multimedia applications to go to harbour.

It is funny that in the A- and G-world this functionalitiy (end-users: they may want to have money for these special features!!!) is possible although an iOS-platform device is really restricted. I tried for months to let the wonder happen but the dbus interfaces provided in QML are not able to make an mpris implementation by my own, I do not know how the bluetooth key stuff is connected to dbus anyways. But the existing - and mostly working but in parts not well-kept - libraries are not allowed in harbour.

The point why I do not provide more features in harbour yet are the restrictions to files/file handling for an application which are not corresponding to the end user's wish.

You are only (and only!) allowed to save data in directories provided by the XDG environment system (https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html). That makes sense for configuration data and caching stuff. But the handling of files provided to the user or fetched from the user is open with this restriction.

Wish: The user wants to have podcast posts provided to have them copied away or used by other applications (I guess it is talefish - ahem this is also not available on harbour by restrictions). You need a directory for this interchange. It is file data no config, cache... But I am not allowed to save files (here it is a symbolic link) to a normal user's directory. Yes, this may change, the user may change, ok. But there is no Environment variable to have a home-root outside the .local dot-dir for these use cases. What can I now do: Implement it in the XDG_HOME_DATA directory and make a documentation for the user how to symlink it into a useful directory? Really? I want to create cool software I do not want to help everyone with no unix capacities to create symlinks.

Wish: Sideloading of audio files into the podQast playlist. Same problem but the other way round. Plus: missing central id3/ogginfo infrastructure. I am able to do this in the next days but I spent months for having a nice library for identifying the audio file info - and may have the same problems like identifying feeds. It will double my development and bug fixing times because of this. HiHo @velox - your way to do it with libtag in talefish will never let you into harbour ;-)

Another thing: because of the dot-file thingie all data of my multimedia application are stored outside the view of the end user (she does not know anything about dotfiles and needs to opt in dotfiles in file browsers...). For my setup with 20 podcasts and about 10 posts in queue - not persistant favorites (feature of 1.12) I have: 53M configuration, 31M icons, 260M audio files.

sometimes the audio files near 1G. If you use the new favorites feature the the storage of audio files will increase intensively. But the end-user only sees an decreasing system drive capacity. And then there will be the point where 16G systems will not upgrade anymore because of too less storage. At the days of gpodder I just moved the gpodder .local stuff to my sdcard by hand (and with a terminal). I thought about such a functionality from inside podQast. But this is also not allowed. I can only restrict the end user to download not more than x GB by option and need to dynamically look how much space I have to re-download stuff. Bummer.

Ok, enough screaming: For further implementing this special application in harbour the infrastructure needs to offer:

  • multimedia connectors to start screen (mpris), bluetooth
  • better file handling (file picker for directories would be nice)

For other applicatoins (wishlist - this is a wiki...)

  • your needs (and there are many...)

Sorry about this rant but I often see posts where developers stumble over restrictions and resignate. I would not say that I am a very good developer but at some point the frustration wins. You may be able to create concurrent products like in in the G- or A- world but you need more help on the SDK side for this, like libraries and better thinking of the definition of restrictions. Otherwise Sailfish has no chance to really grow from the application side.

Of course: See you on openrepos...

@Jolla: I can see that I have 40 downloads from finland (version 1.12-ff0: 11). Hm, who is it...

@Jolla: from the point of restriction view the saving of opml and my backup tarball are illegal, so the actual version 1.11 should also be rejected.

[Update] I was so silly to have a directly coded "/home/nemo" in my source - you need to hide it from the test engine...

[Update] 1.12 is in harbour. But - according to the suggestion of @velox with StandardPath I may need to discuss with some people (irq?) if it would be better to put the whole stuff into the Music directory. But just test the new functionality if it works for you.

edit retag flag offensive close delete

Comments

Hi @cy8aer – thanks for the mention, but I abandoned harbour as a potential target for Talefish a long time ago, because of reasons you state, as well: Media Keys (No clue how to do it harbour friendly) and MPRIS (I still think it should be possible in c++, but not worth the effort for me since there would still be Media Keys missing).

You could still use Taglib if it's statically linked, I think. I may even do this in the long run, because taglib updates may break Talefish in the future when linked dynamically. This wasn't a priority for me, though. Again, because it would not make it harbour friendly. Also, the binary would be a lot bigger, I assume.

A file picker for directories would be nice, I agree, but a Listmodel for this can be done in c++, as well. I just did not rename the nemo QML plugin I used in Talefish.

The Directory thing… StandardPaths.home is available in recent versions.

This does not mean I totally disagree with your points and I'd actually reconsider harbour for Talefish with accepted MPRIS and Media Keys behaviour. (So, if anyone knows how to do the latter, please let me know and I may be willing to change the other things. :) )

cheers!

velox ( 2019-01-02 18:23:05 +0300 )edit

Could you implement mkdir and mv commands with a simple push buttons for an ordinary user to transfer file default location to the sdcard?

Rikujolla ( 2019-01-02 18:27:08 +0300 )edit

@velox (as every time) thank you for your help. The main thing for podQast: It is still without any compiled line - so by now everything is in python or qml. I do not want to compile anything (that has to work with simple languages ;-) Recompiling already existing stuff is ugly. StandardPaths - hm let's see what I can do with it... I am just doing an '~' trick which worked till now.

@Rikujolla: There you see it. This is standard user wishes. Yes I can do it - that are my thoughts, but without mkdir and mv of course (-> python os lib). Let's see what the next morning will give us (nevertheless I did a new try in harbour).

cy8aer ( 2019-01-02 18:47:36 +0300 )edit

One could also make a directory dialog with PyOtherside, I guess: Requesting a file array from QML for a specified folder (start with the StandardPaths if there isn't a saved one), putting it into a ListModel and so on.

I don't think python os is restricted (or other python core modules), to be honest.

velox ( 2019-01-03 12:18:09 +0300 )edit

@velox +1 that is an idea.

I need to have it out of the homedir. What about Music from StandardPaths?

cy8aer ( 2019-01-03 14:31:01 +0300 )edit