rephrase linient list parsing
isclaimer: This is not an official Google product.
A small Java 8+ string processing and streams library (javadoc), widely used in Google’s internal Java codebase, with 0 deps (Proto, BigQuery, Guava addons are in separate artifacts).
Substring
Substring.between("(", ")").from("call(foo)") → "foo"
StringFormat
new StringFormat("/home/{user}/{date}").parse(filePath, (user, date) -> ...)
Parser
sequence(word().followedBy("="), digits(), Map::entry) .zeroOrMoreDelimitedBy(",") .between("{", "}") // {k1=100, k2=200, k3=300, ...} .parse(input);
DateTimeFormats
DateTimeFormatter format = formatOf("2024-03-14 10.20:00.123 America/New_York")
BiStream
Map
BiStream.zip(keys, values).toMap()
MoreStreams
Stream<List<Double>> greenDays = MoreStreams.groupConsecutive( stockPrices, (p1, p2) -> p1 <= p2, toUnmodifiableList());
@ParametersMustMatchByName
record Profile(String userId, String userName) {}
new Profile(user.id(), user.name())
new Profile(user.name(), user.id())
SafeSql
SafeSql.of("select id, `{col}` from Users where id = {id}", col, id)
Iteration
BinarySearch
BinarySearch.inSortedArrayWithTolerance(doubleArray, 0.0001).find(target)
StructuredConcurrency
concurrently(() -> fetchArm(), () -> fetchLeg(), (arm, leg) -> makeRobot(arm, leg))
Optionals
return optionally(obj.hasFoo(), obj::getFoo);
Add the following to pom.xml:
<dependency> <groupId>com.google.mug</groupId> <artifactId>mug</artifactId> <version>10.2</version> </dependency>
Add mug-errorprone to your annotationProcessorPaths:
mug-errorprone
<build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>2.23.0</version> </path> <path> <groupId>com.google.mug</groupId> <artifactId>mug-errorprone</artifactId> <version>10.2</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </pluginManagement> </build>
SafeSql (javadoc):
<dependency> <groupId>com.google.mug</groupId> <artifactId>mug-safesql</artifactId> <version>10.2</version> </dependency>
Dot Parse Combinators (javadoc):
<dependency> <groupId>com.google.mug</groupId> <artifactId>dot-parse</artifactId> <version>10.2</version> </dependency>
Protobuf utils (javadoc):
<dependency> <groupId>com.google.mug</groupId> <artifactId>mug-protobuf</artifactId> <version>10.2</version> </dependency>
Add to build.gradle:
implementation 'com.google.mug:mug:10.2' implementation 'com.google.mug:mug-safesql:10.2' implementation 'com.google.mug:dot-parse:10.2' implementation 'com.google.mug:mug-guava:10.2' implementation 'com.google.mug:mug-protobuf:10.2'
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802047560号
isclaimer: This is not an official Google product.
Mug (
)
A small Java 8+ string processing and streams library (javadoc), widely used in Google’s internal Java codebase, with 0 deps (Proto, BigQuery, Guava addons are in separate artifacts).
Full Spectrum of String Utilities
Substring– simple and composable substring extraction & manipulation→
Substring.between("(", ")").from("call(foo)") → "foo"StringFormat– compile-time-safe bidirectional parsing/formatting→
new StringFormat("/home/{user}/{date}").parse(filePath, (user, date) -> ...)Parser– everyday string parsing easier than and beyond regexDateTimeFormats– define datetime formats by examples→
DateTimeFormatter format = formatOf("2024-03-14 10.20:00.123 America/New_York")Streams
BiStream– streamsMapand pair-wise collections→
BiStream.zip(keys, values).toMap()MoreStreams– extra stream utilitiesOthers
@ParametersMustMatchByNamerecord Profile(String userId, String userName) {}new Profile(user.id(), user.name())Compiles ✅new Profile(user.name(), user.id())Does Not Compile ❌SafeSql– compile-time-enforced safe, composable SQL template→
SafeSql.of("select id, `{col}` from Users where id = {id}", col, id)More tools
Iteration- implement lazy stream with recursive codeBinarySearch- solve LeetCode binary search problems→
BinarySearch.inSortedArrayWithTolerance(doubleArray, 0.0001).find(target)StructuredConcurrency- simple structured concurrency on virtual threads→
concurrently(() -> fetchArm(), () -> fetchLeg(), (arm, leg) -> makeRobot(arm, leg))Optionals→
return optionally(obj.hasFoo(), obj::getFoo);Installation
Maven
Add the following to pom.xml:
Add
mug-errorproneto your annotationProcessorPaths:SafeSql (javadoc):
Dot Parse Combinators (javadoc):
Protobuf utils (javadoc):
Gradle
Add to build.gradle: