123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- #import "CSSStyleDeclaration.h"
- #import "CSSValue.h"
- #import "CSSValueList.h"
- #import "CSSPrimitiveValue.h"
- #import "CocoaLumberjack/DDFileLogger.h"
- #import "SVGKDefine_Private.h"
- @interface CSSStyleDeclaration()
- @property(nonatomic,strong) NSMutableDictionary* internalDictionaryOfStylesByCSSClass;
- @end
- @implementation CSSStyleDeclaration
- @synthesize internalDictionaryOfStylesByCSSClass;
- @synthesize cssText = _cssText;
- @synthesize length;
- @synthesize parentRule;
- - (id)init
- {
- self = [super init];
- if (self) {
- self.internalDictionaryOfStylesByCSSClass = [NSMutableDictionary dictionary];
- }
- return self;
- }
- #define MAX_ACCUM 256
- #define MAX_NAME 256
- /** From spec:
-
- "The parsable textual representation of the declaration block (excluding the surrounding curly braces). Setting this attribute will result in the parsing of the new value and resetting of all the properties in the declaration block including the removal or addition of properties."
- */
- -(void)setCssText:(NSString *)newCSSText
- {
- _cssText = newCSSText;
-
- /** and now post-process it, *as required by* the CSS/DOM spec... */
- NSMutableDictionary* processedStyles = [self NSDictionaryFromCSSAttributes:_cssText];
-
- self.internalDictionaryOfStylesByCSSClass = processedStyles;
-
- }
- -(NSMutableDictionary *) NSDictionaryFromCSSAttributes: (NSString *)css {
- NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
- NSCharacterSet* trimChars = [NSCharacterSet whitespaceAndNewlineCharacterSet];
-
- const char *cstr = [css UTF8String];
- size_t len = strlen(cstr);
-
- char name[MAX_NAME];
- bzero(name, MAX_NAME);
-
- char accum[MAX_ACCUM];
- bzero(accum, MAX_ACCUM);
-
- size_t accumIdx = 0;
-
- for (size_t n = 0; n <= len; n++) {
- char c = cstr[n];
-
- if (c == ':') {
- strncpy(name, accum, MAX_NAME);
- name[accumIdx] = '\0';
-
- bzero(accum, MAX_ACCUM);
- accumIdx = 0;
-
- continue;
- }
- else if (c == ';' || c == '\0') {
- if( accumIdx > 0 ) //if there is a ';' and '\0' to end the style, avoid adding an empty key-value pair
- {
- accum[accumIdx] = '\0';
-
- NSString *keyString = [[NSString stringWithUTF8String:name]
- stringByTrimmingCharactersInSet:trimChars];
- NSString *cssValueString = [[NSString stringWithUTF8String:accum]
- stringByTrimmingCharactersInSet:trimChars];
-
- CSSValue *cssValue;
- if( [cssValueString rangeOfString:@" "].length > 0 )
- cssValue = [[CSSValueList alloc] init];
- else
- cssValue = [[CSSPrimitiveValue alloc] init];
- cssValue.cssText = cssValueString; // has the side-effect of parsing, if required
-
- [dict setObject:cssValue
- forKey:keyString];
-
- bzero(name, MAX_NAME);
-
- bzero(accum, MAX_ACCUM);
- accumIdx = 0;
- }
-
- continue;
- }
-
- accum[accumIdx++] = c;
- if (accumIdx >= MAX_ACCUM) {
- SVGKitLogWarn(@"Buffer ovverun while parsing style sheet - skipping");
- return dict;
- }
- }
-
- return dict;
- }
- -(NSString*) getPropertyValue:(NSString*) propertyName
- {
- CSSValue* v = [self getPropertyCSSValue:propertyName];
-
- if( v == nil )
- return nil;
- else
- return v.cssText;
- }
- -(CSSValue*) getPropertyCSSValue:(NSString*) propertyName
- {
- return [self.internalDictionaryOfStylesByCSSClass objectForKey:propertyName];
- }
- -(NSString*) removeProperty:(NSString*) propertyName
- {
- NSString* oldValue = [self getPropertyValue:propertyName];
- [self.internalDictionaryOfStylesByCSSClass removeObjectForKey:propertyName];
- return oldValue;
- }
- -(NSString*) getPropertyPriority:(NSString*) propertyName
- {
- NSAssert(FALSE, @"CSS 'property priorities' - Not supported");
-
- return nil;
- }
- -(void) setProperty:(NSString*) propertyName value:(NSString*) value priority:(NSString*) priority
- {
- NSAssert(FALSE, @"CSS 'property priorities' - Not supported");
- }
- -(NSString*) item:(long) index
- {
- /** this is stupid slow, but until Apple *can be bothered* to add a "stable-order" dictionary to their libraries, this is the only sensibly easy way of implementing this method */
- NSArray* sortedKeys = [[self.internalDictionaryOfStylesByCSSClass allKeys] sortedArrayUsingSelector:@selector(compare:)];
- CSSValue* v = [sortedKeys objectAtIndex:index];
- return v.cssText;
- }
- -(NSString *)description
- {
- return [NSString stringWithFormat:@"CSSStyleDeclaration: dictionary(%@)", self.internalDictionaryOfStylesByCSSClass];
- }
- @end
|