Hi<br><br>It is probably that myfaces implementation of UIData do something different<br>that RI. Myfaces uses a map to hold dataModel instances to handle better<br>the use case when nested datatables occur.<br><br>The problems described on the last email are different to the one I&#39;m trying to<br>
solve. My only intention is make note that it is possible to solve the problem<br>described on the original proposal, only do very small changes on the spec <br>(in other words the scope of the proposal is not that huge, the dataModel<br>
handling is different from the component state handling, but both problems<br>are related).<br><br>Really I would like to see a way to call markInitialState like the one described.<br>The current way to call it is a chaos. I had to put this call on different tag handlers<br>
and the order how this method is called is the inverse one than someone could<br>expect. Without this change, if someone wants to do something similar needs to<br>call clearInitialState, save and then call again to markInitialState on the code <br>
that saves the state.<br><br>The other change described, a param to indicate when the current view is using<br>partial state saving and all calls to markInitialState should occur, to diferentiate<br>between the call when the view is built and the call when a row is set is document<br>
an implementation detail that both myfaces and mojarra contains (I suppose, <br>otherwise
how ComponentHandlerDelegate implementation could know when <br>do not call this method if the current view is not using PSS ). Note the documentation<br>of ComponentHandler just says this method is called but does not says anything<br>
about the conditions, so the implementation should decide that but there is no<br>formal way to comunicate this state, but if you look closely, ComponentHandler <br>&quot;delegate&quot; all that steps described on the javadoc, so in reality this class does<br>
not do anything described there and that can be considered an error in the javadoc.<br>All that documentation should be on <br>TagHandlerDelegateFactory.createComponentHandlerDelegate.<br><br>regards,<br><br>Leonardo Uribe<br>
<br><div class="gmail_quote">2010/3/19 Alexander Smirnov <span dir="ltr">&lt;<a href="mailto:asmirnov@exadel.com">asmirnov@exadel.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The problem is far worse then you think :-( UIData itself has transient<br>
properties, the most important of them is dataModel. Standalone UIData<br>
caches model between phases, but resets it if you have enclosed<br>
iteration components that gives huge impact on performance if data model<br>
does not cache results itself. In Mojarra, UIRepeat knows about UIData<br>
but latest has no clue about repeater, so if you put data table inside<br>
the &lt;ui:repeat&gt; , results will be unpredictable. Is MyFaces has a better<br>
implementation ? I haven&#39;t seen deep into its UIData code for a while...<br>
Also, it is permanent pain in the complex components that require to<br>
store some information during request or work like iterator ( that are<br>
really all trees, menus, tab panels, Tomahawk columns, and more ).<br>
Numeric row ids in the data model is additional limitation for models<br>
that connected to the database in concurrent environment there<br>
additional code requires to keep references between row number and<br>
primary key; otherwise application have a chance to update/delete wrong<br>
record.<br>
For these reasons, I think that all UIRepeat/UIData should be rewritten<br>
from scratch as it already done in the Trinidad/ADF. I&#39;ll take a closer<br>
look to your patch.<br>
<div class="im"><br>
On 03/19/2010 12:07 PM, Leonardo Uribe wrote:<br>
&gt; Hi<br>
&gt;<br>
&gt; Yes, I know this too. In few words, all &quot;transient&quot; properties, that means,<br>
&gt; all properties that are not stored in the state are not saved. There are<br>
&gt; very<br>
&gt; few examples. To solve this one, there are multiple alternatives. I was<br>
&gt; thinking<br>
&gt; on extend StateHelper interface to add some methods like<br>
&gt; putTransientProperty and getTransientProperty. Trinidad stores all<br>
&gt; properties<br>
&gt; on the FacesBean object.<br>
&gt;<br>
&gt; Anyway, I think an &quot;mixed&quot; solution could solve this problem: create an<br>
&gt; interface called RowStateTransientHolder, so only the components that<br>
&gt; implements this type of attributes could have the chance to<br>
&gt; save and restore its state.<br>
&gt;<br>
&gt; But note in any case, it is necessary to do something like this to solve the<br>
&gt; use case described.<br>
&gt;<br>
&gt; I didn&#39;t knew that localValueSet was a transient property too.<br>
&gt;<br>
&gt; regards,<br>
&gt;<br>
&gt; Leonardo Uribe<br>
&gt;<br>
&gt; 2010/3/19 Alexander Smirnov &lt;<a href="mailto:asmirnov@exadel.com">asmirnov@exadel.com</a><br>
</div>&gt; &lt;mailto:<a href="mailto:asmirnov@exadel.com">asmirnov@exadel.com</a>&gt;&gt;<br>
<div><div></div><div class="h5">&gt;<br>
&gt;     I&#39;ve thought about these problems for a long time too. Your proposal has<br>
&gt;     a disadvantage because per-row state is quite different from the<br>
&gt;     component state. Take a look for the UIInput implementation:<br>
&gt;     localValueSet field is never saved in the state while it should be vary<br>
&gt;     from row to row. The same thing happens to the UIForm.submitted<br>
&gt;     attribute, that has been eventually added to the UIData spec instead of<br>
&gt;     common solution, that would save/restore all local variables. My<br>
&gt;     proposal was a separate RowStateHolder interface with<br>
&gt;     save/restoreRowState methods there component developer can preserve<br>
&gt;     internal variables. In the your stenario, there should be some flag that<br>
&gt;     tells component to save all values, even these that are not supposed to<br>
&gt;     be preserved between requests.<br>
&gt;<br>
&gt;     On 03/19/2010 10:27 AM, Leonardo Uribe wrote:<br>
&gt;     &gt; In short, this topic is an attempt to add full state to components<br>
&gt;     &gt; inside UIData. I&#39;ll do a brief resume, so people can understand<br>
&gt;     this one<br>
&gt;     &gt; easily.<br>
&gt;     &gt;<br>
&gt;     &gt; UIData uses the same component instances to render multiple rows.<br>
&gt;     &gt; Suppose this example:<br>
&gt;     &gt;<br>
&gt;     &gt; &lt;h:dataTable id=&quot;cities&quot; var=&quot;city&quot; value=&quot;#{country.cities}&quot;&gt;<br>
&gt;     &gt;     &lt;h:column&gt;<br>
&gt;     &gt;         &lt;h:outputText value=&quot;#{city}&quot;  /&gt;<br>
&gt;     &gt;     &lt;/h:column&gt;<br>
&gt;     &gt; &lt;/h:dataTable&gt;<br>
&gt;     &gt;<br>
&gt;     &gt; In the component tree it is created this hierarchy:<br>
&gt;     &gt;<br>
&gt;     &gt; HtmlDatatable<br>
&gt;     &gt;   UIColumn<br>
&gt;     &gt;     HtmlOutputText<br>
&gt;     &gt;<br>
&gt;     &gt; If we have 10 cities, the same component is used over and over to<br>
&gt;     render<br>
&gt;     &gt; all 10 cities. The reason to do that in this way is keep state as<br>
&gt;     small<br>
&gt;     &gt; as possible.<br>
&gt;     &gt;<br>
&gt;     &gt; Now let&#39;s suppose something like this:<br>
&gt;     &gt;<br>
&gt;     &gt; &lt;h:dataTable id=&quot;cities&quot; var=&quot;city&quot; value=&quot;#{country.cities}&quot;&gt;<br>
&gt;     &gt;     &lt;h:column&gt;<br>
&gt;     &gt;         &lt;h:inputText value=&quot;#{city}&quot;  /&gt;<br>
&gt;     &gt;     &lt;/h:column&gt;<br>
&gt;     &gt; &lt;/h:dataTable&gt;<br>
&gt;     &gt;<br>
&gt;     &gt; It was changed the output component for an input one. If this table is<br>
&gt;     &gt; in a form and the values are submitted, the same component is used to<br>
&gt;     &gt; apply request values, validate and apply them to the model (update<br>
&gt;     &gt; process). To make this possible, UIData class has some code to<br>
&gt;     preserve<br>
&gt;     &gt; this values between phases (using EditableValueHolder interface), so<br>
&gt;     &gt; when each phase is processed, all rows are traversed and you get the<br>
&gt;     &gt; expected behavior.<br>
&gt;     &gt;<br>
&gt;     &gt; Now suppose something more complex: We have a code that use<br>
&gt;     &gt; invokeOnComponent to change the style of my inputText. In theory, only<br>
&gt;     &gt; one row should change. But in fact, all rows are rendered with the<br>
&gt;     same<br>
&gt;     &gt; color. Why? because we use the same component to render all rows,<br>
&gt;     and we<br>
&gt;     &gt; don&#39;t preserve the children component state between rows.<br>
&gt;     &gt;<br>
&gt;     &gt; There is a lot of issues, questions, and side effects related to this<br>
&gt;     &gt; issue, but just to put some of them here:<br>
&gt;     &gt;<br>
&gt;     &gt; TOMAHAWK-1062 InputTextArea doesn&#39;t work properly inside facet<br>
&gt;     DetailStamp<br>
&gt;     &gt; TOMAHAWK-96 Data table Scroller not working the dataTable which was<br>
&gt;     &gt; actually contained in other DataTable<br>
&gt;     &gt;<br>
&gt;     <a href="https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=153" target="_blank">https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=153</a><br>
&gt;     &gt; Problems with UIData state saving<br>
&gt;     &gt;<br>
&gt;     &gt; Also, it is well know that one reason why people uses c:forEach in<br>
&gt;     &gt; facelets, is because this one create &quot;full&quot; components per each<br>
&gt;     row. It<br>
&gt;     &gt; is very easy to find articles on internet.<br>
&gt;     &gt;<br>
&gt;     &gt; Now, with jsf 2.0 we have partial state saving, so we have a chance to<br>
&gt;     &gt; fix this one once and for all. I tried fix this one per months (maybe<br>
&gt;     &gt; years!), but talking with Martin Marinschek on JSFDays, some ideas<br>
&gt;     came<br>
&gt;     &gt; out and finally it was found a possibility to fix this one using the<br>
&gt;     &gt; existing api and with little changes on the spec.<br>
&gt;     &gt;<br>
&gt;     &gt; The proposal is this:<br>
&gt;     &gt;<br>
&gt;     &gt; 1. Do not call UIComponent.markInitialState() on<br>
&gt;     &gt; ComponentTagHandlerDelegate, as ComponentHandler javadoc says, instead<br>
&gt;     &gt; call it after PostAddToViewEvent are published on vdl.buildView(). We<br>
&gt;     &gt; need to call it from root to nodes, so the parent component is marked<br>
&gt;     &gt; first. I know the place where this call comes is from trinidad tag<br>
&gt;     &gt; handler, but this call needs to be fixed in a more predictable way.<br>
&gt;     &gt; 2. Use an attribute on facesContext to identify when the VDL is<br>
&gt;     marking<br>
&gt;     &gt; the initial state (in myfaces there is already an attribute called<br>
&gt;     &gt; &quot;org.apache.myfaces.MARK_INITIAL_STATE&quot;). This is necessary to<br>
&gt;     indicate<br>
&gt;     &gt; UIData instances that it is time to save the full state of all<br>
&gt;     component<br>
&gt;     &gt; children,<br>
&gt;     &gt; 3. Allow UIData to hold a map where the key are client ids and the<br>
&gt;     value<br>
&gt;     &gt; are the deltas of all components per row. This map should be saved and<br>
&gt;     &gt; restored.<br>
&gt;     &gt; 4. Change UIData.setRowIndex() to restore and save the component<br>
&gt;     state.<br>
&gt;     &gt;<br>
&gt;     &gt; I&#39;ll attach a patch on myfaces issue tracker with the algorithm<br>
&gt;     proposed<br>
&gt;     &gt; (because it is based on myfaces codebase). It was tested and it works.<br>
&gt;     &gt; But note it is necessary to fix the javadoc for<br>
&gt;     &gt; UIData.markInitialState(), ComponentHandler and maybe vdl.buildView(),<br>
&gt;     &gt; so the intention is propose this change for jsf 2.0 rev A. Note this<br>
&gt;     &gt; works only with PSS enabled because without it we don&#39;t have a<br>
&gt;     place to<br>
&gt;     &gt; notify UIData instances that it is necessary to get the full state.<br>
&gt;     &gt; Also, note this patch preserve backward compatibility, because the old<br>
&gt;     &gt; way to store/save is applied after the full state is restored.<br>
&gt;     &gt;<br>
&gt;     &gt; Really, I have the strong temptation to apply some similar code on<br>
&gt;     &gt; myfaces UIRepeat component (because this class is private), but I<br>
&gt;     prefer<br>
&gt;     &gt; first ask to EG to know what you guys think about it.<br>
&gt;     &gt;<br>
&gt;     &gt; Suggestions are welcome,<br>
&gt;     &gt;<br>
&gt;     &gt; regards,<br>
&gt;     &gt;<br>
&gt;     &gt; Leonardo Uribe<br>
&gt;     &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>