Jump to content

CleanScript


Recommended Posts

[English]

Hi!

To all who love tiny small scripts and exe files:

In cooperation with Markus I wrote my first real C++ script. It parses AutoIt scripts independently from the compiler so it is a kind of precompiler.

At the beginning it includes the #included files into the script.

Afterwards it can delete comments (all styles) and - which is a very powerful function - unused (uncalled) functions.

The last one is the really new thing - besides of the removement of the comments using C++ is incredibly much faster than with (AutoIt)Tidy.exe.

It is useful because you never use all functions of your include file, but just some few.

It goes through the source three-times to uncover dependencies between functions.

Now CleanScript erases all others from the script and therefore from the resulting exe which means both are smaller by a remarkable amount of lines/bytes.

At the end all empty lines are removed.

An example with Galenda (http://www.autoitscript.com/forum/index.php?showtopic=28336&hl=galenda):

Script size before (with includes): 575 KB

After using CleanScript: 217 KB - with the same functionality...

Compiled Script before: 310 KB

After using CleanScript: 235 KB (around 25% less)

What you have to "obey":

- #include may only contain one space in the line - between the E char and < or "

- If ; have another meaning than a comment (e.g. in MsgBoxes) you have to fix the Dev-C++ 4.9.9.2 source

- Call and Execute can make the program delete funcs that are called that way. A workaround is to call the Funcs anywhere once.

Please test it and give me your input on it. Perhaps a C++ geek could help me to extend it and improve effeciency even more.

Than it perhaps could be part of the official AutoIt compiler one time perhaps.

I think of integrating a scan for unused Const and Vars in the future (espacially for GUIConstants.au3).

Another intersting idea is to put all the UDFs together and just #include <all.au3>. This leads in to a long time for scanning your script in CleanScript, but you never have to worry again if you included all that's necessary.

You can grab it: here:http://www.autoitscript.com/forum/index.php?s=&showtopic=30573&view=findpost&p=240018

or in the attachment.

peethebee

[/English]

[German]

Hallo!

An alle, die gerne kleine Skripte und vor allem kleine Exe-Dateien haben, an die 56k-Modem-Nutzer und 20-GB-Festplatten-Besitzer Posted Image (Ich liebe euch alle Posted Image )

Zusammen mit Markus habe ich ein Programm in C++ geschrieben, das AutoIt-Skript vor dem Kompilieren selbst parst.

Dabei werden zunächst die Includes eingebaut. Dann werden je nach Einstellung in der zugehörigen AutoIt-GUI (GUIS in C++ sind einfach nur pain) Kommentare und/oder ungenutzte Funktionen entfernt. Das Entfernen von Kommentaren beherrscht auch Tidy.exe aus dem SciTE-Lieferumfang. Leider wird das aber in AutoIt gemacht, sodass die Performance bescheiden ist. "CleanScript" erledigt die Kommentarentfernung bei Galenda in weniger als einer halben Sekunde, wobei die meiste Zeit durch Ausgaben auf der Konsole verloren geht. Tidy braucht (zugegeben inklusive Einrücken) 45 Sekunden.

Das Highlight in unserem Programm ist aber zweifellos die Möglichkeit, ungenutzte Funktionen entfernen zu können. Dazu wird der gesamte Quelltext inklusive Include-Dateien auf Funktionen und deren Aufrufe hin untersucht. Funktionen, die definiert, aber nie aufgerufen werden (i.d.R. die große Mehrheit derer, die aus den Includes kommen), werden entfernt.

Zu guter Letzt werden auch die leeren Zeilen noch entfernt.

Mal ein Beispiel anhand der aktuellen Galenda-Version:

Ursprungsgröße Skript (mit Includes): 575 KB

Nach Behandlung mit CleanScript: 217 KB - bei gleicher Funktionalität...

Ursprungsgröße kompiliertes Skript: 310 KB

Nach Behandlung mit CleanScript: 235 KB (knapp 25% Einsparung)

Das kann sich schon sehen lassen, denke ich.

Was man beachten muss:

- Bei #includes, darf nur ein Leerzeichen in der Zeile stehen und zwar zwischen "#include" und < oder ".

- Bei Strichpunkten, die keine Kommentare anzeigen (z.B. in MsgBoxen oder Strings) kann es zu unerwünschten Resultaten führen, wenn man die Kommentare entfernen lässt. Dazu müsste man den Dev-C++ 4.9.9.2-Quelltext leicht anpassen.

- Call und Execute können bei der Funktionsenternung Probleme machen, da Aufrufe der Funktionen dann nicht erkannt werden. Abhilfe kann ein Aufruf an beliebiger anderer Stelle schaffen.

Bitte ausführlich testen und vielleicht auch die ein oder andere Einsparungszahl posten...

In meinem deutschen Forum kann man es downloaden (kurz: http://www.autoit.de): http://www.autoitscript.com/forum/index.ph...st&p=240018

peethebee & Markus

[/German]

Edited by peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

  • Replies 53
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Hi againg!

Just 57 views and no single answer is not much...

Did anyone at least test it?

I think it is already very useful and it will be still improved.

peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

The performance is not that good (in C++ thinking, it is veeery fast, compared to AutoIt), because we coded it inefficiently as it was our first script in C++, but we try to improve it.

Moreover Markus is atm including a feature to strip unused Consts and vars.

peethebee

Edited by peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

I think this has the potential to be a great utility. I have already linked a couple of people to it. I havent tested it myself yet, as I have never been concerned about that.

I hope to be able to test it and look at the code. I have already downloaded the source.

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Link to comment
Share on other sites

We would like to have some C++ geeks to have a look at it to improve the speed which is definately possible.

We moreover hope too that it will be great ;-)

peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

I tested it with a 4000 lines script my mine (Galenda) and it worked perfectly.

Did you use the AutoIt-GUI to give the right parameters?

peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

I tested your program. But it does not save any optimized version on my script. It just show some info in German in the console window.

"Quelldatei: C:\DOCUME~1\ADMINI~1\Desktop\Testprogram.au3

Zieldatei: C:\Documents

Aufgabentyp: CF-

Datei in Array einlesen

Datei in Array eingelesen

Includes einbauen

Includes eingebaut

Datei schreiben ohne Optimierungen

Datei geschrieben.

Entferne Kommentare.

Kommentare entfernt.

Durchgang: 1

Funktionsaufrufe untersuchen...

Funktionsaufrufe aufgelistet.

Durchgang: 2

Funktionsaufrufe untersuchen...

Funktionsaufrufe aufgelistet.

Durchgang: 3

Funktionsaufrufe untersuchen...

Funktionsaufrufe aufgelistet.

Leere Zeilen entfernen.

Leere Zeilen entfernt.

Ergebnis in Datei schreiben.

Ergebnis in Datei geschrieben.

Dateigroesse nicht optimiert: 13130 Bytes

Dateigroesse optimiert: 7786 Bytes

Einsparung: 40.7007%

Fertig.

Press any key to continue . . .

"

I did test both "CleanScript GUI.exe" & CleanScript GUI.au3.

Selected Options:

"Remove comments"

"Remove unused functions"

"Use beta includes"

(Tested on Windows XP SP2.)

I also tried without the Beta includes option but that didn't make any difference. The finished file can't be found anywhere.

UPDATE: I found the bug. If the destination path does include a "space" then the file will not be written!

Edited by Cyberworld
Link to comment
Share on other sites

UPDATE: I found the bug. If the destination path does include a "space" then the file will not be written!

Ah right, thank you, our mistake:

Because of possible "space", we make "FileGetShortName" for the source path. If there is no dest path, we just cut 4 letters from that string and add _clean.au3 --> bug. I'll fix that.

..But the compiled program is still the same size. Does it matter if Autoit is installed in a different path than the default?

No, it shouldn't matter, as we search the install dir in the registry.

I think your program did not find the includes because the "# <include>" lines are still in my source...

That's possible.

So far we can't find all #include lines in your script. We only find #include if it's written at the start of the line with no space and we only find

#Include

and

#include

as C++ is very strict with uppercase and lowercase written strings.

But i'll change that, that we can also find

#iNclUdE

in your script, not that hard.

But there shouldn't be a space between start of line or anywhere else in the line, except between #include and < or "

"It's easier to disintegrate an atom than a prejudice." (A.Einstein)---------------------------------------------------------------------------My C++ - tools:Tidy tool-->indents your c++ sourceCleanscript --> cleans autoit-code before compiling (co-author: peethebee)My tools:GUIBuilder-->build your window and get the source; german versionMy Games:OnlineGameCenter-->Online Chess and Connect4 with a rtf-chatSnake-->including a level editor to build your own levelsTetris-->the well known game, big funOther things:Tower of Hanoi-->perfect riddler with graphic output

Link to comment
Share on other sites

New Version:

- "space"-bug fixed

- CleanScript also finds "#iNclUdE" now

- you can decide between full and less output in the gui and give the number of the runs for "delete unused functions"

- CleanScript detects all var-declarations now, and deletes them, if unused (very effective for GUI-Constants for example)

Markus

Edited by Markus

"It's easier to disintegrate an atom than a prejudice." (A.Einstein)---------------------------------------------------------------------------My C++ - tools:Tidy tool-->indents your c++ sourceCleanscript --> cleans autoit-code before compiling (co-author: peethebee)My tools:GUIBuilder-->build your window and get the source; german versionMy Games:OnlineGameCenter-->Online Chess and Connect4 with a rtf-chatSnake-->including a level editor to build your own levelsTetris-->the well known game, big funOther things:Tower of Hanoi-->perfect riddler with graphic output

Link to comment
Share on other sites

New Version:

- "space"-bug fixed

- CleanScript also finds "#iNclUdE" now

- you can decide between full and less output in the gui and give the number of the runs for "delete unused functions"

- CleanScript detects all var-declarations now, and deletes them, if unused (very effective for GUI-Constants for example)

Markus

Hi,

When I use it on one of my scripts (the first one I tested) I get an error about a missing variable.

I use AutoIt v. 3.2.0.1 (Removed the beta already).

The problem is that when an included script includes another script for the constants, they are not added in the cleaned script.

To clearify what I mean I have created a small example. (see attachment)

Main.au3 = the original script, Main_cleaned.au3 is the script alter cleanup. (Obvious I guess)

The include file that is causing the problem in my tested script is GuiCombo.au3, which is including ComboConstants.au3

Hope this can be solved.

For the rest, I like this program. It is fast and usefull.

Thanks, Dick

Note: Sorry, confusing name for my attachment. It contains the DEMO scripts, not the cleanup program.

CleanScript.zip

Edited by Dickb
Link to comment
Share on other sites

But there shouldn't be a space between start of line or anywhere else in the line, except between #include and < or "

I see, That's why it doesn't work for me. I use "TAB"s before my #include.

Would it be difficult to make the program to strip the leading "Space"s and "TAB"s before it check the lines for #includes?

Edited by Cyberworld
Link to comment
Share on other sites

peethebee,

When I run your CleanScript GUI.au3 it does not produce an outputted script.

Am I missing something?

Thanks,

taurus905

"Never mistake kindness for weakness."-- Author Unknown --"The highest point to which a weak but experienced mind can rise is detecting the weakness of better men."-- Georg Lichtenberg --Simple Obfuscator (Beta not needed.), Random names for Vars and Funcs

Link to comment
Share on other sites

But there shouldn't be a space between start of line or anywhere else in the line, except between #include and < or "

I think Markus can fix this right when allowing all cases of incLuDE ;-)

@taurus905: Did you try it with the new version? Could you give the script's output here?

peethebee

Edited by peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

@peethebee

Very nice idea! :P

I think new options could be added:

1) Remove leading spaces/tabs

2) Remove trailing spaces/tabs

3) Remove empty lines

1) and 2)

If I want achieve absolutely minimum size of output EXE no matter of readability decompiled script

this option will be usefull. Note that I have original sources for reading, so script_clean.au3 is only temporary file for compile and not for reading.

3)

- It can be optional (if it's now hardcoded)

- At the end of my cleaned script are still two empty lines (@CRLF@CRLF)

***

And I also think some sort of these things could be added to Aut2Exe as compiler options (for optimize size of EXE)

- for example as one new option with name:

Strip unused stuff from script or

Optimize script for minimum EXE size or

something similar ...

Link to comment
Share on other sites

Thanks for your cheering!

We are working on one big thing, which is calling the new C-style Tidy2 and the aut2exe right out of the cleanscript.au3. This would not require additions or changes to the stable aut2exe.

point 1) and 2) could be done by tidy before running cleanscript over it.

point 3) is now hardcoded as there would be many empty lines otherwise. The tow lines should be possible to take out by script. We'll change that.

peethebee

vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvGerman Forums: http://www.autoit.deGerman Help File: http://autoit.de/hilfe vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

Link to comment
Share on other sites

  • Developers

point 1) and 2) could be done by tidy before running cleanscript over it.

point 3) is now hardcoded as there would be many empty lines otherwise. The tow lines should be possible to take out by script. We'll change that.

Tidy can also remove empty lines... :P

*** Remove Empty lines from Script Source

Remove_Empty_Lines=0

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

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...