Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 1 | // Copyright 2009 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 5 | /* |
| 6 | Package fmt implements formatted I/O with functions analogous |
| 7 | to C's printf. The format 'verbs' are derived from C's but |
| 8 | are simpler. |
| 9 | |
| 10 | The verbs: |
| 11 | |
| 12 | General: |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 13 | %v the value in a default format. |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 14 | when printing structs, the plus flag (%+v) adds field names |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 15 | %#v a Go-syntax representation of the value |
| 16 | %T a Go-syntax representation of the type of the value |
| 17 | |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 18 | Boolean: |
| 19 | %t the word true or false |
| 20 | Integer: |
| 21 | %b base 2 |
| 22 | %c the character represented by the corresponding Unicode code point |
| 23 | %d base 10 |
| 24 | %o base 8 |
| 25 | %x base 16, with lower-case letters for a-f |
| 26 | %X base 16, with upper-case letters for A-F |
| 27 | Floating-point: |
| 28 | %e scientific notation, e.g. -1234.456e+78 |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 29 | %E scientific notation, e.g. -1234.456E+78 |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 30 | %f decimal point but no exponent, e.g. 123.456 |
| 31 | %g whichever of %e or %f produces more compact output |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 32 | %G whichever of %E or %f produces more compact output |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 33 | String and slice of bytes: |
| 34 | %s the uninterpreted bytes of the string or slice |
| 35 | %q a double-quoted string safely escaped with Go syntax |
| 36 | %x base 16 notation with two characters per byte |
| 37 | Pointer: |
| 38 | %p base 16 notation, with leading 0x |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 39 | |
| 40 | There is no 'u' flag. Integers are printed unsigned if they have unsigned type. |
| 41 | Similarly, there is no need to specify the size of the operand (int8, int64). |
| 42 | |
| 43 | For numeric values, the width and precision flags control |
| 44 | formatting; width sets the width of the field, precision the |
| 45 | number of places after the decimal, if appropriate. The |
| 46 | format %6.2f prints 123.45. |
| 47 | |
| 48 | Other flags: |
| 49 | + always print a sign for numeric values |
| 50 | - pad with spaces on the right rather than the left (left-justify the field) |
| 51 | # alternate format: add leading 0 for octal (%#o), 0x for hex (%#x); |
| 52 | suppress 0x for %p (%#p); |
| 53 | print a raw (backquoted) string if possible for %q (%#q) |
| 54 | ' ' (space) leave a space for elided sign in numbers (% d); |
| 55 | put spaces between bytes printing strings or slices in hex (% x) |
| 56 | 0 pad with leading zeros rather than spaces |
| 57 | |
| 58 | For each Printf-like function, there is also a Print function |
| 59 | that takes no format and is equivalent to saying %v for every |
| 60 | operand. Another variant Println inserts blanks between |
| 61 | operands and appends a newline. |
| 62 | |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 63 | Regardless of the verb, if an operand is an interface value, |
| 64 | the internal concrete value is used, not the interface itself. |
| 65 | Thus: |
| 66 | var i interface{} = 23; |
| 67 | fmt.Printf("%v\n", i); |
| 68 | will print 23. |
| 69 | |
Rob Pike | 07a497f | 2009-07-30 16:57:46 -0700 | [diff] [blame] | 70 | If an operand implements interface Formatter, that interface |
Rob Pike | b6ce2a7 | 2009-06-22 18:09:40 -0700 | [diff] [blame] | 71 | can be used for fine control of formatting. |
| 72 | |
| 73 | If an operand implements method String() string that method |
| 74 | will be used for %v, %s, or Print etc. |
| 75 | */ |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 76 | package fmt |
| 77 | |
Rob Pike | db25e78 | 2008-10-26 08:27:50 -0700 | [diff] [blame] | 78 | |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 79 | import ( |
Rob Pike | 2355395 | 2008-11-14 10:42:45 -0800 | [diff] [blame] | 80 | "io"; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 81 | "os"; |
Russ Cox | 1f6463f | 2009-04-16 20:52:37 -0700 | [diff] [blame] | 82 | "reflect"; |
Russ Cox | 3609624 | 2009-01-16 14:58:14 -0800 | [diff] [blame] | 83 | "utf8"; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 84 | ) |
| 85 | |
Rob Pike | 28ba977 | 2009-06-23 15:20:30 -0700 | [diff] [blame] | 86 | // State represents the printer state passed to custom formatters. |
Rob Pike | c8b47c6 | 2009-05-08 11:22:57 -0700 | [diff] [blame] | 87 | // It provides access to the io.Writer interface plus information about |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 88 | // the flags and options for the operand's format specifier. |
Rob Pike | 28ba977 | 2009-06-23 15:20:30 -0700 | [diff] [blame] | 89 | type State interface { |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 90 | // Write is the function to call to emit formatted output to be printed. |
Rob Pike | aaf63f8 | 2009-04-17 00:08:24 -0700 | [diff] [blame] | 91 | Write(b []byte) (ret int, err os.Error); |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 92 | // Width returns the value of the width option and whether it has been set. |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 93 | Width() (wid int, ok bool); |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 94 | // Precision returns the value of the precision option and whether it has been set. |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 95 | Precision() (prec int, ok bool); |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 96 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 97 | // Flag returns whether the flag c, a character, has been set. |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 98 | Flag(int) bool; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 101 | // Formatter is the interface implemented by values with a custom formatter. |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 102 | // The implementation of Format may call Sprintf or Fprintf(f) etc. |
| 103 | // to generate its output. |
Rob Pike | 28ba977 | 2009-06-23 15:20:30 -0700 | [diff] [blame] | 104 | type Formatter interface { |
| 105 | Format(f State, c int); |
Rob Pike | 91212bd | 2008-11-06 11:38:44 -0800 | [diff] [blame] | 106 | } |
| 107 | |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 108 | // Stringer is implemented by any value that has a String method(), |
| 109 | // which defines the ``native'' format for that value. |
| 110 | // The String method is used to print values passed as an operand |
| 111 | // to a %s or %v format or to an unformatted printer such as Print. |
Rob Pike | c8b47c6 | 2009-05-08 11:22:57 -0700 | [diff] [blame] | 112 | type Stringer interface { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 113 | String() string; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 114 | } |
| 115 | |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 116 | // GoStringer is implemented by any value that has a GoString() method, |
| 117 | // which defines the Go syntax for that value. |
| 118 | // The GoString method is used to print values passed as an operand |
| 119 | // to a %#v format. |
| 120 | type GoStringer interface { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 121 | GoString() string; |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 124 | const runeSelf = utf8.RuneSelf |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 125 | const allocSize = 32 |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 126 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 127 | type pp struct { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 128 | n int; |
Russ Cox | d47d888 | 2008-12-18 22:37:22 -0800 | [diff] [blame] | 129 | buf []byte; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 130 | fmt *Fmt; |
| 131 | } |
| 132 | |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 133 | func newPrinter() *pp { |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 134 | p := new(pp); |
Russ Cox | 0496040 | 2009-08-10 22:02:51 -0700 | [diff] [blame] | 135 | p.fmt = New(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 136 | return p; |
| 137 | } |
| 138 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 139 | func (p *pp) Width() (wid int, ok bool) { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 140 | return p.fmt.wid, p.fmt.wid_present; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 141 | } |
| 142 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 143 | func (p *pp) Precision() (prec int, ok bool) { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 144 | return p.fmt.prec, p.fmt.prec_present; |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 147 | func (p *pp) Flag(b int) bool { |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 148 | switch b { |
| 149 | case '-': |
| 150 | return p.fmt.minus; |
| 151 | case '+': |
| 152 | return p.fmt.plus; |
| 153 | case '#': |
| 154 | return p.fmt.sharp; |
| 155 | case ' ': |
| 156 | return p.fmt.space; |
| 157 | case '0': |
| 158 | return p.fmt.zero; |
| 159 | } |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 160 | return false; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 161 | } |
| 162 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 163 | func (p *pp) ensure(n int) { |
Russ Cox | d47d888 | 2008-12-18 22:37:22 -0800 | [diff] [blame] | 164 | if len(p.buf) < n { |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 165 | newn := allocSize + len(p.buf); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 166 | if newn < n { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 167 | newn = n+allocSize; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 168 | } |
Russ Cox | 5564504 | 2009-01-06 15:19:02 -0800 | [diff] [blame] | 169 | b := make([]byte, newn); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 170 | for i := 0; i < p.n; i++ { |
| 171 | b[i] = p.buf[i]; |
| 172 | } |
| 173 | p.buf = b; |
| 174 | } |
| 175 | } |
| 176 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 177 | func (p *pp) addstr(s string) { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 178 | n := len(s); |
| 179 | p.ensure(p.n + n); |
| 180 | for i := 0; i < n; i++ { |
| 181 | p.buf[p.n] = s[i]; |
| 182 | p.n++; |
| 183 | } |
| 184 | } |
| 185 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 186 | func (p *pp) addbytes(b []byte, start, end int) { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 187 | p.ensure(p.n + end - start); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 188 | for i := start; i < end; i++ { |
| 189 | p.buf[p.n] = b[i]; |
| 190 | p.n++; |
| 191 | } |
| 192 | } |
| 193 | |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 194 | func (p *pp) add(c int) { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 195 | p.ensure(p.n + 1); |
Rob Pike | 497bb9c | 2009-01-15 15:40:27 -0800 | [diff] [blame] | 196 | if c < runeSelf { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 197 | p.buf[p.n] = byte(c); |
| 198 | p.n++; |
| 199 | } else { |
| 200 | p.addstr(string(c)); |
| 201 | } |
| 202 | } |
| 203 | |
Rob Pike | 3200b06 | 2008-11-04 13:57:21 -0800 | [diff] [blame] | 204 | // Implement Write so we can call fprintf on a P, for |
| 205 | // recursive use in custom verbs. |
Rob Pike | aaf63f8 | 2009-04-17 00:08:24 -0700 | [diff] [blame] | 206 | func (p *pp) Write(b []byte) (ret int, err os.Error) { |
Rob Pike | 3200b06 | 2008-11-04 13:57:21 -0800 | [diff] [blame] | 207 | p.addbytes(b, 0, len(b)); |
| 208 | return len(b), nil; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 211 | // These routines end in 'f' and take a format string. |
| 212 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 213 | // Fprintf formats according to a format specifier and writes to w. |
Rob Pike | c8b47c6 | 2009-05-08 11:22:57 -0700 | [diff] [blame] | 214 | func Fprintf(w io.Writer, format string, a ...) (n int, error os.Error) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 215 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 216 | p := newPrinter(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 217 | p.doprintf(format, v); |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 218 | n, error = w.Write(p.buf[0 : p.n]); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 219 | return n, error; |
| 220 | } |
| 221 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 222 | // Printf formats according to a format specifier and writes to standard output. |
Rob Pike | aaf63f8 | 2009-04-17 00:08:24 -0700 | [diff] [blame] | 223 | func Printf(format string, v ...) (n int, errno os.Error) { |
Rob Pike | 61f3302 | 2009-01-15 13:48:11 -0800 | [diff] [blame] | 224 | n, errno = Fprintf(os.Stdout, format, v); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 225 | return n, errno; |
| 226 | } |
| 227 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 228 | // Sprintf formats according to a format specifier and returns the resulting string. |
Russ Cox | 839a684 | 2009-01-20 14:40:40 -0800 | [diff] [blame] | 229 | func Sprintf(format string, a ...) string { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 230 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 231 | p := newPrinter(); |
Robert Griesemer | 3a2c0a9 | 2008-11-06 11:56:08 -0800 | [diff] [blame] | 232 | p.doprintf(format, v); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 233 | s := string(p.buf)[0 : p.n]; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 234 | return s; |
| 235 | } |
| 236 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 237 | // These routines do not take a format string |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 238 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 239 | // Fprint formats using the default formats for its operands and writes to w. |
| 240 | // Spaces are added between operands when neither is a string. |
Rob Pike | c8b47c6 | 2009-05-08 11:22:57 -0700 | [diff] [blame] | 241 | func Fprint(w io.Writer, a ...) (n int, error os.Error) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 242 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 243 | p := newPrinter(); |
Rob Pike | 2d4f7ba | 2008-11-02 12:33:02 -0800 | [diff] [blame] | 244 | p.doprint(v, false, false); |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 245 | n, error = w.Write(p.buf[0 : p.n]); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 246 | return n, error; |
| 247 | } |
| 248 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 249 | // Print formats using the default formats for its operands and writes to standard output. |
| 250 | // Spaces are added between operands when neither is a string. |
Rob Pike | aaf63f8 | 2009-04-17 00:08:24 -0700 | [diff] [blame] | 251 | func Print(v ...) (n int, errno os.Error) { |
Rob Pike | 61f3302 | 2009-01-15 13:48:11 -0800 | [diff] [blame] | 252 | n, errno = Fprint(os.Stdout, v); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 253 | return n, errno; |
| 254 | } |
| 255 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 256 | // Sprint formats using the default formats for its operands and returns the resulting string. |
| 257 | // Spaces are added between operands when neither is a string. |
Russ Cox | 839a684 | 2009-01-20 14:40:40 -0800 | [diff] [blame] | 258 | func Sprint(a ...) string { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 259 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 260 | p := newPrinter(); |
Robert Griesemer | 3a2c0a9 | 2008-11-06 11:56:08 -0800 | [diff] [blame] | 261 | p.doprint(v, false, false); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 262 | s := string(p.buf)[0 : p.n]; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 263 | return s; |
| 264 | } |
| 265 | |
| 266 | // These routines end in 'ln', do not take a format string, |
| 267 | // always add spaces between operands, and add a newline |
| 268 | // after the last operand. |
| 269 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 270 | // Fprintln formats using the default formats for its operands and writes to w. |
| 271 | // Spaces are always added between operands and a newline is appended. |
Rob Pike | c8b47c6 | 2009-05-08 11:22:57 -0700 | [diff] [blame] | 272 | func Fprintln(w io.Writer, a ...) (n int, error os.Error) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 273 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 274 | p := newPrinter(); |
Rob Pike | 2d4f7ba | 2008-11-02 12:33:02 -0800 | [diff] [blame] | 275 | p.doprint(v, true, true); |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 276 | n, error = w.Write(p.buf[0 : p.n]); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 277 | return n, error; |
| 278 | } |
| 279 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 280 | // Println formats using the default formats for its operands and writes to standard output. |
| 281 | // Spaces are always added between operands and a newline is appended. |
Rob Pike | aaf63f8 | 2009-04-17 00:08:24 -0700 | [diff] [blame] | 282 | func Println(v ...) (n int, errno os.Error) { |
Rob Pike | 61f3302 | 2009-01-15 13:48:11 -0800 | [diff] [blame] | 283 | n, errno = Fprintln(os.Stdout, v); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 284 | return n, errno; |
| 285 | } |
| 286 | |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 287 | // Sprintln formats using the default formats for its operands and returns the resulting string. |
| 288 | // Spaces are always added between operands and a newline is appended. |
Russ Cox | 839a684 | 2009-01-20 14:40:40 -0800 | [diff] [blame] | 289 | func Sprintln(a ...) string { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 290 | v := reflect.NewValue(a).(*reflect.StructValue); |
Rob Pike | db1656f | 2009-01-16 13:29:43 -0800 | [diff] [blame] | 291 | p := newPrinter(); |
Robert Griesemer | 3a2c0a9 | 2008-11-06 11:56:08 -0800 | [diff] [blame] | 292 | p.doprint(v, true, true); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 293 | s := string(p.buf)[0 : p.n]; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 294 | return s; |
| 295 | } |
| 296 | |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 297 | |
| 298 | // Get the i'th arg of the struct value. |
| 299 | // If the arg itself is an interface, return a value for |
| 300 | // the thing inside the interface, not the interface itself. |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 301 | func getField(v *reflect.StructValue, i int) reflect.Value { |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 302 | val := v.Field(i); |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 303 | if i, ok := val.(*reflect.InterfaceValue); ok { |
| 304 | if inter := i.Interface(); inter != nil { |
| 305 | return reflect.NewValue(inter); |
| 306 | } |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 307 | } |
| 308 | return val; |
| 309 | } |
| 310 | |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 311 | // Getters for the fields of the argument structure. |
| 312 | |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 313 | func getBool(v reflect.Value) (val bool, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 314 | if b, ok := v.(*reflect.BoolValue); ok { |
| 315 | return b.Get(), true; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 316 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 317 | return; |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 318 | } |
| 319 | |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 320 | func getInt(v reflect.Value) (val int64, signed, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 321 | switch v := v.(type) { |
| 322 | case *reflect.IntValue: |
| 323 | return int64(v.Get()), true, true; |
| 324 | case *reflect.Int8Value: |
| 325 | return int64(v.Get()), true, true; |
| 326 | case *reflect.Int16Value: |
| 327 | return int64(v.Get()), true, true; |
| 328 | case *reflect.Int32Value: |
| 329 | return int64(v.Get()), true, true; |
| 330 | case *reflect.Int64Value: |
| 331 | return int64(v.Get()), true, true; |
| 332 | case *reflect.UintValue: |
| 333 | return int64(v.Get()), false, true; |
| 334 | case *reflect.Uint8Value: |
| 335 | return int64(v.Get()), false, true; |
| 336 | case *reflect.Uint16Value: |
| 337 | return int64(v.Get()), false, true; |
| 338 | case *reflect.Uint32Value: |
| 339 | return int64(v.Get()), false, true; |
| 340 | case *reflect.Uint64Value: |
| 341 | return int64(v.Get()), false, true; |
| 342 | case *reflect.UintptrValue: |
| 343 | return int64(v.Get()), false, true; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 344 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 345 | return; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | func getString(v reflect.Value) (val string, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 349 | if v, ok := v.(*reflect.StringValue); ok { |
| 350 | return v.Get(), true; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 351 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 352 | if bytes, ok := v.Interface().([]byte); ok { |
| 353 | return string(bytes), true; |
| 354 | } |
| 355 | return; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 358 | func getFloat32(v reflect.Value) (val float32, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 359 | switch v := v.(type) { |
| 360 | case *reflect.Float32Value: |
| 361 | return float32(v.Get()), true; |
| 362 | case *reflect.FloatValue: |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 363 | if v.Type().Size() * 8 == 32 { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 364 | return float32(v.Get()), true; |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 365 | } |
| 366 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 367 | return; |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | func getFloat64(v reflect.Value) (val float64, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 371 | switch v := v.(type) { |
| 372 | case *reflect.FloatValue: |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 373 | if v.Type().Size() * 8 == 64 { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 374 | return float64(v.Get()), true; |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 375 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 376 | case *reflect.Float64Value: |
| 377 | return float64(v.Get()), true; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 378 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 379 | return; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Rob Pike | 50d0695 | 2008-12-09 15:41:21 -0800 | [diff] [blame] | 382 | func getPtr(v reflect.Value) (val uintptr, ok bool) { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 383 | switch v := v.(type) { |
| 384 | case *reflect.PtrValue: |
| 385 | return uintptr(v.Get()), true; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 386 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 387 | return; |
Rob Pike | b0d6267 | 2008-12-22 11:04:17 -0800 | [diff] [blame] | 388 | } |
| 389 | |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 390 | // Convert ASCII to integer. n is 0 (and got is false) if no number present. |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 391 | |
| 392 | func parsenum(s string, start, end int) (n int, got bool, newi int) { |
| 393 | if start >= end { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 394 | return 0, false, end; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 395 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 396 | isnum := false; |
| 397 | num := 0; |
| 398 | for '0' <= s[start] && s[start] <= '9' { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 399 | num = num*10 + int(s[start]-'0'); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 400 | start++; |
| 401 | isnum = true; |
| 402 | } |
| 403 | return num, isnum, start; |
| 404 | } |
| 405 | |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 406 | type uintptrGetter interface { |
| 407 | Get() uintptr; |
| 408 | } |
| 409 | |
| 410 | func (p *pp) printField(field reflect.Value, plus, sharp bool, depth int) (was_string bool) { |
Rob Pike | ac09eb4 | 2008-12-11 12:59:49 -0800 | [diff] [blame] | 411 | inter := field.Interface(); |
| 412 | if inter != nil { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 413 | switch { |
| 414 | default: |
| 415 | if stringer, ok := inter.(Stringer); ok { |
| 416 | p.addstr(stringer.String()); |
| 417 | return false; // this value is not a string |
| 418 | } |
| 419 | case sharp: |
| 420 | if stringer, ok := inter.(GoStringer); ok { |
| 421 | p.addstr(stringer.GoString()); |
| 422 | return false; // this value is not a string |
| 423 | } |
Rob Pike | ac09eb4 | 2008-12-11 12:59:49 -0800 | [diff] [blame] | 424 | } |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 425 | } |
| 426 | s := ""; |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 427 | BigSwitch: |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 428 | switch f := field.(type) { |
| 429 | case *reflect.BoolValue: |
| 430 | s = p.fmt.Fmt_boolean(f.Get()).Str(); |
| 431 | case *reflect.Float32Value: |
| 432 | s = p.fmt.Fmt_g32(f.Get()).Str(); |
| 433 | case *reflect.Float64Value: |
| 434 | s = p.fmt.Fmt_g64(f.Get()).Str(); |
| 435 | case *reflect.FloatValue: |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 436 | if field.Type().Size() * 8 == 32 { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 437 | s = p.fmt.Fmt_g32(float32(f.Get())).Str(); |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 438 | } else { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 439 | s = p.fmt.Fmt_g64(float64(f.Get())).Str(); |
Russ Cox | 079c00a | 2008-11-17 12:34:03 -0800 | [diff] [blame] | 440 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 441 | case *reflect.StringValue: |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 442 | if sharp { |
| 443 | s = p.fmt.Fmt_q(f.Get()).Str(); |
| 444 | } else { |
| 445 | s = p.fmt.Fmt_s(f.Get()).Str(); |
| 446 | was_string = true; |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 447 | } |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 448 | case *reflect.MapValue: |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 449 | if sharp { |
| 450 | p.addstr(field.Type().String()); |
| 451 | p.addstr("{"); |
| 452 | } else { |
| 453 | p.addstr("map["); |
| 454 | } |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 455 | keys := f.Keys(); |
| 456 | for i, key := range keys { |
| 457 | if i > 0 { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 458 | if sharp { |
| 459 | p.addstr(", "); |
| 460 | } else { |
| 461 | p.addstr(" "); |
| 462 | } |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 463 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 464 | p.printField(key, plus, sharp, depth+1); |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 465 | p.addstr(":"); |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 466 | p.printField(f.Elem(key), plus, sharp, depth+1); |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 467 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 468 | if sharp { |
| 469 | p.addstr("}"); |
| 470 | } else { |
| 471 | p.addstr("]"); |
| 472 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 473 | case *reflect.StructValue: |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 474 | if sharp { |
| 475 | p.addstr(field.Type().String()); |
| 476 | } |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 477 | p.add('{'); |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 478 | v := f; |
| 479 | t := v.Type().(*reflect.StructType); |
Russ Cox | 67a7aba | 2008-12-16 14:39:29 -0800 | [diff] [blame] | 480 | p.fmt.clearflags(); // clear flags for p.printField |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 481 | for i := 0; i < v.NumField(); i++ { |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 482 | if i > 0 { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 483 | if sharp { |
| 484 | p.addstr(", "); |
| 485 | } else { |
| 486 | p.addstr(" "); |
| 487 | } |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 488 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 489 | if plus || sharp { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 490 | if f := t.Field(i); f.Name != "" { |
| 491 | p.addstr(f.Name); |
Rob Pike | 3928a4e | 2009-07-09 17:30:07 -0700 | [diff] [blame] | 492 | p.add(':'); |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 493 | } |
| 494 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 495 | p.printField(getField(v, i), plus, sharp, depth+1); |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 496 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 497 | p.addstr("}"); |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 498 | case *reflect.InterfaceValue: |
| 499 | value := f.Elem(); |
Russ Cox | ac6ebfd | 2009-04-06 21:28:04 -0700 | [diff] [blame] | 500 | if value == nil { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 501 | if sharp { |
| 502 | p.addstr(field.Type().String()); |
| 503 | p.addstr("(nil)"); |
| 504 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 505 | s = "<nil>"; |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 506 | } |
Rob Pike | ac09eb4 | 2008-12-11 12:59:49 -0800 | [diff] [blame] | 507 | } else { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 508 | return p.printField(value, plus, sharp, depth+1); |
Rob Pike | ac09eb4 | 2008-12-11 12:59:49 -0800 | [diff] [blame] | 509 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 510 | case reflect.ArrayOrSliceValue: |
| 511 | if sharp { |
| 512 | p.addstr(field.Type().String()); |
| 513 | p.addstr("{"); |
| 514 | } else { |
| 515 | p.addstr("["); |
| 516 | } |
| 517 | for i := 0; i < f.Len(); i++ { |
| 518 | if i > 0 { |
| 519 | if sharp { |
| 520 | p.addstr(", "); |
| 521 | } else { |
| 522 | p.addstr(" "); |
| 523 | } |
| 524 | } |
| 525 | p.printField(f.Elem(i), plus, sharp, depth+1); |
| 526 | } |
| 527 | if sharp { |
| 528 | p.addstr("}"); |
| 529 | } else { |
| 530 | p.addstr("]"); |
| 531 | } |
| 532 | case *reflect.PtrValue: |
| 533 | v := f.Get(); |
| 534 | // pointer to array or slice or struct? ok at top level |
| 535 | // but not embedded (avoid loops) |
| 536 | if v != 0 && depth == 0 { |
| 537 | switch a := f.Elem().(type) { |
| 538 | case reflect.ArrayOrSliceValue: |
| 539 | p.addstr("&"); |
| 540 | p.printField(a, plus, sharp, depth+1); |
| 541 | break BigSwitch; |
| 542 | case *reflect.StructValue: |
| 543 | p.addstr("&"); |
| 544 | p.printField(a, plus, sharp, depth+1); |
| 545 | break BigSwitch; |
| 546 | } |
| 547 | } |
| 548 | if sharp { |
| 549 | p.addstr("("); |
| 550 | p.addstr(field.Type().String()); |
| 551 | p.addstr(")("); |
| 552 | if v == 0 { |
| 553 | p.addstr("nil"); |
| 554 | } else { |
| 555 | p.fmt.sharp = true; |
| 556 | p.addstr(p.fmt.Fmt_ux64(uint64(v)).Str()); |
| 557 | } |
| 558 | p.addstr(")"); |
| 559 | break; |
| 560 | } |
| 561 | if v == 0 { |
| 562 | s = "<nil>"; |
| 563 | break; |
| 564 | } |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 565 | p.fmt.sharp = true; // turn 0x on |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 566 | s = p.fmt.Fmt_ux64(uint64(v)).Str(); |
| 567 | case uintptrGetter: |
| 568 | v := f.Get(); |
| 569 | if sharp { |
| 570 | p.addstr("("); |
| 571 | p.addstr(field.Type().String()); |
| 572 | p.addstr(")("); |
| 573 | if v == 0 { |
| 574 | p.addstr("nil"); |
| 575 | } else { |
| 576 | p.fmt.sharp = true; |
| 577 | p.addstr(p.fmt.Fmt_ux64(uint64(v)).Str()); |
| 578 | } |
| 579 | p.addstr(")"); |
| 580 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 581 | p.fmt.sharp = true; // turn 0x on |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 582 | p.addstr(p.fmt.Fmt_ux64(uint64(f.Get())).Str()); |
| 583 | } |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 584 | default: |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 585 | v, signed, ok := getInt(field); |
| 586 | if ok { |
| 587 | if signed { |
| 588 | s = p.fmt.Fmt_d64(v).Str(); |
| 589 | } else { |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 590 | if sharp { |
| 591 | p.fmt.sharp = true; // turn on 0x |
| 592 | s = p.fmt.Fmt_ux64(uint64(v)).Str(); |
| 593 | } else { |
| 594 | s = p.fmt.Fmt_ud64(uint64(v)).Str(); |
| 595 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 596 | } |
| 597 | break; |
| 598 | } |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 599 | s = "?" + field.Type().String() + "?"; |
| 600 | } |
| 601 | p.addstr(s); |
| 602 | return was_string; |
| 603 | } |
| 604 | |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 605 | func (p *pp) doprintf(format string, v *reflect.StructValue) { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 606 | p.ensure(len(format)); // a good starting size |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 607 | end := len(format)-1; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 608 | fieldnum := 0; // we process one field per non-trivial format |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 609 | for i := 0; i <= end; { |
Russ Cox | 3619f1e | 2009-05-11 14:10:34 -0700 | [diff] [blame] | 610 | c, w := utf8.DecodeRuneInString(format[i:len(format)]); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 611 | if c != '%' || i == end { |
| 612 | p.add(c); |
| 613 | i += w; |
| 614 | continue; |
| 615 | } |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 616 | i++; |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 617 | // flags and widths |
| 618 | p.fmt.clearflags(); |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 619 | F: for ; i < end; i++ { |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 620 | switch format[i] { |
| 621 | case '#': |
| 622 | p.fmt.sharp = true; |
| 623 | case '0': |
| 624 | p.fmt.zero = true; |
| 625 | case '+': |
| 626 | p.fmt.plus = true; |
| 627 | case '-': |
| 628 | p.fmt.minus = true; |
| 629 | case ' ': |
| 630 | p.fmt.space = true; |
| 631 | default: |
| 632 | break F; |
| 633 | } |
| 634 | } |
| 635 | // do we have 20 (width)? |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 636 | p.fmt.wid, p.fmt.wid_present, i = parsenum(format, i, end); |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 637 | // do we have .20 (precision)? |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 638 | if i < end && format[i] == '.' { |
Russ Cox | bf67afc | 2008-12-11 16:53:33 -0800 | [diff] [blame] | 639 | p.fmt.prec, p.fmt.prec_present, i = parsenum(format, i+1, end); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 640 | } |
Russ Cox | 3619f1e | 2009-05-11 14:10:34 -0700 | [diff] [blame] | 641 | c, w = utf8.DecodeRuneInString(format[i:len(format)]); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 642 | i += w; |
| 643 | // percent is special - absorbs no operand |
| 644 | if c == '%' { |
| 645 | p.add('%'); // TODO: should we bother with width & prec? |
| 646 | continue; |
| 647 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 648 | if fieldnum >= v.NumField() { // out of operands |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 649 | p.add('%'); |
| 650 | p.add(c); |
| 651 | p.addstr("(missing)"); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 652 | continue; |
| 653 | } |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 654 | field := getField(v, fieldnum); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 655 | fieldnum++; |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 656 | |
| 657 | // Try formatter except for %T, |
| 658 | // which is special and handled internally. |
Rob Pike | ac09eb4 | 2008-12-11 12:59:49 -0800 | [diff] [blame] | 659 | inter := field.Interface(); |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 660 | if inter != nil && c != 'T' { |
Rob Pike | 28ba977 | 2009-06-23 15:20:30 -0700 | [diff] [blame] | 661 | if formatter, ok := inter.(Formatter); ok { |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 662 | formatter.Format(p, c); |
| 663 | continue; |
| 664 | } |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 665 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 666 | |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 667 | s := ""; |
| 668 | switch c { |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 669 | // bool |
| 670 | case 't': |
| 671 | if v, ok := getBool(field); ok { |
| 672 | if v { |
| 673 | s = "true"; |
Rob Pike | 59f029c | 2008-11-01 16:37:53 -0700 | [diff] [blame] | 674 | } else { |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 675 | s = "false"; |
Rob Pike | 59f029c | 2008-11-01 16:37:53 -0700 | [diff] [blame] | 676 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 677 | } else { |
| 678 | goto badtype; |
| 679 | } |
Rob Pike | 59f029c | 2008-11-01 16:37:53 -0700 | [diff] [blame] | 680 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 681 | // int |
| 682 | case 'b': |
Russ Cox | ca6a0fe | 2009-09-15 09:41:59 -0700 | [diff] [blame] | 683 | if v, _, ok := getInt(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 684 | s = p.fmt.Fmt_b64(uint64(v)).Str(); // always unsigned |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 685 | } else if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 686 | s = p.fmt.Fmt_fb32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 687 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 688 | s = p.fmt.Fmt_fb64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 689 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 690 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 691 | } |
| 692 | case 'c': |
Russ Cox | ca6a0fe | 2009-09-15 09:41:59 -0700 | [diff] [blame] | 693 | if v, _, ok := getInt(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 694 | s = p.fmt.Fmt_c(int(v)).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 695 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 696 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 697 | } |
| 698 | case 'd': |
| 699 | if v, signed, ok := getInt(field); ok { |
| 700 | if signed { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 701 | s = p.fmt.Fmt_d64(v).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 702 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 703 | s = p.fmt.Fmt_ud64(uint64(v)).Str(); |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 704 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 705 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 706 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 707 | } |
| 708 | case 'o': |
| 709 | if v, signed, ok := getInt(field); ok { |
| 710 | if signed { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 711 | s = p.fmt.Fmt_o64(v).Str(); |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 712 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 713 | s = p.fmt.Fmt_uo64(uint64(v)).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 714 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 715 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 716 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 717 | } |
| 718 | case 'x': |
| 719 | if v, signed, ok := getInt(field); ok { |
| 720 | if signed { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 721 | s = p.fmt.Fmt_x64(v).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 722 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 723 | s = p.fmt.Fmt_ux64(uint64(v)).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 724 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 725 | } else if v, ok := getString(field); ok { |
| 726 | s = p.fmt.Fmt_sx(v).Str(); |
| 727 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 728 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 729 | } |
| 730 | case 'X': |
| 731 | if v, signed, ok := getInt(field); ok { |
| 732 | if signed { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 733 | s = p.fmt.Fmt_X64(v).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 734 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 735 | s = p.fmt.Fmt_uX64(uint64(v)).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 736 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 737 | } else if v, ok := getString(field); ok { |
| 738 | s = p.fmt.Fmt_sX(v).Str(); |
| 739 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 740 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 741 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 742 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 743 | // float |
| 744 | case 'e': |
| 745 | if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 746 | s = p.fmt.Fmt_e32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 747 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 748 | s = p.fmt.Fmt_e64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 749 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 750 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 751 | } |
| 752 | case 'E': |
| 753 | if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 754 | s = p.fmt.Fmt_E32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 755 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 756 | s = p.fmt.Fmt_E64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 757 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 758 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 759 | } |
| 760 | case 'f': |
| 761 | if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 762 | s = p.fmt.Fmt_f32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 763 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 764 | s = p.fmt.Fmt_f64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 765 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 766 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 767 | } |
| 768 | case 'g': |
| 769 | if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 770 | s = p.fmt.Fmt_g32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 771 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 772 | s = p.fmt.Fmt_g64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 773 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 774 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 775 | } |
| 776 | case 'G': |
| 777 | if v, ok := getFloat32(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 778 | s = p.fmt.Fmt_G32(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 779 | } else if v, ok := getFloat64(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 780 | s = p.fmt.Fmt_G64(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 781 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 782 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 783 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 784 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 785 | // string |
| 786 | case 's': |
| 787 | if inter != nil { |
| 788 | // if object implements String, use the result. |
| 789 | if stringer, ok := inter.(Stringer); ok { |
| 790 | s = p.fmt.Fmt_s(stringer.String()).Str(); |
| 791 | break; |
Rob Pike | 85647c9 | 2009-03-06 03:35:38 -0800 | [diff] [blame] | 792 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 793 | } |
| 794 | if v, ok := getString(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 795 | s = p.fmt.Fmt_s(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 796 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 797 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 798 | } |
| 799 | case 'q': |
| 800 | if v, ok := getString(field); ok { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 801 | s = p.fmt.Fmt_q(v).Str(); |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 802 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 803 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | // pointer |
| 807 | case 'p': |
| 808 | if v, ok := getPtr(field); ok { |
| 809 | if v == 0 { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 810 | s = "<nil>"; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 811 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 812 | s = "0x" + p.fmt.Fmt_uX64(uint64(v)).Str(); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 813 | } |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 814 | } else { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 815 | goto badtype; |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 816 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 817 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 818 | // arbitrary value; do your best |
| 819 | case 'v': |
| 820 | plus, sharp := p.fmt.plus, p.fmt.sharp; |
| 821 | p.fmt.plus = false; |
| 822 | p.fmt.sharp = false; |
| 823 | p.printField(field, plus, sharp, 0); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 824 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 825 | // the value's type |
| 826 | case 'T': |
| 827 | s = field.Type().String(); |
Rob Pike | e2621b8 | 2008-11-13 15:20:52 -0800 | [diff] [blame] | 828 | |
Russ Cox | 8f2bf20 | 2009-09-10 14:18:53 -0700 | [diff] [blame] | 829 | default: |
| 830 | badtype: |
| 831 | s = "%" + string(c) + "(" + field.Type().String() + "="; |
| 832 | p.addstr(s); |
| 833 | p.printField(field, false, false, 0); |
| 834 | s = ")"; |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 835 | } |
| 836 | p.addstr(s); |
| 837 | } |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 838 | if fieldnum < v.NumField() { |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 839 | p.addstr("?(extra "); |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 840 | for ; fieldnum < v.NumField(); fieldnum++ { |
Rob Pike | c6540d3 | 2009-08-28 13:02:34 -0700 | [diff] [blame] | 841 | field := getField(v, fieldnum); |
| 842 | p.addstr(field.Type().String()); |
| 843 | p.addstr("="); |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 844 | p.printField(field, false, false, 0); |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 845 | if fieldnum+1 < v.NumField() { |
Rob Pike | f15dfa7 | 2008-11-06 10:40:57 -0800 | [diff] [blame] | 846 | p.addstr(", "); |
| 847 | } |
| 848 | } |
| 849 | p.addstr(")"); |
| 850 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 851 | } |
| 852 | |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 853 | func (p *pp) doprint(v *reflect.StructValue, addspace, addnewline bool) { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 854 | prev_string := false; |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 855 | for fieldnum := 0; fieldnum < v.NumField(); fieldnum++ { |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 856 | // always add spaces if we're doing println |
Russ Cox | 387df5e | 2008-11-24 14:51:33 -0800 | [diff] [blame] | 857 | field := getField(v, fieldnum); |
Rob Pike | 2d4f7ba | 2008-11-02 12:33:02 -0800 | [diff] [blame] | 858 | if fieldnum > 0 { |
Russ Cox | 0d400a7 | 2009-07-07 11:03:31 -0700 | [diff] [blame] | 859 | _, is_string := field.(*reflect.StringValue); |
| 860 | if addspace || !is_string && !prev_string { |
| 861 | p.add(' '); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 862 | } |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 863 | } |
Russ Cox | a843b45 | 2009-08-31 16:38:30 -0700 | [diff] [blame] | 864 | prev_string = p.printField(field, false, false, 0); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 865 | } |
Rob Pike | 2d4f7ba | 2008-11-02 12:33:02 -0800 | [diff] [blame] | 866 | if addnewline { |
Russ Cox | ecb863a | 2009-10-06 15:38:57 -0700 | [diff] [blame^] | 867 | p.add('\n'); |
Rob Pike | 418b97c | 2008-10-24 16:33:29 -0700 | [diff] [blame] | 868 | } |
| 869 | } |