001/* 002 * Copyright (C) 2008 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except 005 * in compliance with the License. You may obtain a copy of the License at 006 * 007 * http://www.apache.org/licenses/LICENSE-2.0 008 * 009 * Unless required by applicable law or agreed to in writing, software distributed under the License 010 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 011 * or implied. See the License for the specific language governing permissions and limitations under 012 * the License. 013 */ 014 015package com.google.common.base; 016 017import static com.google.common.base.Preconditions.checkNotNull; 018import static java.util.Objects.requireNonNull; 019 020import com.google.common.annotations.GwtCompatible; 021import com.google.errorprone.annotations.CanIgnoreReturnValue; 022import java.io.IOException; 023import java.util.AbstractList; 024import java.util.Arrays; 025import java.util.Iterator; 026import java.util.List; 027import java.util.Map; 028import java.util.Map.Entry; 029import org.jspecify.annotations.Nullable; 030 031/** 032 * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a 033 * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns 034 * them as a {@link String}. Example: 035 * 036 * <pre>{@code 037 * Joiner joiner = Joiner.on("; ").skipNulls(); 038 * . . . 039 * return joiner.join("Harry", null, "Ron", "Hermione"); 040 * }</pre> 041 * 042 * <p>This returns the string {@code "Harry; Ron; Hermione"}. Note that all input elements are 043 * converted to strings using {@link Object#toString()} before being appended. 044 * 045 * <p>If neither {@link #skipNulls()} nor {@link #useForNull(String)} is specified, the joining 046 * methods will throw {@link NullPointerException} if any given element is null. 047 * 048 * <p><b>Warning: joiner instances are always immutable</b>; a configuration method such as {@code 049 * useForNull} has no effect on the instance it is invoked on! You must store and use the new joiner 050 * instance returned by the method. This makes joiners thread-safe, and safe to store as {@code 051 * static final} constants. 052 * 053 * <pre>{@code 054 * // Bad! Do not do this! 055 * Joiner joiner = Joiner.on(','); 056 * joiner.skipNulls(); // does nothing! 057 * return joiner.join("wrong", null, "wrong"); 058 * }</pre> 059 * 060 * <p>See the Guava User Guide article on <a 061 * href="https://github.com/google/guava/wiki/StringsExplained#joiner">{@code Joiner}</a>. 062 * 063 * @author Kevin Bourrillion 064 * @since 2.0 065 */ 066@GwtCompatible 067public class Joiner { 068 /** Returns a joiner which automatically places {@code separator} between consecutive elements. */ 069 public static Joiner on(String separator) { 070 return new Joiner(separator); 071 } 072 073 /** Returns a joiner which automatically places {@code separator} between consecutive elements. */ 074 public static Joiner on(char separator) { 075 return new Joiner(String.valueOf(separator)); 076 } 077 078 private final String separator; 079 080 private Joiner(String separator) { 081 this.separator = checkNotNull(separator); 082 } 083 084 private Joiner(Joiner prototype) { 085 this.separator = prototype.separator; 086 } 087 088 /** 089 * Appends the string representation of each of {@code parts}, using the previously configured 090 * separator between each, to {@code appendable}. 091 */ 092 @CanIgnoreReturnValue 093 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException { 094 return appendTo(appendable, parts.iterator()); 095 } 096 097 /** 098 * Appends the string representation of each of {@code parts}, using the previously configured 099 * separator between each, to {@code appendable}. 100 * 101 * @since 11.0 102 */ 103 @CanIgnoreReturnValue 104 public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts) throws IOException { 105 checkNotNull(appendable); 106 if (parts.hasNext()) { 107 appendable.append(toString(parts.next())); 108 while (parts.hasNext()) { 109 appendable.append(separator); 110 appendable.append(toString(parts.next())); 111 } 112 } 113 return appendable; 114 } 115 116 /** 117 * Appends the string representation of each of {@code parts}, using the previously configured 118 * separator between each, to {@code appendable}. 119 */ 120 @CanIgnoreReturnValue 121 public final <A extends Appendable> A appendTo(A appendable, @Nullable Object[] parts) 122 throws IOException { 123 @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker 124 List<?> partsList = Arrays.<@Nullable Object>asList(parts); 125 return appendTo(appendable, partsList); 126 } 127 128 /** Appends to {@code appendable} the string representation of each of the remaining arguments. */ 129 @CanIgnoreReturnValue 130 public final <A extends Appendable> A appendTo( 131 A appendable, @Nullable Object first, @Nullable Object second, @Nullable Object... rest) 132 throws IOException { 133 return appendTo(appendable, iterable(first, second, rest)); 134 } 135 136 /** 137 * Appends the string representation of each of {@code parts}, using the previously configured 138 * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable, 139 * Iterable)}, except that it does not throw {@link IOException}. 140 */ 141 @CanIgnoreReturnValue 142 public final StringBuilder appendTo(StringBuilder builder, Iterable<?> parts) { 143 return appendTo(builder, parts.iterator()); 144 } 145 146 /** 147 * Appends the string representation of each of {@code parts}, using the previously configured 148 * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable, 149 * Iterable)}, except that it does not throw {@link IOException}. 150 * 151 * @since 11.0 152 */ 153 @CanIgnoreReturnValue 154 public final StringBuilder appendTo(StringBuilder builder, Iterator<?> parts) { 155 try { 156 appendTo((Appendable) builder, parts); 157 } catch (IOException impossible) { 158 throw new AssertionError(impossible); 159 } 160 return builder; 161 } 162 163 /** 164 * Appends the string representation of each of {@code parts}, using the previously configured 165 * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable, 166 * Iterable)}, except that it does not throw {@link IOException}. 167 */ 168 @CanIgnoreReturnValue 169 public final StringBuilder appendTo(StringBuilder builder, @Nullable Object[] parts) { 170 @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker 171 List<?> partsList = Arrays.<@Nullable Object>asList(parts); 172 return appendTo(builder, partsList); 173 } 174 175 /** 176 * Appends to {@code builder} the string representation of each of the remaining arguments. 177 * Identical to {@link #appendTo(Appendable, Object, Object, Object...)}, except that it does not 178 * throw {@link IOException}. 179 */ 180 @CanIgnoreReturnValue 181 public final StringBuilder appendTo( 182 StringBuilder builder, 183 @Nullable Object first, 184 @Nullable Object second, 185 @Nullable Object... rest) { 186 return appendTo(builder, iterable(first, second, rest)); 187 } 188 189 /** 190 * Returns a string containing the string representation of each of {@code parts}, using the 191 * previously configured separator between each. 192 */ 193 public String join(Iterable<?> parts) { 194 // We don't use the same optimization here as in the JRE flavor. 195 // TODO: b/381289911 - Evaluate the performance impact of doing so. 196 return join(parts.iterator()); 197 } 198 199 /* 200 * TODO: b/381289911 - Make the Iterator overload use StringJoiner (including Android or not)—or 201 * some other optimization, given that StringJoiner can over-allocate: 202 * https://bugs.openjdk.org/browse/JDK-8305774 203 */ 204 205 // TODO: b/381289911 - Optimize MapJoiner similarly to Joiner (including Android or not). 206 207 /** 208 * Returns a string containing the string representation of each of {@code parts}, using the 209 * previously configured separator between each. 210 * 211 * @since 11.0 212 */ 213 public final String join(Iterator<?> parts) { 214 return appendTo(new StringBuilder(), parts).toString(); 215 } 216 217 /** 218 * Returns a string containing the string representation of each of {@code parts}, using the 219 * previously configured separator between each. 220 */ 221 public final String join(@Nullable Object[] parts) { 222 @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker 223 List<?> partsList = Arrays.<@Nullable Object>asList(parts); 224 return join(partsList); 225 } 226 227 /** 228 * Returns a string containing the string representation of each argument, using the previously 229 * configured separator between each. 230 */ 231 public final String join( 232 @Nullable Object first, @Nullable Object second, @Nullable Object... rest) { 233 return join(iterable(first, second, rest)); 234 } 235 236 /** 237 * Returns a joiner with the same behavior as this one, except automatically substituting {@code 238 * nullText} for any provided null elements. 239 */ 240 public Joiner useForNull(String nullText) { 241 checkNotNull(nullText); 242 return new Joiner(this) { 243 @Override 244 CharSequence toString(@Nullable Object part) { 245 return (part == null) ? nullText : Joiner.this.toString(part); 246 } 247 248 @Override 249 public Joiner useForNull(String nullText) { 250 throw new UnsupportedOperationException("already specified useForNull"); 251 } 252 253 @Override 254 public Joiner skipNulls() { 255 throw new UnsupportedOperationException("already specified useForNull"); 256 } 257 }; 258 } 259 260 /** 261 * Returns a joiner with the same behavior as this joiner, except automatically skipping over any 262 * provided null elements. 263 */ 264 public Joiner skipNulls() { 265 return new Joiner(this) { 266 @Override 267 @SuppressWarnings("JoinIterableIterator") // suggests infinite recursion 268 public String join(Iterable<? extends @Nullable Object> parts) { 269 return join(parts.iterator()); 270 } 271 272 @Override 273 public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts) throws IOException { 274 checkNotNull(appendable, "appendable"); 275 checkNotNull(parts, "parts"); 276 while (parts.hasNext()) { 277 Object part = parts.next(); 278 if (part != null) { 279 appendable.append(Joiner.this.toString(part)); 280 break; 281 } 282 } 283 while (parts.hasNext()) { 284 Object part = parts.next(); 285 if (part != null) { 286 appendable.append(separator); 287 appendable.append(Joiner.this.toString(part)); 288 } 289 } 290 return appendable; 291 } 292 293 @Override 294 public Joiner useForNull(String nullText) { 295 throw new UnsupportedOperationException("already specified skipNulls"); 296 } 297 298 @Override 299 public MapJoiner withKeyValueSeparator(String kvs) { 300 throw new UnsupportedOperationException("can't use .skipNulls() with maps"); 301 } 302 }; 303 } 304 305 /** 306 * Returns a {@code MapJoiner} using the given key-value separator, and the same configuration as 307 * this {@code Joiner} otherwise. 308 * 309 * @since 20.0 310 */ 311 public MapJoiner withKeyValueSeparator(char keyValueSeparator) { 312 return withKeyValueSeparator(String.valueOf(keyValueSeparator)); 313 } 314 315 /** 316 * Returns a {@code MapJoiner} using the given key-value separator, and the same configuration as 317 * this {@code Joiner} otherwise. 318 */ 319 public MapJoiner withKeyValueSeparator(String keyValueSeparator) { 320 return new MapJoiner(this, keyValueSeparator); 321 } 322 323 /** 324 * An object that joins map entries in the same manner as {@code Joiner} joins iterables and 325 * arrays. Like {@code Joiner}, it is thread-safe and immutable. 326 * 327 * <p>In addition to operating on {@code Map} instances, {@code MapJoiner} can operate on {@code 328 * Multimap} entries in two distinct modes: 329 * 330 * <ul> 331 * <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a 332 * {@code MapJoiner} method that accepts entries as input, and receive output of the form 333 * {@code key1=A&key1=B&key2=C}. 334 * <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code 335 * MapJoiner} method that accepts a map as input, and receive output of the form {@code 336 * key1=[A, B]&key2=C}. 337 * </ul> 338 * 339 * @since 2.0 340 */ 341 public static final class MapJoiner { 342 private final Joiner joiner; 343 private final String keyValueSeparator; 344 345 private MapJoiner(Joiner joiner, String keyValueSeparator) { 346 this.joiner = joiner; // only "this" is ever passed, so don't checkNotNull 347 this.keyValueSeparator = checkNotNull(keyValueSeparator); 348 } 349 350 /** 351 * Appends the string representation of each entry of {@code map}, using the previously 352 * configured separator and key-value separator, to {@code appendable}. 353 */ 354 @CanIgnoreReturnValue 355 public <A extends Appendable> A appendTo(A appendable, Map<?, ?> map) throws IOException { 356 return appendTo(appendable, map.entrySet()); 357 } 358 359 /** 360 * Appends the string representation of each entry of {@code map}, using the previously 361 * configured separator and key-value separator, to {@code builder}. Identical to {@link 362 * #appendTo(Appendable, Map)}, except that it does not throw {@link IOException}. 363 */ 364 @CanIgnoreReturnValue 365 public StringBuilder appendTo(StringBuilder builder, Map<?, ?> map) { 366 return appendTo(builder, map.entrySet()); 367 } 368 369 /** 370 * Appends the string representation of each entry in {@code entries}, using the previously 371 * configured separator and key-value separator, to {@code appendable}. 372 * 373 * @since 10.0 374 */ 375 @CanIgnoreReturnValue 376 public <A extends Appendable> A appendTo(A appendable, Iterable<? extends Entry<?, ?>> entries) 377 throws IOException { 378 return appendTo(appendable, entries.iterator()); 379 } 380 381 /** 382 * Appends the string representation of each entry in {@code entries}, using the previously 383 * configured separator and key-value separator, to {@code appendable}. 384 * 385 * @since 11.0 386 */ 387 @CanIgnoreReturnValue 388 public <A extends Appendable> A appendTo(A appendable, Iterator<? extends Entry<?, ?>> parts) 389 throws IOException { 390 checkNotNull(appendable); 391 if (parts.hasNext()) { 392 Entry<?, ?> entry = parts.next(); 393 appendable.append(joiner.toString(entry.getKey())); 394 appendable.append(keyValueSeparator); 395 appendable.append(joiner.toString(entry.getValue())); 396 while (parts.hasNext()) { 397 appendable.append(joiner.separator); 398 Entry<?, ?> e = parts.next(); 399 appendable.append(joiner.toString(e.getKey())); 400 appendable.append(keyValueSeparator); 401 appendable.append(joiner.toString(e.getValue())); 402 } 403 } 404 return appendable; 405 } 406 407 /** 408 * Appends the string representation of each entry in {@code entries}, using the previously 409 * configured separator and key-value separator, to {@code builder}. Identical to {@link 410 * #appendTo(Appendable, Iterable)}, except that it does not throw {@link IOException}. 411 * 412 * @since 10.0 413 */ 414 @CanIgnoreReturnValue 415 public StringBuilder appendTo(StringBuilder builder, Iterable<? extends Entry<?, ?>> entries) { 416 return appendTo(builder, entries.iterator()); 417 } 418 419 /** 420 * Appends the string representation of each entry in {@code entries}, using the previously 421 * configured separator and key-value separator, to {@code builder}. Identical to {@link 422 * #appendTo(Appendable, Iterable)}, except that it does not throw {@link IOException}. 423 * 424 * @since 11.0 425 */ 426 @CanIgnoreReturnValue 427 public StringBuilder appendTo(StringBuilder builder, Iterator<? extends Entry<?, ?>> entries) { 428 try { 429 appendTo((Appendable) builder, entries); 430 } catch (IOException impossible) { 431 throw new AssertionError(impossible); 432 } 433 return builder; 434 } 435 436 /** 437 * Returns a string containing the string representation of each entry of {@code map}, using the 438 * previously configured separator and key-value separator. 439 */ 440 public String join(Map<?, ?> map) { 441 return join(map.entrySet()); 442 } 443 444 /** 445 * Returns a string containing the string representation of each entry in {@code entries}, using 446 * the previously configured separator and key-value separator. 447 * 448 * @since 10.0 449 */ 450 public String join(Iterable<? extends Entry<?, ?>> entries) { 451 return join(entries.iterator()); 452 } 453 454 /** 455 * Returns a string containing the string representation of each entry in {@code entries}, using 456 * the previously configured separator and key-value separator. 457 * 458 * @since 11.0 459 */ 460 public String join(Iterator<? extends Entry<?, ?>> entries) { 461 return appendTo(new StringBuilder(), entries).toString(); 462 } 463 464 /** 465 * Returns a map joiner with the same behavior as this one, except automatically substituting 466 * {@code nullText} for any provided null keys or values. 467 */ 468 public MapJoiner useForNull(String nullText) { 469 return new MapJoiner(joiner.useForNull(nullText), keyValueSeparator); 470 } 471 } 472 473 // TODO(cpovirk): Rename to "toCharSequence." 474 CharSequence toString(@Nullable Object part) { 475 /* 476 * requireNonNull is not safe: Joiner.on(...).join(somethingThatContainsNull) will indeed throw. 477 * However, Joiner.on(...).useForNull(...).join(somethingThatContainsNull) *is* safe -- because 478 * it returns a subclass of Joiner that overrides this method to tolerate null inputs. 479 * 480 * Unfortunately, we don't distinguish between these two cases in our public API: Joiner.on(...) 481 * and Joiner.on(...).useForNull(...) both declare the same return type: plain Joiner. To ensure 482 * that users *can* pass null arguments to Joiner, we annotate it as if it always tolerates null 483 * inputs, rather than as if it never tolerates them. 484 * 485 * We rely on checkers to implement special cases to catch dangerous calls to join(), etc. based 486 * on what they know about the particular Joiner instances the calls are performed on. 487 * 488 * (In addition to useForNull, we also offer skipNulls. It, too, tolerates null inputs, but its 489 * tolerance is implemented differently: Its implementation avoids calling this toString(Object) 490 * method in the first place.) 491 */ 492 requireNonNull(part); 493 return (part instanceof CharSequence) ? (CharSequence) part : part.toString(); 494 } 495 496 private static Iterable<@Nullable Object> iterable( 497 @Nullable Object first, @Nullable Object second, @Nullable Object[] rest) { 498 checkNotNull(rest); 499 return new AbstractList<@Nullable Object>() { 500 @Override 501 public int size() { 502 return rest.length + 2; 503 } 504 505 @Override 506 public @Nullable Object get(int index) { 507 switch (index) { 508 case 0: 509 return first; 510 case 1: 511 return second; 512 default: 513 return rest[index - 2]; 514 } 515 } 516 }; 517 } 518 519 // cloned from ImmutableCollection 520 private static int expandedCapacity(int oldCapacity, int minCapacity) { 521 if (minCapacity < 0) { 522 throw new IllegalArgumentException("cannot store more than Integer.MAX_VALUE elements"); 523 } else if (minCapacity <= oldCapacity) { 524 return oldCapacity; 525 } 526 // careful of overflow! 527 int newCapacity = oldCapacity + (oldCapacity >> 1) + 1; 528 if (newCapacity < minCapacity) { 529 newCapacity = Integer.highestOneBit(minCapacity - 1) << 1; 530 } 531 if (newCapacity < 0) { 532 newCapacity = Integer.MAX_VALUE; 533 // guaranteed to be >= newCapacity 534 } 535 return newCapacity; 536 } 537}