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