Jump to content

Why doesn't Tidy, tidy source files that are included in the main file?


Recommended Posts

I've got a project consisting of 3 files, one of which is the main file.

The other two files are included in the main file, yet Tidy doesn't tidy thes. I have to do each file separately.

Why doens't it read in and tidy the included sources ?

Edited by cappy2112
Link to comment
Share on other sites

It doesn't tidy the included sources because it wasn't designed to tidy included files. For example, the file.au3 and array.au3 are included in many programs. People don't really edit these files so if you were to tidy the script and it did the included files then it would have to do the file.au3 and array.au3 files as well. This would be stupid since the user didn't create the header files and doesn't need them to be cleaned up. I myself have one script with five or six header files included that i don't edit. If tidy was to clean them everytime i told it to tidy my script it would take forever and be very frustrating. Therefore you have to manually open the included files to tidy them. If you are really frustrated with this i would recommend simply copying and pasting the script in the included files into your main script file.

"So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire

Link to comment
Share on other sites

It doesn't tidy the included sources because it wasn't designed to tidy included files. For example, the file.au3 and array.au3 are included in many programs. People don't really edit these files so if you were to tidy the script and it did the included files then it would have to do the file.au3 and array.au3 files as well. This would be stupid since the user didn't create the header files and doesn't need them to be cleaned up. I myself have one script with five or six header files included that i don't edit. If tidy was to clean them everytime i told it to tidy my script it would take forever and be very frustrating. Therefore you have to manually open the included files to tidy them. If you are really frustrated with this i would recommend simply copying and pasting the script in the included files into your main script file.

I"m referring to MY sources that are included, as indicated in the message, not stuff that comes with AutoIt

Link to comment
Share on other sites

I"m referring to MY sources that are included, as indicated in the message, not stuff that comes with AutoIt

That still leaves you with the original answer: it doesn't because it isn't supposed to. In all situations I can think of, that behavior would be a BUG, not a feature. You can have more than one file open at a time in SciTE, and then just hit ctl-t once in each of them... you could probably even script that! :lmao:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

  • Developers

I've got a project consisting of 3 files, one of which is the main file.

The other two files are included in the main file, yet Tidy doesn't tidy thes. I have to do each file separately.

Why doens't it read in and tidy the included sources ?

As mentioned, I have not designed Tidy to process more than the file being edited, for the simple fact that I assume that the Included files are already coded, functioning and Tidied by you or Tidy.

Give me one good reason why you would want to Tidy code you are not editing ?

I"m referring to MY sources that are included, as indicated in the message, not stuff that comes with AutoIt

How in the world would Tidy know what is your code and what is standard included ?

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Maybe there could be a checkbox to check included user files.

The user includes are always in double quotes (#include "myfiletoinclude.au3"), the standard includes are always in angled brackets (#include <Array.au3>). This could be used to differentiate one from the other.

“Give a man a script; you have helped him for today. Teach a man to script; and you will not have to hear him whine for help.”AutoIt4UE - Custom AutoIt toolbar and wordfile for UltraEdit/UEStudio users.AutoIt Graphical Debugger - A graphical debugger for AutoIt.SimMetrics COM Wrapper - Calculate string similarity.

Link to comment
Share on other sites

  • Developers

Maybe there could be a checkbox to check included user files.

The user includes are always in double quotes (#include "myfiletoinclude.au3"), the standard includes are always in angled brackets (#include <Array.au3>). This could be used to differentiate one from the other.

Not totally correct ...

It just determines the seach order, but when using #include<> you could still refer to a users own include library.

But even if we would find logic to determine this, i will not make the change to the Tidy program for the reason I defined in the first paragraph of my previous post......

:lmao:

Edited by JdeB

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Moderators

I have to agree with with Jdeb. You would think after you do each script that you would Tidy it (At least I do). Whether it be an include or a regular file, I find myself Tidying throughout the script to make sure I don't have simple errors for 1, and I like the idea it keeps a back up 'old1' - 'old2' etc... as I'm strumming along.

I have a script that goes through the includes, and alters them, that's just one more thing that could go wrong, and when your trying to fix something, you assume that the #includes are not the issue, that the actual script that was using the #includes was. Now if you start going through Tidy you could run into other errors.

Isn't it enough that the Au3Check goes through it? I mean if you are going to make the script an executable, you don't intend for others to see the source anyway... and if they find a way to do that... what do you care if the source is all nice and neat :lmao:.

I vote for not having the extra work of including the '#includes' in the tidy, that's just going to take more time in getting the job done. And as I said should be done with each #include anyway as they are being written, or finished IMHO.

My 0.02 cents...

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Hi JdeB,

I agree with you and others with similar views as regards Tidy and this thread.

However, you addressed the idea of a user's include library. I am VERY MUCH in favor of that. I would like to be able to keep the "official" UDFs and my own and other's UDFs separate without the hassle keying in a long path. If the User UDF path was specified in an INI file it would be great. The compiler and AutoIt could look first in the "official" location and then in folder specified if any includes were not found in the "official" location. This same idea could be extended a bit and be helpful with ZIP installs as to where the "official" and "User" includes are.

Gene

Not totally correct ...

It just determines the seach order, but when using #include<> you could still refer to a users own include library.

But even if we would find logic to determine this, i will not make the change to the Tidy program for the reason I defined in the first paragraph of my previous post......

:lmao:

[font="Verdana"]Thanks for the response.Gene[/font]Yes, I know the punctuation is not right...

Link to comment
Share on other sites

Give me one good reason why you would want to Tidy code you are not editing ?

How in the world would Tidy know what is your code and what is standard included ?

What do you mean by not editing?

I am working on a program which has 3 files at the moment?

I have all three of them open in scite, so I am editing all 3.

Link to comment
Share on other sites

  • Developers

Hi JdeB,

I agree with you and others with similar views as regards Tidy and this thread.

However, you addressed the idea of a user's include library. I am VERY MUCH in favor of that. I would like to be able to keep the "official" UDFs and my own and other's UDFs separate without the hassle keying in a long path. If the User UDF path was specified in an INI file it would be great. The compiler and AutoIt could look first in the "official" location and then in folder specified if any includes were not found in the "official" location. This same idea could be extended a bit and be helpful with ZIP installs as to where the "official" and "User" includes are.

Gene

I would prefer if we would make a change so that #Include<..> would search:

- "AutoIt3 program directory"\include for the standard includes. (This facilitates to have a seperate set of includes for Production and Beta)

- possible added directories for users own include directory. (via a registry entry ?) Think this was proposed by Valik before)

- Then looks in the Script Directory.

#include".." would go in reverse order..

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

What do you mean by not editing?

I am working on a program which has 3 files at the moment?

I have all three of them open in scite, so I am editing all 3.

Then do a Ctrl+T on the buffer you are aditing at that moment.

I have the impression you are not agreeing with any of the arguments made ... correct ?

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

THis could be handled any number of ways.

In a C compiler include "file.h" has a slightly different meaning from include <file.h>.

That's just one example.

That doesn't change the objection that actions should happen on the file that is being edited, not on others. I wouldn't want Search/Replace to happen on my include files, for example. Just because the main needs tidying, that doesn't mean the include files do. And in the vast majority of cases they wouldn't. The include files only need tidying if you change them, which means you have them open. In your case, with the main and two includes open in SciTE, just click through the three tabs and hit ctl-t on each one.

One of the ways I use Tidy is to give me intermediate backups. Every time I hit ctl-t/CR, I not only get tidied, I get a point-in-time backup to *.old<n>.au3. Once you are done messing with an include file and are only working on the main, you don't want or need to be making changes (or backups) to those files.

I like the idea of a defined user's include section, and I already use subfolders of the default Include folder for that. It might be nice to define that in an .ini setting, so it didn't have to be coded. My includes currently look like:

; Include files section
#include <array.au3>
#include <Project123\_MyIncludeFunc.au3>

Edit: Tweak dumb typo...

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Then do a Ctrl+T on the buffer you are aditing at that moment.

I have the impression you are not agreeing with any of the arguments made ... correct ?

>>I have the impression you are not agreeing with any of the arguments made ... correct ?

I am not disagreeing with them.

I just think it's more convenient to have a mechanism to tidy an entire project with one click or Ctrl-T.

With 3 files, it's not that much of a problem yet, but I envision that it will grow.

So for larger projects, it's just plain inconvenient to have to tidy each one separately.

Just a thought.

Link to comment
Share on other sites

  • Moderators

>>I have the impression you are not agreeing with any of the arguments made ... correct ?

I am not disagreeing with them.

I just think it's more convenient to have a mechanism to tidy an entire project with one click or Ctrl-T.

With 3 files, it's not that much of a problem yet, but I envision that it will grow.

So for larger projects, it's just plain inconvenient to have to tidy each one separately.

Just a thought.

Well the source for Tidy is right there in your AutoIt folder, had you attempted with any varying success on doing it yourself? (Just a question, Not to be made to sound rude or off the beaten path).

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

>>I have the impression you are not agreeing with any of the arguments made ... correct ?

I am not disagreeing with them.

I just think it's more convenient to have a mechanism to tidy an entire project with one click or Ctrl-T.

With 3 files, it's not that much of a problem yet, but I envision that it will grow.

So for larger projects, it's just plain inconvenient to have to tidy each one separately.

Just a thought.

With SciTE and autoit there is no project, just individual scripts.

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

With SciTE and autoit there is no project, just individual scripts.

Doesn't AutoIT kind of have the same philosophical disclaimer Perl does? Something like: "This is a scripting language, not a general programing language. If you are doing huge/expensive projects and your mortgage depends on it, use a 'real' programming language instead."

I think I remember somebody refering to that as "WhipItUptivity" in Perl... :lmao:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Doesn't AutoIT kind of have the same philosophical disclaimer Perl does? Something like: "This is a scripting language, not a general programing language. If you are doing huge/expensive projects and your mortgage depends on it, use a 'real' programming language instead."

I think I remember somebody refering to that as "WhipItUptivity" in Perl... :lmao:

Who knows.

I am using Autoit because it can do things perl can't do.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...