Issue 412
[zxing.git] / iphone / Classes / NSString+HTML.m
1 //
2 //  NSString+HTML.m
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 28/05/2008.
6 /*
7  * Copyright 2008 ZXing authors
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22 #import "NSString+HTML.h"
23
24
25 @implementation NSString (HTMLExtensions)
26
27 static NSDictionary *htmlEscapes = nil;
28 static NSDictionary *htmlUnescapes = nil;
29
30 + (NSDictionary *)htmlEscapes {
31   if (!htmlEscapes) {
32     htmlEscapes = [[NSDictionary alloc] initWithObjectsAndKeys:
33                    @"&", @"&",
34                    @"&lt;", @"<",
35                    @"&gt;", @">",
36                    nil
37                    ];
38   }
39   return htmlEscapes;
40 }
41
42 + (NSDictionary *)htmlUnescapes {
43   if (!htmlUnescapes) {
44     htmlUnescapes = [[NSDictionary alloc] initWithObjectsAndKeys:
45                      @"&", @"&amp;",
46                      @"<", @"&lt;", 
47                       @">", @"&gt;",
48                      nil
49                      ];
50   }
51   return htmlEscapes;
52 }
53
54 static NSString *replaceAll(NSString *s, NSDictionary *replacements) {
55   for (NSString *key in replacements) {
56     NSString *replacement = [replacements objectForKey:key];
57     s = [s stringByReplacingOccurrencesOfString:key withString:replacement];
58   }
59   return s;
60 }
61
62 - (NSString *)htmlEscapedString {
63   return replaceAll(self, [[self class] htmlEscapes]);
64 }
65
66 - (NSString *)htmlUnescapedString {
67   return replaceAll(self, [[self class] htmlUnescapes]);
68 }
69
70 @end