[poppler] Poppler data structures

Albert Astals Cid aacid at kde.org
Tue Nov 2 11:57:30 PDT 2010


A Dimarts, 2 de novembre de 2010, Andrea Canciani va escriure:
> On Tue, Nov 2, 2010 at 12:56 PM, Andrea Canciani <ranma42 at gmail.com> wrote:
> > While trying to solve https://bugs.freedesktop.org/show_bug.cgi?id=30892
> > I found out that poppler is not using std data structures as extensively
> > as it could.
> > 
> > In particular the bug seems to be triggered by the very slow loop
> > http://cgit.freedesktop.org/poppler/poppler/tree/poppler/TextOutputDev.cc
> > #n591 which has a worst case O(n^2) time (that can actually happen if
> > characters are randomly placed on the page as in the pdf attached to the
> > bugreport).
> > 
> > The "obvious" solution would be to use the std data structures (std::set
> > would allow the word to be added in O(lg n), so the time would reduce to
> > O(n lg n)), but this is not trivial because the word list is not just
> > used as a data structure,
> > but it is often directly accessed/iterated.
> > 
> > So I've started looking for easier changes that would be possible (and
> > would cleanup/reduce the code).
> > 
> > I think that GooVector and GooList would be very easy to remove.
> > 
> > Is there any interest in these patches?
> 
> 0001 is an example of what removing GooVector would mean.

Won't commit it since it'll for sure break Hib Linearization patches, will 
clean it up myself once we enter feature freeze.

> 
> > Could somebody give me some hints about what would be the best way to
> > fix TextOutputDev.cc?
> > (The changes involved seems to be very big, so maybe I should start
> > overlaying the set structure on the list and using it only for
> > inserting/searching and try to remove the list only after getting this
> > right)
> 
> I tried this approach and it seems to fix the problem (patches 0002 and
> 0003). It would also make it possible to remove most bookkeeping code from
> TextPool (and maybe some other text classes, too).
> Should I continue working in this direction?
> 
> > Suggestions, comments and "don't do that, we won't merge it" are all
> > appreciated (expecially if they can save me some work/time).
> 
> Patch 0001 might be ready for master, but it is not clear to me if it
> is ok (apparently
> using std is now approved, but there might be some issues removing Goo
> classes because it would make it harder to port changes from xpdf).

As said GooVector is poppler only. So it's ok.

> 
> Patches 0002 and 0003 are probably not yet ready for master, but I would
> like to get some feedback before doing big changes to TextOutputDev.

I'll leave Carlos to review these ones since he is the one that commited your 
patch in the first place so probably has a better understanding on the code 
than me.

Albert

> 
> Andrea


More information about the poppler mailing list