Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Generator / Castle.ActiveRecord.Generator.Components / BuildContext.cs
blob27bf45963f40fc59c1624f0ebabf33332663cbe1
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
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.
15 namespace Castle.ActiveRecord.Generator.Components
17 using System;
18 using System.Collections;
20 using Castle.ActiveRecord.Generator.Components.Database;
23 public class BuildContext
25 private IDictionary _key2Desc = new Hashtable();
26 private IList _newlyCreated = new ArrayList();
28 public BuildContext()
32 public IList NewlyCreatedDescriptors
34 get { return _newlyCreated; }
37 public void AddPendentDescriptor(object key, ActiveRecordDescriptor descriptor)
39 if (!_key2Desc.Contains(key))
41 _key2Desc[key] = descriptor;
45 public void IgnorePendent(object key)
47 _key2Desc.Remove(key);
50 public void RemovePendent(ActiveRecordDescriptor descriptor)
52 foreach(DictionaryEntry entry in _key2Desc)
54 if (entry.Value == descriptor)
56 _key2Desc.Remove(entry.Key);
57 break;
61 AddToNewlyCreated(descriptor);
64 private void AddToNewlyCreated(ActiveRecordDescriptor descriptor)
66 if (!_newlyCreated.Contains(descriptor))
68 _newlyCreated.Add(descriptor);
72 public bool HasPendents
74 get { return (_key2Desc.Count != 0); }
77 public ActiveRecordDescriptor GetNextPendent()
79 if (HasPendents)
81 foreach(DictionaryEntry entry in _key2Desc)
83 return entry.Value as ActiveRecordDescriptor;
87 return null;