com.squareup.wire.SchemaBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-schema-tests Show documentation
Show all versions of wire-schema-tests Show documentation
gRPC and protocol buffers for Android, Kotlin, and Java.
/*
* Copyright 2022 Block Inc.
*
* 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 com.squareup.wire
import com.squareup.wire.schema.Location
import com.squareup.wire.schema.Schema
import com.squareup.wire.schema.SchemaLoader
import okio.FileSystem
import okio.IOException
import okio.Path
import okio.Path.Companion.toPath
import okio.fakefilesystem.FakeFileSystem
/** Builds a schema out of written `.proto` files. */
class SchemaBuilder {
private val sourcePath: Path = "/source".toPath()
private val fileSystem: FileSystem = FakeFileSystem()
init {
fileSystem.createDirectories(sourcePath)
}
/**
* Add a file to be loaded into the schema.
* @param name The qualified name of the file.
* @param protoFile The content of the file.
*/
fun add(name: Path, protoFile: String): SchemaBuilder {
require(name.toString().endsWith(".proto")) {
"unexpected file extension for $name. Proto files should use the '.proto' extension"
}
try {
val resolvedPath = sourcePath / name
val parent = resolvedPath.parent
if (parent != null) {
fileSystem.createDirectories(parent)
}
fileSystem.write(resolvedPath) {
writeUtf8(protoFile)
}
} catch (e: IOException) {
throw AssertionError(e)
}
return this
}
fun build(): Schema {
val schemaLoader = SchemaLoader(fileSystem)
schemaLoader.initRoots(
sourcePath = listOf(Location.get(sourcePath.toString())),
protoPath = listOf(),
)
return schemaLoader.loadSchema()
}
}
/** Builds a schema out of written `.proto` files. */
inline fun buildSchema(builderAction: SchemaBuilder.() -> Unit): Schema {
return SchemaBuilder().apply(builderAction).build()
}