summaryrefslogtreecommitdiff
path: root/qpid/java/broker-core/src/main/java/org/apache/qpid/server/configuration/startup/BrokerStoreUpgrader.java
blob: b7b672fd581361a875be7e52a57a41e559ccd622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
package org.apache.qpid.server.configuration.startup;/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;

import org.apache.log4j.Logger;

import org.apache.qpid.server.configuration.IllegalConfigurationException;
import org.apache.qpid.server.configuration.store.StoreConfigurationChangeListener;
import org.apache.qpid.server.model.Broker;
import org.apache.qpid.server.model.Model;
import org.apache.qpid.server.model.SystemContext;
import org.apache.qpid.server.store.ConfiguredObjectRecord;
import org.apache.qpid.server.store.ConfiguredObjectRecordImpl;
import org.apache.qpid.server.store.DurableConfigurationStore;
import org.apache.qpid.server.store.DurableConfigurationStoreUpgrader;
import org.apache.qpid.server.store.NonNullUpgrader;
import org.apache.qpid.server.store.handler.ConfiguredObjectRecordHandler;

public class BrokerStoreUpgrader
{
    private static Logger LOGGER = Logger.getLogger(BrokerStoreUpgrader.class);

    private static Map<String, UpgraderPhaseFactory> _upgraders = new HashMap<String, UpgraderPhaseFactory>();
    private final SystemContext _systemContext;

    public BrokerStoreUpgrader(SystemContext systemContext)
    {
        _systemContext = systemContext;
    }

    private static abstract class UpgraderPhaseFactory
    {
        private final String _toVersion;

        protected UpgraderPhaseFactory(String fromVersion, String toVersion)
        {
            _upgraders.put(fromVersion, this);
            _toVersion = toVersion;
        }

        public String getToVersion()
        {
            return _toVersion;
        }

        public abstract BrokerStoreUpgraderPhase newInstance();
    }

    private static abstract class BrokerStoreUpgraderPhase extends NonNullUpgrader
    {
        private final String _toVersion;

        protected BrokerStoreUpgraderPhase(String toVersion)
        {
            _toVersion = toVersion;
        }


        protected ConfiguredObjectRecord upgradeBrokerRecord(ConfiguredObjectRecord record)
        {
            Map<String, Object> updatedAttributes = new HashMap<String, Object>(record.getAttributes());
            updatedAttributes.put(Broker.MODEL_VERSION, _toVersion);
            record = createModifiedRecord(record, updatedAttributes);
            getUpdateMap().put(record.getId(), record);
            return record;
        }
    }

    // Note: don't use externally defined constants in upgraders in case they change, the values here MUST stay the same
    // no matter what changes are made to the code in the future

    private final static UpgraderPhaseFactory UPGRADE_1_0 = new UpgraderPhaseFactory("1.0", "1.1")
    {
        @Override
        public BrokerStoreUpgraderPhase newInstance()
        {
            return new BrokerStoreUpgraderPhase(getToVersion())
            {
                @Override
                public void configuredObject(ConfiguredObjectRecord record)
                {
                    if (record.getType().equals("Broker"))
                    {
                        record = upgradeBrokerRecord(record);
                    }
                    else if (record.getType().equals("VirtualHost") && record.getAttributes().containsKey("storeType"))
                    {
                        Map<String, Object> updatedAttributes = new HashMap<String, Object>(record.getAttributes());
                        updatedAttributes.put("type", "STANDARD");
                        record = createModifiedRecord(record, updatedAttributes);
                        getUpdateMap().put(record.getId(), record);
                    }

                    getNextUpgrader().configuredObject(record);
                }


                @Override
                public void complete()
                {
                    getNextUpgrader().complete();
                }
            };
        }


    };


    protected static ConfiguredObjectRecordImpl createModifiedRecord(final ConfiguredObjectRecord record,
                                                                     final Map<String, Object> updatedAttributes)
    {

        return new ConfiguredObjectRecordImpl(record.getId(), record.getType(), updatedAttributes, record.getParents());
    }

    private final static UpgraderPhaseFactory UPGRADE_1_1 = new UpgraderPhaseFactory("1.1", "1.2")
    {
        @Override
        public BrokerStoreUpgraderPhase newInstance()
        {
            return new BrokerStoreUpgraderPhase(getToVersion())
            {

                @Override
                public void configuredObject(ConfiguredObjectRecord record)
                {
                    if (record.getType().equals("Broker"))
                    {
                        record = upgradeBrokerRecord(record);
                    }

                    getNextUpgrader().configuredObject(record);

                }

                @Override
                public void complete()
                {
                    getNextUpgrader().complete();
                }
            };
        }
    };


    private final static UpgraderPhaseFactory UPGRADE_1_2 = new UpgraderPhaseFactory("1.2", "1.3")
    {
        @Override
        public BrokerStoreUpgraderPhase newInstance()
        {
            return new BrokerStoreUpgraderPhase(getToVersion())
            {

                @Override
                public void configuredObject(ConfiguredObjectRecord record)
                {
                    if (record.getType().equals("TrustStore") && record.getAttributes().containsKey("type"))
                    {
                        Map<String, Object> updatedAttributes = new HashMap<String, Object>(record.getAttributes());
                        updatedAttributes.put("trustStoreType", updatedAttributes.remove("type"));
                        record = createModifiedRecord(record, updatedAttributes);
                        getUpdateMap().put(record.getId(), record);

                    }
                    else if (record.getType().equals("KeyStore") && record.getAttributes().containsKey("type"))
                    {
                        Map<String, Object> updatedAttributes = new HashMap<String, Object>(record.getAttributes());
                        updatedAttributes.put("keyStoreType", updatedAttributes.remove("type"));
                        record = createModifiedRecord(record, updatedAttributes);
                        getUpdateMap().put(record.getId(), record);

                    }
                    else if (record.getType().equals("Broker"))
                    {
                        record = upgradeBrokerRecord(record);
                    }

                    getNextUpgrader().configuredObject(record);

                }

                @Override
                public void complete()
                {
                    getNextUpgrader().complete();
                }
            };
        }
    };


    private final static UpgraderPhaseFactory UPGRADE_1_3 = new UpgraderPhaseFactory("1.3", "1.4")
    {
        @Override
        public BrokerStoreUpgraderPhase newInstance()
        {
            return new BrokerStoreUpgraderPhase(getToVersion())
            {

                private Map<String, VirtualHostEntryUpgrader> _vhostUpgraderMap = new HashMap<String, VirtualHostEntryUpgrader>()
                {{
                    put("BDB_HA", new BdbHaVirtualHostUpgrader());
                    put("STANDARD", new StandardVirtualHostUpgrader());
                }};

                @Override
                public void configuredObject(ConfiguredObjectRecord record)
                {
                    if (record.getType().equals("VirtualHost"))
                    {
                        Map<String, Object> attributes = record.getAttributes();
                        if (attributes.containsKey("configPath"))
                        {
                            throw new IllegalConfigurationException("Auto-upgrade of virtual host " + attributes.get("name") + " having XML configuration is not supported. Virtual host configuration file is " + attributes.get("configPath"));
                        }

                        String type = (String) attributes.get("type");
                        VirtualHostEntryUpgrader vhostUpgrader = _vhostUpgraderMap.get(type);
                        if (vhostUpgrader == null)
                        {
                            throw new IllegalConfigurationException("Don't know how to perform an upgrade from version for virtualhost type " + type);
                        }
                        record = vhostUpgrader.upgrade(record);
                        getUpdateMap().put(record.getId(), record);
                    }
                    else if (record.getType().equals("Plugin") && record.getAttributes().containsKey("pluginType"))
                    {
                        Map<String, Object> updatedAttributes = new HashMap<String, Object>(record.getAttributes());
                        updatedAttributes.put("type", updatedAttributes.remove("pluginType"));
                        record = createModifiedRecord(record, updatedAttributes);
                        getUpdateMap().put(record.getId(), record);

                    }
                    else if (record.getType().equals("Broker"))
                    {
                        record = upgradeBrokerRecord(record);
                    }

                    getNextUpgrader().configuredObject(record);

                }

                @Override
                public void complete()
                {
                    getNextUpgrader().complete();
                }
            };
        }


    };

    private static interface VirtualHostEntryUpgrader
    {
        ConfiguredObjectRecord upgrade(ConfiguredObjectRecord vhost);
    }

    private static class StandardVirtualHostUpgrader implements VirtualHostEntryUpgrader
    {
        Map<String, AttributesTransformer> _messageStoreAttributeTransformers = new HashMap<String, AttributesTransformer>()
        {{
                put("DERBY", new AttributesTransformer().
                        addAttributeTransformer("storePath", copyAttribute()).
                        addAttributeTransformer("storeUnderfullSize", copyAttribute()).
                        addAttributeTransformer("storeOverfullSize", copyAttribute()).
                        addAttributeTransformer("storeType", mutateAttributeValue("DERBY")));
                put("MEMORY",  new AttributesTransformer().
                        addAttributeTransformer("storeType", mutateAttributeValue("Memory")));
                put("BDB", new AttributesTransformer().
                        addAttributeTransformer("storePath", copyAttribute()).
                        addAttributeTransformer("storeUnderfullSize", copyAttribute()).
                        addAttributeTransformer("storeOverfullSize", copyAttribute()).
                        addAttributeTransformer("bdbEnvironmentConfig", copyAttribute()).
                        addAttributeTransformer("storeType", mutateAttributeValue("BDB")));
                put("JDBC", new AttributesTransformer().
                        addAttributeTransformer("storePath", mutateAttributeName("connectionURL")).
                        addAttributeTransformer("connectionURL", copyAttribute()).
                        addAttributeTransformer("connectionPool", copyAttribute()).
                        addAttributeTransformer("jdbcBigIntType", copyAttribute()).
                        addAttributeTransformer("jdbcBytesForBlob", copyAttribute()).
                        addAttributeTransformer("jdbcBlobType", copyAttribute()).
                        addAttributeTransformer("jdbcVarbinaryType", copyAttribute()).
                        addAttributeTransformer("partitionCount", copyAttribute()).
                        addAttributeTransformer("maxConnectionsPerPartition", copyAttribute()).
                        addAttributeTransformer("minConnectionsPerPartition", copyAttribute()).
                        addAttributeTransformer("storeType", mutateAttributeValue("JDBC")));
            }};

        Map<String, AttributesTransformer> _configurationStoreAttributeTransformers = new HashMap<String, AttributesTransformer>()
        {{
                put("DERBY", new AttributesTransformer().
                        addAttributeTransformer("configStorePath", mutateAttributeName("storePath")).
                        addAttributeTransformer("configStoreType", mutateAttributeName("storeType"), mutateAttributeValue("DERBY")));
                put("MEMORY",  new AttributesTransformer().
                        addAttributeTransformer("configStoreType", mutateAttributeValue("Memory")));
                put("JSON", new AttributesTransformer().
                        addAttributeTransformer("configStorePath", mutateAttributeName("storePath")).
                        addAttributeTransformer("configStoreType", mutateAttributeName("storeType"), mutateAttributeValue("JSON")));
                put("BDB", new AttributesTransformer().
                        addAttributeTransformer("configStorePath", mutateAttributeName("storePath")).
                        addAttributeTransformer("bdbEnvironmentConfig", copyAttribute()).
                        addAttributeTransformer("configStoreType", mutateAttributeName("storeType"), mutateAttributeValue("BDB")));
                put("JDBC", new AttributesTransformer().
                        addAttributeTransformer("configStorePath", mutateAttributeName("connectionURL")).
                        addAttributeTransformer("configConnectionURL", mutateAttributeName("connectionURL")).
                        addAttributeTransformer("connectionPool", copyAttribute()).
                        addAttributeTransformer("jdbcBigIntType", copyAttribute()).
                        addAttributeTransformer("jdbcBytesForBlob", copyAttribute()).
                        addAttributeTransformer("jdbcBlobType", copyAttribute()).
                        addAttributeTransformer("jdbcVarbinaryType", copyAttribute()).
                        addAttributeTransformer("partitionCount", copyAttribute()).
                        addAttributeTransformer("maxConnectionsPerPartition", copyAttribute()).
                        addAttributeTransformer("minConnectionsPerPartition", copyAttribute()).
                        addAttributeTransformer("configStoreType", mutateAttributeName("storeType"), mutateAttributeValue("JDBC")));
            }};

        @Override
        public ConfiguredObjectRecord upgrade(ConfiguredObjectRecord vhost)
        {
            Map<String, Object> attributes = vhost.getAttributes();
            Map<String, Object> newAttributes = new HashMap<String, Object>(attributes);

            String capitalisedStoreType = String.valueOf(attributes.get("storeType")).toUpperCase();
            AttributesTransformer vhAttrsToMessageStoreSettings = _messageStoreAttributeTransformers.get(capitalisedStoreType);
            Map<String, Object> messageStoreSettings = null;
            if (vhAttrsToMessageStoreSettings != null)
            {
                messageStoreSettings = vhAttrsToMessageStoreSettings.upgrade(attributes);
            }

            if (attributes.containsKey("configStoreType"))
            {
                String capitaliseConfigStoreType = ((String) attributes.get("configStoreType")).toUpperCase();
                AttributesTransformer vhAttrsToConfigurationStoreSettings = _configurationStoreAttributeTransformers
                        .get(capitaliseConfigStoreType);
                Map<String, Object> configurationStoreSettings = vhAttrsToConfigurationStoreSettings.upgrade(attributes);
                newAttributes.keySet().removeAll(vhAttrsToConfigurationStoreSettings.getNamesToBeDeleted());
                newAttributes.put("configurationStoreSettings", configurationStoreSettings);
            }

            if (vhAttrsToMessageStoreSettings != null)
            {
                newAttributes.keySet().removeAll(vhAttrsToMessageStoreSettings.getNamesToBeDeleted());
                newAttributes.put("messageStoreSettings", messageStoreSettings);
            }

            return new ConfiguredObjectRecordImpl(vhost.getId(), vhost.getType(), newAttributes, vhost.getParents());
        }
    }

    private static class BdbHaVirtualHostUpgrader implements VirtualHostEntryUpgrader
    {

        private final AttributesTransformer haAttributesTransformer =  new AttributesTransformer().
                addAttributeTransformer("storePath", copyAttribute()).
                addAttributeTransformer("storeUnderfullSize", copyAttribute()).
                addAttributeTransformer("storeOverfullSize", copyAttribute()).
                addAttributeTransformer("haNodeName", copyAttribute()).
                addAttributeTransformer("haGroupName", copyAttribute()).
                addAttributeTransformer("haHelperAddress", copyAttribute()).
                addAttributeTransformer("haCoalescingSync", copyAttribute()).
                addAttributeTransformer("haNodeAddress", copyAttribute()).
                addAttributeTransformer("haDurability", copyAttribute()).
                addAttributeTransformer("haDesignatedPrimary", copyAttribute()).
                addAttributeTransformer("haReplicationConfig", copyAttribute()).
                addAttributeTransformer("bdbEnvironmentConfig", copyAttribute()).
                addAttributeTransformer("storeType", removeAttribute());

        @Override
        public ConfiguredObjectRecord upgrade(ConfiguredObjectRecord vhost)
        {
            Map<String, Object> attributes = vhost.getAttributes();

            Map<String, Object> messageStoreSettings = haAttributesTransformer.upgrade(attributes);

            Map<String, Object> newAttributes = new HashMap<String, Object>(attributes);
            newAttributes.keySet().removeAll(haAttributesTransformer.getNamesToBeDeleted());
            newAttributes.put("messageStoreSettings", messageStoreSettings);

            return new ConfiguredObjectRecordImpl(vhost.getId(), vhost.getType(), newAttributes, vhost.getParents());
        }
    }

    private static class AttributesTransformer
    {
        private final Map<String, List<AttributeTransformer>> _transformers = new HashMap<String, List<AttributeTransformer>>();
        private Set<String> _namesToBeDeleted = new HashSet<String>();

        public AttributesTransformer addAttributeTransformer(String string, AttributeTransformer... attributeTransformers)
        {
            _transformers.put(string, Arrays.asList(attributeTransformers));
            return this;
        }

        public Map<String, Object> upgrade(Map<String, Object> attributes)
        {
            Map<String, Object> settings = new HashMap<String, Object>();
            for (Map.Entry<String, List<AttributeTransformer>> entry : _transformers.entrySet())
            {
                String attributeName = entry.getKey();
                if (attributes.containsKey(attributeName))
                {
                    Object attributeValue = attributes.get(attributeName);
                    MutableEntry newEntry = new MutableEntry(attributeName, attributeValue);

                    List<AttributeTransformer> transformers = entry.getValue();
                    for (AttributeTransformer attributeTransformer : transformers)
                    {
                        newEntry = attributeTransformer.transform(newEntry);
                        if (newEntry == null)
                        {
                            break;
                        }
                    }
                    if (newEntry != null)
                    {
                        settings.put(newEntry.getKey(), newEntry.getValue());
                    }

                    _namesToBeDeleted.add(attributeName);
                }
            }
            return settings;
        }

        public Set<String> getNamesToBeDeleted()
        {
            return _namesToBeDeleted;
        }
    }

    private static AttributeTransformer copyAttribute()
    {
        return CopyAttribute.INSTANCE;
    }

    private static AttributeTransformer removeAttribute()
    {
        return RemoveAttribute.INSTANCE;
    }

    private static AttributeTransformer mutateAttributeValue(Object newValue)
    {
        return new MutateAttributeValue(newValue);
    }

    private static AttributeTransformer mutateAttributeName(String newName)
    {
        return new MutateAttributeName(newName);
    }

    private static interface AttributeTransformer
    {
        MutableEntry transform(MutableEntry entry);
    }

    private static class CopyAttribute implements AttributeTransformer
    {
        private static final CopyAttribute INSTANCE = new CopyAttribute();

        private CopyAttribute()
        {
        }

        @Override
        public MutableEntry transform(MutableEntry entry)
        {
            return entry;
        }
    }

    private static class RemoveAttribute implements AttributeTransformer
    {
        private static final RemoveAttribute INSTANCE = new RemoveAttribute();

        private RemoveAttribute()
        {
        }

        @Override
        public MutableEntry transform(MutableEntry entry)
        {
            return null;
        }
    }

    private static class MutateAttributeName implements AttributeTransformer
    {
        private final String _newName;

        public MutateAttributeName(String newName)
        {
            _newName = newName;
        }

        @Override
        public MutableEntry transform(MutableEntry entry)
        {
            entry.setKey(_newName);
            return entry;
        }
    }

    private static class MutateAttributeValue implements AttributeTransformer
    {
        private final Object _newValue;

        public MutateAttributeValue(Object newValue)
        {
            _newValue = newValue;
        }

        @Override
        public MutableEntry transform(MutableEntry entry)
        {
            entry.setValue(_newValue);
            return entry;
        }
    }

    private static class MutableEntry
    {
        private String _key;
        private Object _value;

        public MutableEntry(String key, Object value)
        {
            _key = key;
            _value = value;
        }

        public String getKey()
        {
            return _key;
        }

        public void setKey(String key)
        {
            _key = key;
        }

        public Object getValue()
        {
            return _value;
        }

        public void setValue(Object value)
        {
            _value = value;
        }
    }




    public Broker upgrade(DurableConfigurationStore store)
    {
        final BrokerStoreRecoveryHandler recoveryHandler = new BrokerStoreRecoveryHandler(_systemContext, store);
        store.openConfigurationStore(_systemContext, Collections.<String,Object>emptyMap());
        store.visitConfiguredObjectRecords(recoveryHandler);

        return recoveryHandler.getBroker();
    }


    private static class BrokerStoreRecoveryHandler implements ConfiguredObjectRecordHandler
    {
        private static Logger LOGGER = Logger.getLogger(BrokerStoreRecoveryHandler.class);

        private DurableConfigurationStoreUpgrader _upgrader;
        private DurableConfigurationStore _store;
        private final Map<UUID, ConfiguredObjectRecord> _records = new HashMap<UUID, ConfiguredObjectRecord>();
        private int _version;
        private final SystemContext _systemContext;

        private BrokerStoreRecoveryHandler(final SystemContext systemContext, DurableConfigurationStore store)
        {
            _systemContext = systemContext;
            _store = store;
        }


        @Override
        public void begin(final int configVersion)
        {
            _version = configVersion;
        }

        @Override
        public boolean handle(final ConfiguredObjectRecord object)
        {
            _records.put(object.getId(), object);
            return true;
        }

        @Override
        public int end()
        {
            String version = getCurrentVersion();

            while(!Model.MODEL_VERSION.equals(version))
            {
                LOGGER.debug("Adding broker store upgrader from model version: " + version);
                final UpgraderPhaseFactory upgraderPhaseFactory = _upgraders.get(version);
                BrokerStoreUpgraderPhase upgrader = upgraderPhaseFactory.newInstance();
                if(_upgrader == null)
                {
                    _upgrader = upgrader;
                }
                else
                {
                    _upgrader.setNextUpgrader(upgrader);
                }
                version = upgraderPhaseFactory.getToVersion();
            }

            if(_upgrader == null)
            {
                _upgrader = new DurableConfigurationStoreUpgrader()
                {

                    @Override
                    public void configuredObject(final ConfiguredObjectRecord record)
                    {
                    }

                    @Override
                    public void complete()
                    {
                    }

                    @Override
                    public void setNextUpgrader(final DurableConfigurationStoreUpgrader upgrader)
                    {
                    }

                    @Override
                    public Map<UUID, ConfiguredObjectRecord> getUpdatedRecords()
                    {
                        return Collections.emptyMap();
                    }

                    @Override
                    public Map<UUID, ConfiguredObjectRecord> getDeletedRecords()
                    {
                        return Collections.emptyMap();
                    }
                };
            }
            else
            {
                _upgrader.setNextUpgrader(new DurableConfigurationStoreUpgrader()
                {
                    @Override
                    public void configuredObject(final ConfiguredObjectRecord record)
                    {
                    }

                    @Override
                    public void complete()
                    {

                    }

                    @Override
                    public void setNextUpgrader(final DurableConfigurationStoreUpgrader upgrader)
                    {
                    }

                    @Override
                    public Map<UUID, ConfiguredObjectRecord> getUpdatedRecords()
                    {
                        return Collections.emptyMap();
                    }

                    @Override
                    public Map<UUID, ConfiguredObjectRecord> getDeletedRecords()
                    {
                        return Collections.emptyMap();
                    }
                });
            }

            for(ConfiguredObjectRecord record : _records.values())
            {
                _upgrader.configuredObject(record);
            }

            Map<UUID, ConfiguredObjectRecord> deletedRecords = _upgrader.getDeletedRecords();
            Map<UUID, ConfiguredObjectRecord> updatedRecords = _upgrader.getUpdatedRecords();

            LOGGER.debug("Broker store upgrade: " + deletedRecords.size() + " records deleted");
            LOGGER.debug("Broker store upgrade: " + updatedRecords.size() + " records updated");
            LOGGER.debug("Broker store upgrade: " + _records.size() + " total records");

            _store.update(true, updatedRecords.values().toArray(new ConfiguredObjectRecord[updatedRecords.size()]));
            _store.remove(deletedRecords.values().toArray(new ConfiguredObjectRecord[deletedRecords.size()]));




            _records.keySet().removeAll(deletedRecords.keySet());
            _records.putAll(updatedRecords);

            _systemContext.resolveObjects(_records.values().toArray(new ConfiguredObjectRecord[_records.size()]));

            _systemContext.getBroker().addChangeListener(new StoreConfigurationChangeListener(_store));

            return _version;
        }

        private String getCurrentVersion()
        {
            for(ConfiguredObjectRecord record : _records.values())
            {
                if(record.getType().equals("Broker"))
                {
                    String version = (String) record.getAttributes().get(Broker.MODEL_VERSION);
                    if(version == null)
                    {
                        version = "1.0";
                    }
                    return version;
                }
            }
            return Model.MODEL_VERSION;
        }

        public Broker getBroker()
        {
            return _systemContext.getBroker();
        }
    }


}