| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 { | 86 { |
| 87 // WebVTT space characters are U+0020 SPACE, U+0009 CHARACTER TABULATION
(tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and U+000D CARRIAGE RETURN
(CR). | 87 // WebVTT space characters are U+0020 SPACE, U+0009 CHARACTER TABULATION
(tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and U+000D CARRIAGE RETURN
(CR). |
| 88 return c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r'; | 88 return c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r'; |
| 89 } | 89 } |
| 90 static inline bool isValidSettingDelimiter(char c) | 90 static inline bool isValidSettingDelimiter(char c) |
| 91 { | 91 { |
| 92 // ... a WebVTT cue consists of zero or more of the following components
, in any order, separated from each other by one or more | 92 // ... a WebVTT cue consists of zero or more of the following components
, in any order, separated from each other by one or more |
| 93 // U+0020 SPACE characters or U+0009 CHARACTER TABULATION (tab) characte
rs. | 93 // U+0020 SPACE characters or U+0009 CHARACTER TABULATION (tab) characte
rs. |
| 94 return c == ' ' || c == '\t'; | 94 return c == ' ' || c == '\t'; |
| 95 } | 95 } |
| 96 static String collectDigits(const String&, unsigned*); | 96 static unsigned collectDigitsToInt(const String& input, unsigned* position,
int& number); |
| 97 static String collectWord(const String&, unsigned*); | 97 static String collectWord(const String&, unsigned*); |
| 98 static double collectTimeStamp(const String&, unsigned*); | 98 static double collectTimeStamp(const String&, unsigned*); |
| 99 | 99 |
| 100 // Useful functions for parsing percentage settings. | 100 // Useful functions for parsing percentage settings. |
| 101 static float parseFloatPercentageValue(const String&, bool&); | 101 static float parseFloatPercentageValue(const String&, bool&); |
| 102 static FloatPoint parseFloatPercentageValuePair(const String&, char, bool&); | 102 static FloatPoint parseFloatPercentageValuePair(const String&, char, bool&); |
| 103 | 103 |
| 104 // Create the DocumentFragment representation of the WebVTT cue text. | 104 // Create the DocumentFragment representation of the WebVTT cue text. |
| 105 static PassRefPtr<DocumentFragment> createDocumentFragmentFromCueText(Docume
nt&, const String&); | 105 static PassRefPtr<DocumentFragment> createDocumentFragmentFromCueText(Docume
nt&, const String&); |
| 106 | 106 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 126 ParseState collectCueText(const String&); | 126 ParseState collectCueText(const String&); |
| 127 ParseState recoverCue(const String&); | 127 ParseState recoverCue(const String&); |
| 128 ParseState ignoreBadCue(const String&); | 128 ParseState ignoreBadCue(const String&); |
| 129 | 129 |
| 130 void createNewCue(); | 130 void createNewCue(); |
| 131 void resetCueValues(); | 131 void resetCueValues(); |
| 132 | 132 |
| 133 void collectMetadataHeader(const String&); | 133 void collectMetadataHeader(const String&); |
| 134 void createNewRegion(const String& headerValue); | 134 void createNewRegion(const String& headerValue); |
| 135 | 135 |
| 136 void skipWhiteSpace(const String&, unsigned*); | 136 static String collectDigits(const String&, unsigned*); |
| 137 static void skipWhiteSpace(const String&, unsigned*); |
| 137 | 138 |
| 138 BufferedLineReader m_lineReader; | 139 BufferedLineReader m_lineReader; |
| 139 OwnPtr<TextResourceDecoder> m_decoder; | 140 OwnPtr<TextResourceDecoder> m_decoder; |
| 140 String m_currentId; | 141 String m_currentId; |
| 141 double m_currentStartTime; | 142 double m_currentStartTime; |
| 142 double m_currentEndTime; | 143 double m_currentEndTime; |
| 143 StringBuilder m_currentContent; | 144 StringBuilder m_currentContent; |
| 144 String m_currentSettings; | 145 String m_currentSettings; |
| 145 | 146 |
| 146 VTTParserClient* m_client; | 147 VTTParserClient* m_client; |
| 147 | 148 |
| 148 Vector<RefPtr<VTTCue> > m_cuelist; | 149 Vector<RefPtr<VTTCue> > m_cuelist; |
| 149 | 150 |
| 150 Vector<RefPtr<VTTRegion> > m_regionList; | 151 Vector<RefPtr<VTTRegion> > m_regionList; |
| 151 }; | 152 }; |
| 152 | 153 |
| 153 } // namespace WebCore | 154 } // namespace WebCore |
| 154 | 155 |
| 155 #endif | 156 #endif |
| OLD | NEW |