vote up 0 vote down star

There are a couple of "advanced" table/spreadsheet SWT widgets out there (Nattable, Nebula Grid), but none of them support really large datasets. Nattable is the one which comes closest, but it still has limitations in the datatypes it uses causing the number of rows in the table to become far to limited.

I need to be able to represent at least 2^32 rows, preferrably 2^64.

flag

72% accept rate
what user in their right mind want's to see 2^32? I suggest you revist your requirements. – arcticpenguin Oct 28 at 22:53
Nobody is talking about seeing 2^32 rows. It is all a matter of addressing. The model I have is a 32 bit memory space. If I can't set the number of rows to 2^32, I will have to implement my own paging scheme, which I was hoping to avoid. – JesperE Oct 29 at 8:04

1 Answer

vote up 0 vote down

What's wrong with SWT.VIRTUAL with a reguar table? You can then use a LazyContentProvider, which gives you a callback for loading what's needed in the view.

Something like this...

TableViewertableViewer = new TableViewer(parent, SWT.VIRTUAL|SWT.BORDER|SWT.V_SCROLL);
// skipping the noise
tableViewer.setItemCount(100000);
tableViewer.setContentProvider(new LazyContentProvider());
tableViewer.setLabelProvider(new TableLabelProvider());
tableViewer.setUseHashlookup(true);
tableViewer.setInput(null);
link|flag
Try setItemCount(Integer.MAX_VALUE). The SWT Table widget has a backing array for all items. The only "virtual" about it is that the actual value isn't fetched until it is needed. This works well if the retrieval is expensive, but doesn't scale beyond a couple of million rows. – JesperE Oct 29 at 8:00
If you need exactly 2^32 rows, use a table with SWT.VIRTUAL style with Integer.MAX_VALUE items, and when you have to show for example item 500(out of 2^31), you will print item no. 1000 (of 2^32). – True Soft Nov 3 at 18:44
Unfortunately, setItemCount(Integer.MAX_VALUE) causes a OutOfMemory error, presumable because the Table control tries to create an array of that size. – JesperE Nov 4 at 12:36

Your Answer

Get an OpenID
or

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