Is there any way to create Map or Set type data structures at compile time?

The reason I ask this is because I'm working with App Engine and I have some data structures that need to be sorted and searched, but they're constant, so I'd like to avoid the time cost of creating them at start-up.

link|improve this question

I'm not sure this is possible - how can an object be created before the application runs? If the data is pre-calculated and stored in a flat file (or some other serialization format) you could load it at startup time, but I don't think the compiler can create data structure object for you... – FrustratedWithFormsDesigner Nov 2 '10 at 15:33
There might not be any available tools to do this, but its possible. For example, its possible to create an array at compile time. If it was sorted, then companion functions could use it as a set. – Chris Dutrow Nov 2 '10 at 15:37
@DutrowLLC: could you show an example of creating an array at compile time? – FrustratedWithFormsDesigner Nov 2 '10 at 15:57
@FrustratedWithFormsDesigner: public static final int[] intArray = {1,2,3,4,5}; – Chris Dutrow Nov 2 '10 at 21:25
@DutrowLLC: Hmmm hadn't thought like that... so even if that array was HUGE there would be no start up cost to create it because it exists at compile time - or something? If there were several million elements, would creating it this way actually be faster? – FrustratedWithFormsDesigner Nov 2 '10 at 23:49
show 2 more comments
feedback

4 Answers

up vote 3 down vote accepted

As with any kind of performance optimization, the first thing to ask yourself is whether the time taken to set up these structures at run time is really affecting performance. How big area your structures? How long do they take to set up? If you haven't measured this you are engaging in premature optimization, which as we know is the root of all evil.

Assuming you have done this, then let's look at the options. How much time can you really save? Your best bet is to use some form of serialization, but you are going to have to write that yourself; even if you define a file format to hold the content, the file is going to have to be parsed, and the in-memory data structures will have to be created. That's going to take time, and it's unlikely to be substantially faster than just creating the Maps or Sets and populating them. In some languages you could theoretically save the bit pattern of the memory for these structures, but even if you can do that you are making yourself vulnerable to any little change in compiler version, and any errors you make will be virtually impossible to debug.

In short, don't do this unless you are sure you need to. Even then, you probably shouldn't do this. The only time you should is if the (probably very small) saving of time will absolutely mean the difference between success and failure of your project.

link|improve this answer
Yeah, I wasn't trying to make my life unnessisarily hard, but I didn't know if you could do something like this inside a class ( instead of static{//do stuff} ): compiletime{ //do stuff }; ... now that would be easy... – Chris Dutrow Nov 2 '10 at 22:27
It's a reasonable question, but the answer is: it's virtually impossible. – DJClayworth Nov 3 '10 at 13:55
feedback

If you're using Spring you can create and populate those data structures in configuration and cache them, but I don't see how you can avoid creating and populating them at runtime. You have to run that code sometime. Sounds like pre-mature optimization to me.

link|improve this answer
feedback

At compile time I don't think its possible. At run time it is possible. Your best solution is to use the app engine and maybe use the cron job trick to keep it hot cron job link

Then you can define the list in a static block of code which will cache on first run of the application

e.g

private static List<Object> list = new ArrayList<Object>();

static {
    for(Value value : getValues()){
        list.add(value);
    }
}

Also see spring annotations for post construct so you can do the same but in a non static environment by annotating a method with @PostConstruct which will be executed when your object is created.

link|improve this answer
feedback

No; creation of ALL your objects always happens at runtime.

That being said, you can declare and initialize Sets together like this:

private static Set<String> set = new HashSet<String>(Arrays.asList("abc", "def"));

This will still be executed at runtime though.

To handle Maps, you'd have to use a static initializer instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.