In Actionscript 3, is there any reel overhead between importing a full package versus importing independant classes?
E.g.: import flash.display.* vs. import flash.display.Sprite
I know it's a good practice to import only the needed classes from a package to avoid conflicts, but I've often been told it also has a cost in term of the compiled file size if I import full packages in many different classes that only use some of the classes from those packages.
I wonder if one class will be imported once for all for the whole project, or if imports are multiplied among the classes that use them.
Resulting compiled file size and runtime performance are two different aspects this question embraces.
The only hit should be compile time, but rday writes that there is apperently a small hit. But that should be something that Adobe will fix in the future.
The import statements should not really be looked on as actual imports, it is merely a way for the compiler to know which classes you are refering to.
eg. If you made you own Point class and it was being used in another package, the compiler needs to know if you are refering to your own Point class or the Adobe Point class.
The alternative would be to write the fully qualified name evertime you refered to a class.
eg. var mySprite:flash.display.Sprite = new flash.display.Sprite();
As pointed out by Juan Pablo Califano in the comment, this does not actually work with the compiler (though I think it might work with AS2). I merely meant to point out why we have import statement to begin with.
In any case it should not effect the compiled file if you import a whole package (though it apperently does). It will how ever effect compile time, since you are giving the compiler more stuff it needs to look through.
As for "importing" the same class more than once. It will not make a difference. The compiler will only include the same class once. Else the compiled file size would quickly spin out of control, since most classes refer to many classes which again refer to others etc. But again, Adobe might have optimizing to do there.
Bottom line is you should only import the stuff you need, there is no real advantage to importing a whole package. Just use a proper coding tool like FlashDevelop (it is free) and you do not even have to write the import statements yourself.
On a side note, if you are compiling a library (where a class not refered to are also included), im not sure if importing a external package might include that in you compiled file. That might have an actual impact; though hopefully Adobe did not screw up there ;)
Addressing ryanday's points, I can't explain the extra 3 bytes, but a few notes...
The ActionScript Design Patterns book also discourages this due to excess baggage
Yep, on page 115, but I think it is wrong and submitted errata to that effect.
The ActionScript 3 spec says all public names from the package will imported if you use the '*'. So there is a hit,
It kind of does, but I disagree re the interpretation and hit. It says: "The names of package members are made visible..." (in full). In this context, it is referring to making names of members visible to the compiler and editor tools, not visible within the compiled SWF. i.e. does not mean the classes get compiled into the SWF - unless they are actually used (a variable declared of that type).
Another way of looking at this, you could manually import flash.display.MovieClip. But if you don't create any instance of MovieClip, the MovieClip class will not get compiled into the final SWF.
To satisfy myself, I compiled the following helloworld in 3 ways, outputting link-report as suggested by #secoif...
package
{
import flash.display.Sprite;
import flash.text.TextField;
public class ASHelloWorld extends Sprite
{
public function ASHelloWorld()
{
var tf:TextField = new TextField();
tf.text = "Hello World!";
addChild( tf );
}
}
}
First, as written, link report:
<report>
<scripts>
<script name="~/Documents/eclipse3.5carbonFbPlugin-FX4-LS10/ASHelloWorld/src/ASHelloWorld.as" mod="1278415735000" size="682" optimizedsize="344">
<def id="ASHelloWorld" />
<pre id="flash.display:Sprite" />
<dep id="AS3" />
<dep id="flash.text:TextField" />
</script>
</scripts>
<external-defs>
<ext id="AS3" />
<ext id="flash.text:TextField" />
<ext id="flash.display:Sprite" />
</external-defs>
</report>
Second, delete the link report file and change imports to:
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.text.TextField;
Clean build, and the link report looks exactly the same. Same size, same optimizesize, same linked classes.
Third, delete the link report file and change imports to:
import flash.display.*;
import flash.text.*;
Clean build, and the link report looks exactly the same. Same size, same optimizesize, same linked classes.
Only Sprite and TextField classes make it to the SWF in each case.
Looking at the actual SWF file size on disk, there does seem to be a slight (1 or 2 byte) variation over the 3 versions. No worse than for the larger SWF referred to in ryanday's post.
The ActionScript 3 spec says all public names from the package will imported if you use the '*'. So there is a hit, although it may not be a large one depending on the package size. The ActionScript Design Patterns book also discourages this due to excess baggage, as well as some Adobe ActionScript tips.
That being said, I took one as component in an app I wrote and
import mx.containers.*;
import mx.events.*;
import mx.managers.*;
Instead of the single class names. My size increased by 3 bytes. Now, the entire app is 935kB, so I probably have those classes imported elsewhere, and the hit wasn't very big. I bet the smaller your application is, the larger the impact on your compile size will be(percentage wise).
There is absolutely no difference in the compiled code whether you import the entire package or just the classes you are using. Imports are just important for the compiler to find where the classes are.
You can try to decompile or look at the bytecode before and after.
You can check exactly what classes are being imported by using the 'link-report' compiler option
The compiler may take longer to sort out what to include and what not to include, but if you check out your link reports, you'll notice it only includes what it uses. :)
As with most languages there is little or no performance overhead related to importing entire packages rather than individual classes.
However it is more a good practice since it gives a much more concise veiw of dependencies for your class
good practice is in general to have code that is readable ... having a class start with 200 import statements thus would be rather bad practice ...
in as3, an import statement only adds a new scope to the compiler's identifier resolution ... what is compiled into an SWF and what is not, is not determined by the import statements, but by actual dependancies, i.e. code from class A using class B ...
so at runtime it does not make any difference, how you imported your classes ...
greetz
back2dos
I discovered than for AS3, just merely using import statements will include the classes in your output, regardless of whether those classes are referenced in actual code. Contrast this against Java which will only include classes if they are actually used, not just mentioned in import statements. But I found this useful when designing a Flash API, just mention those classes in import statements and they will be included.
Related
I am learning chisel now so I get lots of questions.
I know import chsel3._ can add Chisel library files into the codes.
And I see the chisel codes in chisel-tutorial that have import chisel3._ as well as import chisel3.util._
My question is when do I need to add import chisel3.util._ or something excludes import chisel3_?
Another question is when I write testbench ,What should I extend?
class XXTests(c:XX) extends PeekPokeTester(c){....}
or
class XXTests(c:XX) extends Tester(c){....}
When should I add import chisel3.iotesters.{PeekPokeTester, Driver, ChiselFlatSpec}?
Thanks in advance.
`
Basically, package chisel3 contains the main Chisel primitives like Module, UInt, and Reg while chisel3.util contains useful utilities like Arbiter, Queue, and PriorityEncoder. The distinction isn't always obvious, so it's best to look at the API documentation to see what is available in each: https://chisel.eecs.berkeley.edu/api/index.html (Note that package chisel3 actually points to members that are mostly in chisel3.core).
For your second question, take a look at the chisel-template (which is a good starting point for new Chisel projects). The design is located in src/main/scala/example/GCD.scala. You may note that it only imports chisel3._ because it doesn't use anything in chisel3.util. The test is located in src/test/scala/examples/test/GCDUnitTest.scala and it imports Chisel.iotesters (it should be chisel3.iotesters--this is a dated import but it still works). The test uses the PeekPokeTester to test the design. You should be extending PeekPokeTester or other testers located in the chisel-testers. I believe that extending Tester is old Chisel 2 API but I'm not certain.
I have a basic problem with knowing which classes to import for a given application, renderer, AS package, mxml component, etc. There seems to be hundreds of classes (both mx and flash) and I'm never sure which one(s) to import... so I just keep adding import statements until the errors go away. Is there a reference somewhere that I don't know about? Or does this just come with experience? Also... does importing a load of classes actually make the file size larger or does Flex only import the classes used nregardless of what I specify? If it only uses what is needed, why wouldn't everyone just do: import mx.*;
I would suggest that if you find yourself bringing in tons of imports, you should ask yourself: Does this class do to much?
It is less of a technical issue, and more of problem of object-oriented design -- maintainability, testability and stability.
I do my best to limit my external dependencies. I try to conform to SOLID principles that tell me that classes should exist for one reason. If a class does too much, it is a "code smell" and an indication that you should split it up.
How much is too much? It is tough to have a specific litmus test or limit... I just ask myself "What does this class do"? If my answer contains an "and" in it, then I consider splitting it up.
I think your problem is a not a real problem if you use any half decent IDE. If you're not using one, you probably should (even if it's not stricly necessary and you can write and compile with notepad and the command line).
If you are using Flex/Flash Builder, it will add the imports automatically (and remove the unneeded ones as well). Also, you can use Ctrl + SPACE to prompt autocomplete, which should add the necessary imports.
Flash Develop also manages this for you (the shortcut was Ctrl + Shift + 1 if I recall correctly, but I haven't used FD for a while).
There are other IDEs out there that I haven't personally used but also have this very basic feature.
If you're using the Flash IDE, well, it really sucks for writting code, so you should probably consider writting your code in some other less brain-dead editor if you plan to do anything more than a couple of lines of code here and there (again, you can write code in the Flash IDE but why not taking advantage of better tools when they're available?).
When you get an error, look at the API Reference for the class, and then either import the whole package or just the class you want. Highlighting the class and hitting F1 should also work (but I never search help this way).
As for file size, see my answer on Is it possible to dynamically create an instance of user-defined Class in Action Script 3?
As Juan pointed out, use FlashDevelop, it is a great (and free) IDE.
If you're using FlashDevelop with the Flex Compiler, you can compile straight from FlashDevelop, and use the refactoring tools they offer to slim down your imports.
Aside from that though, if you're not referencing them, they don't get compiled, so it's not like your compiled swf is any bigger.
Just wondering, is it possible to limit number of 'imports' in AS3 code by defining them in parent class or in any other way?
I wouldn't recommend it but you can use #include to include a standard set of imports (or any AS3 code).
Also you can use import com.whatever.* to import by package instead of class.
I would say that you shouldn't worry about it! It doesn't matter how much import statements you have. If you need to use the classes, then you need to import them.
A good IDE (e.g. FlashDevelop) will manage your imports anyway, so you don't even need to think about it.
I personally think (and I am sure that a lot of programmers would agree) that you should hide/obscure how a system works from yourself. It should be obvious what is going on, and not "weird". Stick to the best practices, which is having your imports at the top of your class.
I wrote a class that performs an asynchronous loop. It needs a package name. I already have a util package, but feel resistant to put half of my classes in that package. If it really belongs there, I'll put it there, but I'd feel much better if I can find a more appropriate/specific package. What do you think?
peach for parallel each.
Shamelessly stolen from the Ruby project with the same name.
A package is normally created for more than one class. If your class uses some helper classes, then it should go in a separate package; differently, you should use the generic package you already have.
I ended up going with "timer" as the package name after finding many similarities with the Timer class that sits in the timer package.
Tutorials usually don't deal with scope in Actionscript. Can you point me to some documentation and/or explain what should I know about it. I want to avoid problems arising from certain classes are not visible at certain places.
These should help.
Function scope:
http://livedocs.adobe.com/flex/3/html/help.html?content=03_Language_and_Syntax_21.html
Packaging and namespace:
http://livedocs.adobe.com/flex/3/html/03_Language_and_Syntax_04.html#119303
You're a bit vague, but hopefully I'm getting you ;)
Scope for classes are generally pretty easy to handle, it mostly comes down to packages.
Packages are created in a simple tree structure, and in ActionScript3 the filestructre has to follow the namespaces. Which makes it even easier.
You can access any class from anywhere, but if it's in another package you will need to "import" the class. This is done by writing an import statement in the beginning of class or interface where you need to use it. Like so:
import flash.display.MovieClip;
There is an exception to this rule, a class can be declared with the internal keyword, in which case the class will only be available within that package. This is mostly used for helper classes.
Basicly you should not worry about classes not being available.
NB:
You create package with the package keyword.