VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/xpcom/ds/nsManifestLineReader.h

最後變更 在這個檔案是 104488,由 vboxsync 提交於 9 月 前

libs/xpcom/ds: Add two missing error checks, add some missing field initialization, mark cases as fallthrough, bugref:3409

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 3.9 KB
 
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
4 *
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/
9 *
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
13 * License.
14 *
15 * The Original Code is mozilla.org code.
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 *
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.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38#ifndef nsManifestLineReader_h__
39#define nsManifestLineReader_h__
40
41#include "nspr.h"
42#include "nsDebug.h"
43
44class nsManifestLineReader
45{
46public:
47 nsManifestLineReader()
48 : mCur(nsnull)
49 , mLength(0)
50 , mNext(nsnull)
51 , mBase(nsnull)
52 , mLimit(nsnull) {}
53 ~nsManifestLineReader() {}
54
55 void Init(char* base, PRUint32 flen)
56 {
57 mBase = mCur = mNext = base;
58 mLength = 0;
59 mLimit = base + flen;
60 }
61
62 PRBool NextLine()
63 {
64 if(mNext >= mLimit)
65 return PR_FALSE;
66
67 mCur = mNext;
68 mLength = 0;
69
70 while(mNext < mLimit)
71 {
72 if(IsEOL(*mNext))
73 {
74 *mNext = '\0';
75 for(++mNext; mNext < mLimit; ++mNext)
76 if(!IsEOL(*mNext))
77 break;
78 return PR_TRUE;
79 }
80 ++mNext;
81 ++mLength;
82 }
83 return PR_FALSE;
84 }
85
86 int ParseLine(char** chunks, int* lengths, int maxChunks)
87 {
88 NS_ASSERTION(mCur && maxChunks && chunks, "bad call to ParseLine");
89 int found = 0;
90 chunks[found++] = mCur;
91
92 if(found < maxChunks)
93 {
94 char *lastchunk = mCur;
95 int *lastlength = lengths;
96 for(char* cur = mCur; *cur; cur++)
97 {
98 if(*cur == ',')
99 {
100 *cur = 0;
101 // always fill in the previous chunk's length
102 *lastlength++ = cur - lastchunk;
103 chunks[found++] = lastchunk = cur+1;
104 if(found == maxChunks)
105 break;
106 }
107 }
108 // crazy pointer math - calculate the length of the final chunk
109 *lastlength = (mCur + mLength) - lastchunk;
110 }
111 return found;
112 }
113
114 char* LinePtr() {return mCur;}
115 PRUint32 LineLength() {return mLength;}
116
117 PRBool IsEOL(char c) {return c == '\n' || c == '\r';}
118private:
119 char* mCur;
120 PRUint32 mLength;
121 char* mNext;
122 char* mBase;
123 char* mLimit;
124};
125
126#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette