[api-issues] [Issue 41675] memory leak while converti ng

2010-12-17 Thread fl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675


User fl changed the following:

What|Old value |New value

  CC|'gbpacheco,masayan,shenmux|'fl,gbpacheco,masayan,shen
|09,vinu_kumar'|mux09,vinu_kumar'





--- Additional comments from f...@openoffice.org Fri Dec 17 08:55:59 + 
2010 ---
cc myself

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2010-11-03 Thread thierry_thelliez
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from thierry_thell...@openoffice.org Wed Nov  3 
19:23:27 + 2010 ---
I just hit this bug while using a small Python based script found at:

http://www.linuxjournal.com/content/convert-spreadsheets-csv-files-python-and-pyuno-part-1v2

When converting Excel files to CSV, memory usage slowly increases. Server
crashes after a few hundreds conversion.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2010-06-10 Thread gbpacheco
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675


User gbpacheco changed the following:

What|Old value |New value

  CC|'masayan,shenmux09,vinu_ku|'gbpacheco,masayan,shenmux
|mar'  |09,vinu_kumar'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2010-03-07 Thread bornmw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from bor...@openoffice.org Sun Mar  7 18:16:19 
+ 2010 ---
My code opens a simple Calc document with four cells filled and a Chart based on
them.
It exports the chart (via XFilter) and closes the document (the right way as
described at
http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Closing_Documents).

After 1000 of such operations (less than 10 minutes) soffice.bin grows from 84Mb
to 330Mb.
The workaround that I'm going to use is to kill OO process periodically, so it's
ok to mark this issue as FIXED.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2010-03-07 Thread bornmw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from bor...@openoffice.org Sun Mar  7 18:46:41 
+ 2010 ---
And concerning the comment from mnasato about issue being too generic.
Lets make it clear: this issue is not related to any sort of import/export.
OO leaks even if you just open and close a document - just like that.
The next piece of code will make OO grow 100Mb per 2 minutes (demo.ods is a
spreadsheet with four cells and one chart):

public static void main(String[] args) throws Exception {
  XComponentContext xCompContext = 
com.sun.star.comp.helper.Bootstrap.bootstrap();
  XMultiComponentFactory xMCF = xCompContext.getServiceManager();
  Object xDesktop = xMCF.createInstanceWithContext(com.sun.star.frame.Desktop,
xCompContext);
XComponentLoader aLoader = UnoRuntime.queryInterface(XComponentLoader.class,
xDesktop);
PropertyValue[] loadProps = new PropertyValue[]{new PropertyValue(Hidden,
0, true, null)};
  while (true) {
XComponent xComponent = aLoader.loadComponentFromURL(file:///tmp/demo.ods,
_blank, 0, loadProps);
close(xComponent);
  }
}

private static void close(XComponent xComponent) {
  XCloseable xCloseable = UnoRuntime.queryInterface(XCloseable.class, 
xComponent);
  if (xCloseable != null) {
try {
  xCloseable.close(true);
} catch (CloseVetoException e) {}
  } else xComponent.dispose();
}

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2010-01-14 Thread shenmux09
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675


User shenmux09 changed the following:

What|Old value |New value

  CC|'masayan,vinu_kumar'  |'masayan,shenmux09,vinu_ku
|  |mar'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-10-27 Thread dpmelo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from dpm...@openoffice.org Tue Oct 27 11:06:48 
+ 2009 ---
We're experiencing a similar problem. An application converts many .doc archives
to odt format, and, at a particular moment, the soffice process had 5.2G of
resident memory, in a 8GB machine.

We'll start monitoring closer this problem, but seems really strange to me the
age of this bug, almost 5 years. Is this Category of milestone (OOo Later)
hidden to the Open Office team?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-10-22 Thread groverblue
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from groverb...@openoffice.org Thu Oct 22 21:00:10 
+ 2009 ---
Is there any way to monitor soffice.bin for active/unreleased objects?  I just
processed about 600 documents and used memory jumped from 80M to 190M, and it's
not being released.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-09-24 Thread coldwinston
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from coldwins...@openoffice.org Thu Sep 24 14:39:59 
+ 2009 ---
Amazing. I've been subscribed to this bug for nearly 4 years now, and I'm still
getting emails about it :)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-09-16 Thread zeroin23
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from zeroi...@openoffice.org Thu Sep 17 01:44:40 
+ 2009 ---
good job mnasato, haha though i am using the java OODaemon instead for 
production. 

is it possible to write unit test case for each of the input and output pair so 
that it will be easier for the developer to test? 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-05-21 Thread kaplan4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from kapl...@openoffice.org Thu May 21 22:32:31 
+ 2009 ---
I am working on a software application where we use the OpenOffice software in
server mode.  We are running OpenOffice 3.0.  We use OpenOffice to extract text
from Microsoft formatted documents (word, PowerPoint and Excel).  After running
for about an hour (I know, not much of a metric), the OpenOffice server hangs. 
By hang I mean: all processing stops (the CPU usage is approximately zero), but
the OpenOffice process is still live (or at least shown in the Windoz process
monitor).  Our guess is that this problem is due to a memory error.

For anyone using OpenOffice in server mode, this is a pretty critical problem.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-05-21 Thread mnasato
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from mnas...@openoffice.org Thu May 21 23:14:24 
+ 2009 ---
I guess the problem with this sort of bug reports - and why they end up getting
stuck in OOo Later forever - is that they are a bit too generic.

We (as users) should follow the rule of one problem, one issue. How can we
expect the OOo team to fix all possible memory leaks for all possible
import/export formats as part of a single issue?

I tried to focus this issue on a specific case, i.e. PPT import which seemed to
be the biggest culprit, in my comment (some 3 years ago now). But people keep
adding generic complaints relating to various formats, with the only result that
this issue will never be solved, because it's impossible to solve an ill-defined
problem.

(Incidentally, JODConverter 3.0 for its part now does provide a workaround: it
automatically restarts OOo - see http://jodconverter.googlecode.com if 
interested.)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2009-02-09 Thread vinu_kumar
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675


User vinu_kumar changed the following:

What|Old value |New value

  CC|'masayan' |'masayan,vinu_kumar'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 41675] memory leak while converti ng

2008-12-08 Thread maibee
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from [EMAIL PROTECTED] Mon Dec  8 15:56:01 + 
2008 ---
I can confirm the issue in OO version 3.0. Opening doc-files leaves about 20kb
and ppt about 700kb in memory (depending the size of the files).
A fix would be very, very nice :)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[api-issues] [Issue 41675] memory leak while converti ng

2008-12-08 Thread mramuta
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from [EMAIL PROTECTED] Mon Dec  8 17:01:49 + 
2008 ---
I too have a very difficult time understanding what after four years this 
defect doesn't seem to be important. 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[api-issues] [Issue 41675] memory leak while converti ng

2008-06-12 Thread masayan
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675


User masayan changed the following:

What|Old value |New value

  CC|''|'masayan'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[api-issues] [Issue 41675] memory leak while converti ng

2008-01-31 Thread nushi7
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from [EMAIL PROTECTED] Thu Jan 31 16:40:16 + 
2008 ---
The problem also occurs when you try to convert a ppt to an swf.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[api-issues] [Issue 41675] memory leak while converti ng

2006-07-27 Thread mnasato
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from [EMAIL PROTECTED] Thu Jul 27 07:53:09 -0700 
2006 ---
Being the author of the mentioned JOOConverter
(http://sourceforge.net/projects/joott/) open source project I've done some
testing myself to make sure the problem was not with my Java code. I'm using OOo
2.0.3 on Linux.

The memory usage increase seems to greatly vary based on the type of document
used. For example, ODT to PDF only increases by 2.5kb per conversion, which may
not be a memory leak at all.

However a PPT to PDF conversion using the document attached to this issue does
produce a significant increase, approx 1mb for each conversion!

Just loading and disposing the document without exporting to PDF results in
almost the same increase. While loading and disposing the same document but in
ODP format shows not much increase at all.

So my guess is that most of the leak is caused by the PPT import filter.

However, converting from ODP to PDF also increases memory usage by some 200kb
per conversion so there may be a problem with the impress PDF export filter as 
well.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[api-issues] [Issue 41675] memory leak while converti ng

2006-07-16 Thread bobharvey
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41675





--- Additional comments from [EMAIL PROTECTED] Sun Jul 16 14:04:33 -0700 
2006 ---
I can't believe, a year and a half on and a couple of releases later that this
is still OOo later

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]