diff options
author | Daisuke Miyakawa <dmiyakawa@google.com> | 2009-11-07 11:55:35 +0900 |
---|---|---|
committer | Daisuke Miyakawa <dmiyakawa@google.com> | 2009-11-07 12:08:19 +0900 |
commit | 344416e8349db9748cdb468146f09e4e2b33c4cb (patch) | |
tree | 149bf85c02087ad2ac1ec376f226f5fba42864e9 /core/java/android/pim | |
parent | b448893039dc7f06ff5a76e8be6444808b4cf2ea (diff) | |
download | frameworks_base-344416e8349db9748cdb468146f09e4e2b33c4cb.zip frameworks_base-344416e8349db9748cdb468146f09e4e2b33c4cb.tar.gz frameworks_base-344416e8349db9748cdb468146f09e4e2b33c4cb.tar.bz2 |
Make vCard parser invalid lines in vCard file which look like some comment.
e.g. "# Comment?"
In both vCard 2.1 and vCard 3.0, this syntax is never allowed, but some actual exporter seems to emit this kind of comment sometimes.
Both vCard 2.1 and vCard 3.0 allows some property to use multiple lines, so this change may cause another problem.
For example, if the "NOTE" property uses Quoted-Printable type, has several lines, and one of the lines starts with '#', we cannot know whether the line is "comment" or not.
Fortunately, in this change, the line is parsed as part of "NOTE" property, so I think there's no problem "right now", which does not mean that it is completely fine with vCard files Android will encounter in the future.
Internal issue number: 2245363
Diffstat (limited to 'core/java/android/pim')
3 files changed, 83 insertions, 8 deletions
diff --git a/core/java/android/pim/vcard/VCardParser_V21.java b/core/java/android/pim/vcard/VCardParser_V21.java index b3ff8fa..748ea37 100644 --- a/core/java/android/pim/vcard/VCardParser_V21.java +++ b/core/java/android/pim/vcard/VCardParser_V21.java @@ -16,6 +16,8 @@ package android.pim.vcard; import android.pim.vcard.exception.VCardException; +import android.pim.vcard.exception.VCardInvalidCommentLineException; +import android.pim.vcard.exception.VCardInvalidLineException; import android.pim.vcard.exception.VCardNestedException; import android.pim.vcard.exception.VCardNotSupportedException; import android.pim.vcard.exception.VCardVersionException; @@ -52,7 +54,7 @@ public class VCardParser_V21 extends VCardParser { Arrays.asList("INLINE", "URL", "CONTENT-ID", "CID")); /** Store the property names available in vCard 2.1 */ - private static final HashSet<String> sAvailablePropertyNameV21 = + private static final HashSet<String> sAvailablePropertyNameSetV21 = new HashSet<String>(Arrays.asList( "BEGIN", "LOGO", "PHOTO", "LABEL", "FN", "TITLE", "SOUND", "VERSION", "TEL", "EMAIL", "TZ", "GEO", "NOTE", "URL", @@ -156,7 +158,7 @@ public class VCardParser_V21 extends VCardParser { * @return true when the propertyName is a valid property name. */ protected boolean isValidPropertyName(String propertyName) { - if (!(sAvailablePropertyNameV21.contains(propertyName.toUpperCase()) || + if (!(sAvailablePropertyNameSetV21.contains(propertyName.toUpperCase()) || propertyName.startsWith("X-")) && !mWarningValueMap.contains(propertyName)) { mWarningValueMap.add(propertyName); @@ -346,7 +348,12 @@ public class VCardParser_V21 extends VCardParser { mBuilder.startProperty(); mTimeStartProperty += System.currentTimeMillis() - start; } - ended = parseItem(); + try { + ended = parseItem(); + } catch (VCardInvalidCommentLineException e) { + Log.e(LOG_TAG, "Invalid line which looks like some comment was found. Ignored."); + ended = false; + } if (mBuilder != null && !ended) { long start = System.currentTimeMillis(); mBuilder.endProperty(); @@ -373,7 +380,7 @@ public class VCardParser_V21 extends VCardParser { return true; } if (propertyNameAndValue.length != 2) { - throw new VCardException("Invalid line \"" + line + "\""); + throw new VCardInvalidLineException("Invalid line \"" + line + "\""); } String propertyName = propertyNameAndValue[0].toUpperCase(); String propertyValue = propertyNameAndValue[1]; @@ -423,7 +430,11 @@ public class VCardParser_V21 extends VCardParser { int nameIndex = 0; String[] propertyNameAndValue = new String[2]; - + + if (length > 0 && line.charAt(0) == '#') { + throw new VCardInvalidCommentLineException(); + } + for (int i = 0; i < length; i++) { char ch = line.charAt(i); switch (state) { @@ -488,7 +499,7 @@ public class VCardParser_V21 extends VCardParser { } } - throw new VCardException("Invalid line: \"" + line + "\""); + throw new VCardInvalidLineException("Invalid line: \"" + line + "\""); } @@ -540,7 +551,7 @@ public class VCardParser_V21 extends VCardParser { /** * ptypeval = knowntype / "X-" word */ - protected void handleType(String ptypeval) { + protected void handleType(final String ptypeval) { String upperTypeValue = ptypeval; if (!(sKnownTypeSet.contains(upperTypeValue) || upperTypeValue.startsWith("X-")) && !mWarningValueMap.contains(ptypeval)) { @@ -556,7 +567,7 @@ public class VCardParser_V21 extends VCardParser { /** * pvalueval = "INLINE" / "URL" / "CONTENT-ID" / "CID" / "X-" word */ - protected void handleValue(String pvalueval) throws VCardException { + protected void handleValue(final String pvalueval) throws VCardException { if (sKnownValueSet.contains(pvalueval.toUpperCase()) || pvalueval.startsWith("X-")) { if (mBuilder != null) { diff --git a/core/java/android/pim/vcard/exception/VCardInvalidCommentLineException.java b/core/java/android/pim/vcard/exception/VCardInvalidCommentLineException.java new file mode 100644 index 0000000..67db62c --- /dev/null +++ b/core/java/android/pim/vcard/exception/VCardInvalidCommentLineException.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2009 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.pim.vcard.exception; + +/** + * Thrown when the vCard has some line starting with '#'. In the specification, + * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit + * such lines. + */ +public class VCardInvalidCommentLineException extends VCardInvalidLineException { + public VCardInvalidCommentLineException() { + super(); + } + + public VCardInvalidCommentLineException(final String message) { + super(message); + } +} diff --git a/core/java/android/pim/vcard/exception/VCardInvalidLineException.java b/core/java/android/pim/vcard/exception/VCardInvalidLineException.java new file mode 100644 index 0000000..330153e --- /dev/null +++ b/core/java/android/pim/vcard/exception/VCardInvalidLineException.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2009 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.pim.vcard.exception; + +/** + * Thrown when the vCard has some line starting with '#'. In the specification, + * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit + * such lines. + */ +public class VCardInvalidLineException extends VCardException { + public VCardInvalidLineException() { + super(); + } + + public VCardInvalidLineException(final String message) { + super(message); + } +} |