/src/Manos/Manos.Template/TemplateFactory.cs

http://github.com/jacksonh/manos · C# · 80 lines · 39 code · 18 blank · 23 comment · 8 complexity · 5b2cba36dfdfa4206284e087755ac41d MD5 · raw file

  1. //
  2. // Copyright (C) 2010 Jackson Harper (jackson@manosdemono.com)
  3. //
  4. // Permission is hereby granted, free of charge, to any person obtaining
  5. // a copy of this software and associated documentation files (the
  6. // "Software"), to deal in the Software without restriction, including
  7. // without limitation the rights to use, copy, modify, merge, publish,
  8. // distribute, sublicense, and/or sell copies of the Software, and to
  9. // permit persons to whom the Software is furnished to do so, subject to
  10. // the following conditions:
  11. //
  12. // The above copyright notice and this permission notice shall be
  13. // included in all copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. //
  23. //
  24. using System;
  25. using System.IO;
  26. using System.Text;
  27. using System.Linq;
  28. using System.Reflection;
  29. using System.Collections;
  30. using System.Collections.Generic;
  31. namespace Manos.Templates {
  32. public static class TemplateFactory {
  33. private static Dictionary<string,IManosTemplate> templates = new Dictionary<string, IManosTemplate> ();
  34. public static IManosTemplate Get (string name)
  35. {
  36. IManosTemplate res = null;
  37. if (!TryGet (name, out res))
  38. return null;
  39. return res;
  40. }
  41. public static bool TryGet (string name, out IManosTemplate template)
  42. {
  43. if (name == null)
  44. throw new ArgumentNullException ("name");
  45. return templates.TryGetValue (name, out template);
  46. }
  47. public static void Register (string name, IManosTemplate template)
  48. {
  49. if (name == null)
  50. throw new ArgumentNullException ("name");
  51. if (template == null)
  52. throw new ArgumentNullException ("template");
  53. if (templates.ContainsKey (name))
  54. throw new InvalidOperationException (String.Format ("A template named {0} has already been registered.", name));
  55. templates.Add (name, template);
  56. }
  57. public static void Clear ()
  58. {
  59. templates.Clear ();
  60. }
  61. }
  62. }