Clover coverage report - Code Coverage for tapestry release 4.0.1
Coverage timestamp: Fri Mar 31 2006 09:12:14 EST
file stats: LOC: 154   Methods: 8
NCLOC: 83   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
PersistentPropertyData.java 90% 97.5% 100% 96.6%
coverage coverage
 1    // Copyright 2005 The Apache Software Foundation
 2    //
 3    // Licensed under the Apache License, Version 2.0 (the "License");
 4    // you may not use this file except in compliance with the License.
 5    // You may obtain a copy of the License at
 6    //
 7    // http://www.apache.org/licenses/LICENSE-2.0
 8    //
 9    // Unless required by applicable law or agreed to in writing, software
 10    // distributed under the License is distributed on an "AS IS" BASIS,
 11    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12    // See the License for the specific language governing permissions and
 13    // limitations under the License.
 14   
 15    package org.apache.tapestry.record;
 16   
 17    import java.util.ArrayList;
 18    import java.util.HashMap;
 19    import java.util.Iterator;
 20    import java.util.List;
 21    import java.util.Map;
 22   
 23    import org.apache.hivemind.util.Defense;
 24   
 25    /**
 26    * Stores persistent property changes concerning a single page. The data may be stored as an encoded
 27    * string and the PPD can turn between encoded and object form.
 28    *
 29    * @author Howard M. Lewis Ship
 30    * @since 4.0
 31    */
 32    public class PersistentPropertyData
 33    {
 34    /**
 35    * Keyed on {@link org.apache.tapestry.record.ChangeKey}, values are new objects.
 36    */
 37   
 38    private Map _changes;
 39   
 40    private String _encoded;
 41   
 42    private final PersistentPropertyDataEncoder _encoder;
 43   
 44    /**
 45    * Creates a new data using the specified encoder. The set of page changes is initially empty.
 46    */
 47   
 48  16 public PersistentPropertyData(PersistentPropertyDataEncoder encoder)
 49    {
 50  16 Defense.notNull(encoder, "encoder");
 51   
 52  16 _encoder = encoder;
 53  16 _changes = new HashMap();
 54    }
 55   
 56  8 public String getEncoded()
 57    {
 58  8 if (_encoded == null)
 59  2 _encoded = encode();
 60   
 61  8 return _encoded;
 62    }
 63   
 64  12 public List getPageChanges()
 65    {
 66  12 if (_changes == null)
 67    {
 68  4 List pageChanges = _encoder.decodePageChanges(_encoded);
 69   
 70  4 _changes = decode(pageChanges);
 71   
 72  4 return pageChanges;
 73    }
 74   
 75  8 return createPageChangeList();
 76    }
 77   
 78  8 public void store(String componentPath, String propertyName, Object newValue)
 79    {
 80  8 Defense.notNull(propertyName, "propertyName");
 81   
 82  8 if (_changes == null)
 83  0 _changes = decode(_encoder.decodePageChanges(_encoded));
 84   
 85  8 ChangeKey key = new ChangeKey(componentPath, propertyName);
 86   
 87  8 _changes.put(key, newValue);
 88   
 89    // With the new (or changed) value, the encoded string is no
 90    // longer valid.
 91   
 92  8 _encoded = null;
 93    }
 94   
 95  10 public void storeEncoded(String encoded)
 96    {
 97  10 Defense.notNull(encoded, "encoded");
 98   
 99  10 _encoded = encoded;
 100   
 101    // The decoded data is no longer valid now.
 102   
 103  10 _changes = null;
 104    }
 105   
 106  10 private List createPageChangeList()
 107    {
 108  10 List result = new ArrayList();
 109   
 110  10 Iterator i = _changes.entrySet().iterator();
 111   
 112  10 while (i.hasNext())
 113    {
 114  10 Map.Entry me = (Map.Entry) i.next();
 115   
 116  10 ChangeKey changeKey = (ChangeKey) me.getKey();
 117  10 Object value = me.getValue();
 118   
 119  10 PropertyChange change = new PropertyChangeImpl(changeKey.getComponentPath(), changeKey
 120    .getPropertyName(), value);
 121   
 122  10 result.add(change);
 123    }
 124   
 125  10 return result;
 126    }
 127   
 128  2 private String encode()
 129    {
 130  2 List changes = createPageChangeList();
 131   
 132  2 return _encoder.encodePageChanges(changes);
 133    }
 134   
 135  4 private Map decode(List pageChanges)
 136    {
 137  4 Map result = new HashMap();
 138   
 139  4 Iterator i = pageChanges.iterator();
 140  4 while (i.hasNext())
 141    {
 142  4 PropertyChange pc = (PropertyChange) i.next();
 143   
 144  4 String propertyName = pc.getPropertyName();
 145  4 String componentPath = pc.getComponentPath();
 146   
 147  4 ChangeKey key = new ChangeKey(componentPath, propertyName);
 148   
 149  4 result.put(key, pc.getNewValue());
 150    }
 151   
 152  4 return result;
 153    }
 154    }