1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1999
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 /* keywords used within CSS property values */
40 #include "nsCSSKeywords.h"
42 #include "nsStaticNameTable.h"
43 #include "nsReadableUtils.h"
44 #include "nsStyleConsts.h"
46 // required to make the symbol external, so that TestCSSPropertyLookup.cpp can link with it
47 extern const char* const kCSSRawKeywords
[];
49 // define an array of all CSS keywords
50 #define CSS_KEY(_name,_id) #_name,
51 const char* const kCSSRawKeywords
[] = {
52 #include "nsCSSKeywordList.h"
56 static PRInt32 gTableRefCount
;
57 static nsStaticCaseInsensitiveNameTable
* gKeywordTable
;
60 nsCSSKeywords::AddRefTable(void)
62 if (0 == gTableRefCount
++) {
63 NS_ASSERTION(!gKeywordTable
, "pre existing array!");
64 gKeywordTable
= new nsStaticCaseInsensitiveNameTable();
68 // let's verify the table...
70 for (; index
< eCSSKeyword_COUNT
&& kCSSRawKeywords
[index
]; ++index
) {
71 nsCAutoString
temp1(kCSSRawKeywords
[index
]);
72 nsCAutoString
temp2(kCSSRawKeywords
[index
]);
74 NS_ASSERTION(temp1
.Equals(temp2
), "upper case char in table");
75 NS_ASSERTION(-1 == temp1
.FindChar('_'), "underscore char in table");
77 NS_ASSERTION(index
== eCSSKeyword_COUNT
, "kCSSRawKeywords and eCSSKeyword_COUNT are out of sync");
80 gKeywordTable
->Init(kCSSRawKeywords
, eCSSKeyword_COUNT
);
86 nsCSSKeywords::ReleaseTable(void)
88 if (0 == --gTableRefCount
) {
91 gKeywordTable
= nsnull
;
97 nsCSSKeywords::LookupKeyword(const nsACString
& aKeyword
)
99 NS_ASSERTION(gKeywordTable
, "no lookup table, needs addref");
101 return nsCSSKeyword(gKeywordTable
->Lookup(aKeyword
));
103 return eCSSKeyword_UNKNOWN
;
107 nsCSSKeywords::LookupKeyword(const nsAString
& aKeyword
)
109 NS_ASSERTION(gKeywordTable
, "no lookup table, needs addref");
111 return nsCSSKeyword(gKeywordTable
->Lookup(aKeyword
));
113 return eCSSKeyword_UNKNOWN
;
116 const nsAFlatCString
&
117 nsCSSKeywords::GetStringValue(nsCSSKeyword aKeyword
)
119 NS_ASSERTION(gKeywordTable
, "no lookup table, needs addref");
120 NS_ASSERTION(0 <= aKeyword
&& aKeyword
< eCSSKeyword_COUNT
, "out of range");
122 return gKeywordTable
->GetStringValue(PRInt32(aKeyword
));
124 static nsDependentCString
kNullStr("");