Ha, it's only a syntax concern?

Actually I don't plenty agree. The String does not use element.setAttribute() and I wanted to make clear what the others types are. Unlike Patrick, I used a fall through switch. Also if ever we need to distinguish cases later if will be easier (unlikely but anyway the doc. aspect lead me to this prefer this syntax)

Jacques

From: "Adrian Crum" <[email protected]>
It looks like a hack because it has a long switch statement that doesn't do anything, and in one condition the set method is being called while in another condition an element's set method is being called.

In other words, this could be easily expressed as:

element.setAttribute(name, value == null ? "null" : value);

-Adrian


On 12/22/2011 6:12 PM, Jacques Le Roux wrote:
Patrick crossed issues with Entity sync and null values and needed to address 
them. I trust his work.
Why does "it looks like an ugly hack" to you, a feeling, or? Do you expect some surprises with this work? How would you address the problem of null values, then ?

Jacques

From: "Adrian Crum" <[email protected]>
I don't like this commit - it looks like an ugly hack to me. What is the end result supposed to be? Or what is this supposed to do?

-Adrian

On 12/22/2011 2:14 PM, [email protected] wrote:
Author: jleroux
Date: Thu Dec 22 14:14:57 2011
New Revision: 1222241

URL: http://svn.apache.org/viewvc?rev=1222241&view=rev
Log:
A modified patch from Patrick Antivackis "Null values are not synchronized in http mode" https://issues.apache.org/jira/browse/OFBIZ-4602

In order to send over http the values to create, store and remove, Ofbiz is Xml serializing the values. GenericValue xml serialization is managed in GenericEntity.makeXmlElement, unfortunately this method just don't serialized null valued fields. To solve this issue, I managed null value the same way GenericEntity.setString (which is used for the Xml deserializing). I only managed until case 10, because i'm not sure the setString for the cases 11 to 15 are well managed (not taking care of null value)

jleroux: After looking at GenericEntity.setString and initial commit (http://svn.ofbiz.org/viewcvs?rev=7779&view=rev) I see no reasons to not handling cases under 10 the same way. So I added these cases as well using fall through.

Modified:
     ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java?rev=1222241&r1=1222240&r2=1222241&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java Thu 
Dec 22 14:14:57 2011
@@ -1077,6 +1077,42 @@ public class GenericEntity extends Obser
                      element.setAttribute(name, value);
                  }
              }
+            else {
+                ModelFieldType type = null;
+                try {
+                    type = getDelegator().getEntityFieldType(getModelEntity(), 
modelField.getType());
+                } catch (GenericEntityException e) {
+                    Debug.logWarning(e, module);
+                }
+                if (type == null) throw new IllegalArgumentException("Type " + 
modelField.getType() + " not found");
+                String fieldType = type.getJavaType();
+
+                try {
+                    switch (SqlJdbcUtil.getType(fieldType)) {
+                    case 1: // String
+                        set(name, "");
+                        break;
+                    case 2: // Timestamp
+                    case 3: // Time
+                    case 4: // java.sql.Date
+                    case 5: // Integer
+                    case 6: // Long
+                    case 7: // Float
+                    case 8: // Double
+                    case 9: // BigDecimal
+                    case 10:// Boolean
+                    case 11:// Object
+                    case 12:// Blob, byte[], ByteBuffer, HeapByteBuffer
+                    case 13:// Clob
+                    case 14:// java.util.Date
+                    case 15:// Collection: ArrayList, HashSet, LinkedHashSet, 
LinkedList
+                        element.setAttribute(name, "null");
+                        break;
+                    }
+                } catch (GenericNotImplementedException ex) {
+                    throw new IllegalArgumentException(ex.getMessage());
+                }
+            }
          }

          return element;


Reply via email to