Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0037643 | Openbravo ERP | A. Platform | public | 2018-01-15 18:24 | 2018-02-22 18:18 |
|
Reporter | AugustoMauch | |
Assigned To | AugustoMauch | |
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR18Q2 | |
Merge Request Status | |
Review Assigned To | caristu |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0037643: Improve the use of the ScriptEngine by reusing engine instance |
Description | Currently, each time that we want to eval a javascript expression using the ScriptEngine, we are create a new ScriptEngineManager and a new ScriptEngine instance. Then the bindings are set to the instance, and the expression is evaluated.
This can be improved by sharing a single instance of the Script, since creating the ScriptEngine can sometimes be expensive, and the class is thread safe (see [1])
[1] https://stackoverflow.com/a/30159424 [^] |
Steps To Reproduce | - |
Proposed Solution | Instead of creating a new ScriptEngine instance each time a javascript expression needs to be evaluated, reuse the same one and set the bindings to each evaluation, instead of to the engine itself. |
Additional Information | |
Tags | Performance |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2018-01-15 18:24 | AugustoMauch | New Issue | |
2018-01-15 18:24 | AugustoMauch | Assigned To | => AugustoMauch |
2018-01-15 18:24 | AugustoMauch | OBNetwork customer | => No |
2018-01-15 18:24 | AugustoMauch | Modules | => Core |
2018-01-15 18:24 | AugustoMauch | Triggers an Emergency Pack | => No |
2018-01-16 17:17 | hgbot | Checkin | |
2018-01-16 17:17 | hgbot | Note Added: 0101727 | |
2018-01-16 17:17 | hgbot | Status | new => resolved |
2018-01-16 17:17 | hgbot | Resolution | open => fixed |
2018-01-16 17:17 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/120a6a75f9b757f20a7434d5cbb9d0cfe271a831 [^] |
2018-01-16 18:16 | caristu | Review Assigned To | => caristu |
2018-01-19 07:59 | alostale | Tag Attached: Performance | |
2018-01-19 14:33 | hgbot | Checkin | |
2018-01-19 14:33 | hgbot | Note Added: 0101796 | |
2018-01-19 14:34 | caristu | Note Added: 0101797 | |
2018-01-19 14:34 | caristu | Status | resolved => closed |
2018-01-19 14:34 | caristu | Fixed in Version | => 3.0PR18Q1 |
2018-01-22 11:17 | caristu | Fixed in Version | 3.0PR18Q1 => 3.0PR18Q2 |
2018-02-22 18:18 | hudsonbot | Checkin | |
2018-02-22 18:18 | hudsonbot | Note Added: 0102659 | |
2018-02-22 18:18 | hudsonbot | Checkin | |
2018-02-22 18:18 | hudsonbot | Note Added: 0102667 | |
Notes |
|
(0101727)
|
hgbot
|
2018-01-16 17:17
|
|
Repository: erp/devel/pi
Changeset: 120a6a75f9b757f20a7434d5cbb9d0cfe271a831
Author: Augusto Mauch <augusto.mauch <at> openbravo.com>
Date: Tue Jan 16 17:16:51 2018 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/120a6a75f9b757f20a7434d5cbb9d0cfe271a831 [^]
Fixes issue 37643: OBScriptEngine can be used to evaluate javascript scripts
There were four classes that were creating a new instance of ScriptEngine each time they needed to evaluate a javascript script. This was not the better way
to do it, since creating a ScriptEngine instance can be expensive, and that class is thread safety if properly used (i.e. by setting the bindings to each
evaluation instead of to the script engine itself).
A new singleton class has been added, OBScriptEngine, that is now used by all the classes that need to evaluate javascript scripts.
---
M modules/org.openbravo.client.application/src/org/openbravo/client/application/ParameterUtils.java
M modules/org.openbravo.client.application/src/org/openbravo/client/application/window/OBViewFieldHandler.java
M modules/org.openbravo.userinterface.selector/src/org/openbravo/userinterface/selector/SelectorDefaultFilterActionHandler.java
M src/org/openbravo/base/expression/Evaluator.java
A src/org/openbravo/base/expression/OBScriptEngine.java
---
|
|
|
(0101796)
|
hgbot
|
2018-01-19 14:33
|
|
Repository: erp/devel/pi
Changeset: 8dbb68df297c6ae5ad18149c9389ff399252b422
Author: Carlos Aristu <carlos.aristu <at> openbravo.com>
Date: Fri Jan 19 14:15:15 2018 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/8dbb68df297c6ae5ad18149c9389ff399252b422 [^]
related to issue 37643: avoid definining getInstance() method as synchronized
The instance variable is now initialized on first class load instead.
---
M src/org/openbravo/base/expression/OBScriptEngine.java
---
|
|
|
|
Code reviewed + tested OK. |
|
|
|
|
|
|
|