/src/Manos/Manos.Routing/StringMatchOperation.cs

http://github.com/jacksonh/manos · C# · 81 lines · 45 code · 13 blank · 23 comment · 7 complexity · decbe81da36f44924c9d8d6dcf040923 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.Collections.Specialized;
  26. using Manos.Collections;
  27. namespace Manos.Routing
  28. {
  29. public class StringMatchOperation : IMatchOperation
  30. {
  31. private string str;
  32. public StringMatchOperation (string str)
  33. {
  34. String = str;
  35. }
  36. public string String {
  37. get { return str; }
  38. set {
  39. if (value == null)
  40. throw new ArgumentNullException ("value");
  41. if (value.Length == 0)
  42. throw new ArgumentException ("StringMatch operations should not use empty strings.");
  43. str = value.ToLower();
  44. }
  45. }
  46. public bool IsMatch (string input, int start, out DataDictionary data, out int end)
  47. {
  48. return IsMatchInternal (String, input, start, out data, out end);
  49. }
  50. internal static bool IsMatchInternal (string the_string, string input, int start, out DataDictionary data, out int end)
  51. {
  52. if (!StartsWith (input, start, the_string)) {
  53. data = null;
  54. end = start;
  55. return false;
  56. }
  57. data = null;
  58. end = start + the_string.Length;
  59. return true;
  60. }
  61. public static bool StartsWith (string input, int start, string str)
  62. {
  63. if (input.Length < str.Length + start)
  64. return false;
  65. return String.Compare (input, start, str, 0, str.Length, StringComparison.OrdinalIgnoreCase) == 0;
  66. }
  67. }
  68. }