WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Empty '.filetool.lst'  (Read 7607 times)

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Empty '.filetool.lst'
« Reply #15 on: May 08, 2015, 06:47:09 PM »
Ok, I hope I am not sounding terse, just trying to figure out what we are wanting to do in what situation.  :-)

What you just said is very easy to code in, and makes sense.  And at the beginning of filetool.sh, will be very simple to give something like this:

If empty /opt/.filetool.lst or does not exist /opt/.filetool.lst; then create /opt/.filetool.lst if needed and then echo "opt/.filetool.lst" to /opt/.filetool.sh so it will back up itself otherwise empty and not interfere with reboot.

I can do that tonight.

Oh, and thanks sm8ps for your time you are spending with dCore and your effort to improve it.  Keep it up!

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11226
Re: Empty '.filetool.lst'
« Reply #16 on: May 08, 2015, 06:50:27 PM »
Hi Jason W
Quote
Ok, I hope I am not sounding terse, ...
Just sounded like some good old fashioned brainstorming to me. :)

Offline sm8ps

  • Sr. Member
  • ****
  • Posts: 338
Re: Empty '.filetool.lst'
« Reply #17 on: May 09, 2015, 12:23:09 AM »
What you just said is very easy to code in, and makes sense.  And at the beginning of filetool.sh, will be very simple to give something like this:

If empty /opt/.filetool.lst or does not exist /opt/.filetool.lst; then create /opt/.filetool.lst if needed and then echo "opt/.filetool.lst" to /opt/.filetool.sh so it will back up itself otherwise empty and not interfere with reboot.

That sounds very reasonable to me. Nice twist to have "/opt/.filetool.lst" in '/opt/.filetool.lst'!

Oh, and thanks sm8ps for your time you are spending with dCore and your effort to improve it.  Keep it up!

You are very welcome. Same to you!
Cheers!
sm

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Empty '.filetool.lst'
« Reply #18 on: May 09, 2015, 04:55:59 AM »
There is a catch.  A zero length file is different than a file with 2 or more blank lines.  So with a test for the file being greater than zero length, or for the word count, empty spaces are different than just a blank file.  No clear way to distinguish between a file with spaces and one with text.

I will be honest, this is not something I wish the spend days on as it has never been an issue before in the over 10 years that the this backup routine has existed.

Offline sm8ps

  • Sr. Member
  • ****
  • Posts: 338
Re: Empty '.filetool.lst'
« Reply #19 on: May 09, 2015, 05:11:37 AM »
There is a catch.  A zero length file is different than a file with 2 or more blank lines.  So with a test for the file being greater than zero length, or for the word count, empty spaces are different than just a blank file.  No clear way to distinguish between a file with spaces and one with text.

I will be honest, this is not something I wish the spend days on as it has never been an issue before in the over 10 years that the this backup routine has existed.

I fully see your point. Let's close the issue! Thanks for giving it that amount of thought, though!
On the wiki-page, I included the recommendation to at least add "opt/.filetool.lst" into an otherwise empty '.filetool.lst'. That is fully 101-compatible. ;)
« Last Edit: May 09, 2015, 05:21:19 AM by sm8ps »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Empty '.filetool.lst'
« Reply #20 on: May 09, 2015, 05:38:12 AM »
I remember long ago Robert saying that the entries in /opt/.filetool.lst had to not begin with a front slash and it was the user's responsibility to enter them that way.  They of course also need to be existing and the file not empty.

Thanks for having this in the wiki!

Offline sm8ps

  • Sr. Member
  • ****
  • Posts: 338
Re: Empty '.filetool.lst'
« Reply #21 on: May 09, 2015, 06:19:25 AM »
It is mostly there already. Though, I intend to set up some pages about the basic functionality (sce-{load,import,remove}, .filetool.lst, seboot.lst etc.) that should provide the information in condensed form. The respective section is already put up on the welcome page. I yet have to master the subject for myself.  8)

Offline sm8ps

  • Sr. Member
  • ****
  • Posts: 338
Re: Empty '.filetool.lst'
« Reply #22 on: May 09, 2015, 06:59:16 AM »
Upon second thought, I have decided against keeping '/opt/.filetool.lst' in the persistence mechanism. The problem is that this file may change quite often and if one should exit the system by 'reboot' then the changes would be lost. I shall rather be using some dummy file instead.
Sorry to revive this non-issue!

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11226
Re: Empty '.filetool.lst'
« Reply #23 on: May 09, 2015, 07:48:30 AM »
Hi Jason W
Quote
No clear way to distinguish between a file with spaces and one with text.
How about this:
Code: [Select]
busybox grep -c "^$\|^\s" /opt/.filetool.lstIf there are any blank lines or lines that start with a space, the count returned won't be zero. You could even flag leading slashes:
Code: [Select]
busybox grep -c "^$\|^\s\|^/" /opt/.filetool.lst

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Empty '.filetool.lst'
« Reply #24 on: May 10, 2015, 03:53:51 PM »
Thanks for the code, I will ponder putting it into a routine.

But blank lines existing in an otherwise correct .filetool.lst do not cause error.  So testing and exiting for a blank line existence will keep some folks who can backup without error from backing up.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11226
Re: Empty '.filetool.lst'
« Reply #25 on: May 10, 2015, 04:52:31 PM »
Hi Jason W
In that case, maybe approach it from the other direction and test for the existence of characters. Maybe something like:
Code: [Select]
busybox grep -c  '[a-zA-Z]' /opt/.filetool.lst

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Empty '.filetool.lst'
« Reply #26 on: May 10, 2015, 11:38:50 PM »
WORDS=$(wc /opt/.filetool.lst | awk '{ print $2 }')

Offline sm8ps

  • Sr. Member
  • ****
  • Posts: 338
Re: Empty '.filetool.lst'
« Reply #27 on: May 11, 2015, 01:41:27 AM »
Jason, I suppose you have taken a closer look at the code. At this occasion, I would like to mention the following difference between the graphical logout/backup tool and the console command backup.
The graphical tool spits out an error message for an empty '.filetool.lst', referring to '/tmp/backup_status'. However, the console command finishes silently in the very same situation.
I suggest including the same tests to the console command as the graphical logout/backup tool supposedly runs.

That said, I still support the idea of checking for an empty '.filetool.lst', seen that others seem to be interested as well. Thanks to Rich and gerald_clark for the specific suggestions! My work-around with a dummy file seems rather clumsy.
Combining the logic you outlined on May 9th (http://forum.tinycorelinux.net/index.php/topic,18393.msg112162.html#msg112162) with counting words sound good to me.

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Empty '.filetool.lst'
« Reply #28 on: May 13, 2015, 01:36:59 PM »
Uploaded to release.  Simply creates /opt/.filetool.lst if not existing, if blank or no text then echoes it's own entry as to prevent error.

The existing options for backup already create enough safety in dealing with the backup routine other than the blank or non existing /opt/.filetool.lst.