1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
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
7 // http://www.apache.org/licenses/LICENSE-2.0
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
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();
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
);
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()
81 foreach(DictionaryEntry entry
in _key2Desc
)
83 return entry
.Value
as ActiveRecordDescriptor
;