~ubuntu-branches/debian/squeeze/protobuf/squeeze

« back to all changes in this revision

Viewing changes to java/src/main/java/com/google/protobuf/TextFormat.java

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-06-02 16:19:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602161900-vm176i3ryt35yk91
Tags: 2.0.3-2.2
* Non-maintainer upload.
* Fix FTBFS from -2.1: don't fail when we can't clean up the java build,
  such as when openjdk isn't installed.
* Disable parallel builds, because libtool is made of fail (if binary-arch
  and build-indep run concurrently, we relink a library while it's being
  used; that doesn't work so well).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Protocol Buffers - Google's data interchange format
2
 
// Copyright 2008 Google Inc.
 
2
// Copyright 2008 Google Inc.  All rights reserved.
3
3
// http://code.google.com/p/protobuf/
4
4
//
5
 
// Licensed under the Apache License, Version 2.0 (the "License");
6
 
// you may not use this file except in compliance with the License.
7
 
// You may obtain a copy of the License at
8
 
//
9
 
//      http://www.apache.org/licenses/LICENSE-2.0
10
 
//
11
 
// Unless required by applicable law or agreed to in writing, software
12
 
// distributed under the License is distributed on an "AS IS" BASIS,
13
 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
// See the License for the specific language governing permissions and
15
 
// limitations under the License.
 
5
// Redistribution and use in source and binary forms, with or without
 
6
// modification, are permitted provided that the following conditions are
 
7
// met:
 
8
//
 
9
//     * Redistributions of source code must retain the above copyright
 
10
// notice, this list of conditions and the following disclaimer.
 
11
//     * Redistributions in binary form must reproduce the above
 
12
// copyright notice, this list of conditions and the following disclaimer
 
13
// in the documentation and/or other materials provided with the
 
14
// distribution.
 
15
//     * Neither the name of Google Inc. nor the names of its
 
16
// contributors may be used to endorse or promote products derived from
 
17
// this software without specific prior written permission.
 
18
//
 
19
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
20
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
21
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
22
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
23
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
24
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
25
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
26
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
27
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
28
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
29
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
30
 
17
31
package com.google.protobuf;
18
32
 
91
105
 
92
106
  private static void print(Message message, TextGenerator generator)
93
107
      throws IOException {
94
 
    Descriptor descriptor = message.getDescriptorForType();
95
108
    for (Map.Entry<FieldDescriptor, Object> field :
96
109
         message.getAllFields().entrySet()) {
97
110
      printField(field.getKey(), field.getValue(), generator);
384
397
    private int previousLine = 0;
385
398
    private int previousColumn = 0;
386
399
 
387
 
    private static Pattern WHITESPACE = Pattern.compile("(\\s|(#[^\n]*$))*");
 
400
    private static Pattern WHITESPACE =
 
401
      Pattern.compile("(\\s|(#.*$))+", Pattern.MULTILINE);
388
402
    private static Pattern TOKEN = Pattern.compile(
389
403
      "[a-zA-Z_][0-9a-zA-Z_+-]*|" +                 // an identifier
390
404
      "[0-9+-][0-9a-zA-Z_.+-]*|" +                  // a number
391
 
      "\"([^\"\n\\\\]|\\\\[^\n])*(\"|\\\\?$)|" +    // a double-quoted string
392
 
      "\'([^\"\n\\\\]|\\\\[^\n])*(\'|\\\\?$)");     // a single-quoted string
 
405
      "\"([^\"\n\\\\]|\\\\.)*(\"|\\\\?$)|" +        // a double-quoted string
 
406
      "\'([^\"\n\\\\]|\\\\.)*(\'|\\\\?$)",          // a single-quoted string
 
407
      Pattern.MULTILINE);
 
408
 
 
409
    private static Pattern DOUBLE_INFINITY = Pattern.compile(
 
410
      "-?inf(inity)?",
 
411
      Pattern.CASE_INSENSITIVE);
 
412
    private static Pattern FLOAT_INFINITY = Pattern.compile(
 
413
      "-?inf(inity)?f?",
 
414
      Pattern.CASE_INSENSITIVE);
 
415
    private static Pattern FLOAT_NAN = Pattern.compile(
 
416
      "nanf?",
 
417
      Pattern.CASE_INSENSITIVE);
393
418
 
394
419
    /** Construct a tokenizer that parses tokens from the given text. */
395
420
    public Tokenizer(CharSequence text) {
570
595
     * Otherwise, throw a {@link ParseException}.
571
596
     */
572
597
    public double consumeDouble() throws ParseException {
 
598
      // We need to parse infinity and nan separately because
 
599
      // Double.parseDouble() does not accept "inf", "infinity", or "nan".
 
600
      if (DOUBLE_INFINITY.matcher(currentToken).matches()) {
 
601
        boolean negative = currentToken.startsWith("-");
 
602
        nextToken();
 
603
        return negative ? Double.NEGATIVE_INFINITY : Double.POSITIVE_INFINITY;
 
604
      }
 
605
      if (currentToken.equalsIgnoreCase("nan")) {
 
606
        nextToken();
 
607
        return Double.NaN;
 
608
      }
573
609
      try {
574
610
        double result = Double.parseDouble(currentToken);
575
611
        nextToken();
584
620
     * Otherwise, throw a {@link ParseException}.
585
621
     */
586
622
    public float consumeFloat() throws ParseException {
 
623
      // We need to parse infinity and nan separately because
 
624
      // Float.parseFloat() does not accept "inf", "infinity", or "nan".
 
625
      if (FLOAT_INFINITY.matcher(currentToken).matches()) {
 
626
        boolean negative = currentToken.startsWith("-");
 
627
        nextToken();
 
628
        return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
 
629
      }
 
630
      if (FLOAT_NAN.matcher(currentToken).matches()) {
 
631
        nextToken();
 
632
        return Float.NaN;
 
633
      }
587
634
      try {
588
635
        float result = Float.parseFloat(currentToken);
589
636
        nextToken();