Skip to content

Commit 0f72ad6

Browse files
Merge pull request #272 from twitchtv/release_v7
Set v7 protocol as current version in docs
2 parents 0615145 + ba59fe1 commit 0f72ad6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+196
-135
lines changed

PROTOCOL.md

+54-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Twirp Wire Protocol
22

33
This document defines the Twirp wire protocol over HTTP. The
4-
current protocol version is v5.
4+
current protocol version is v7.
55

66
## Overview
77

@@ -25,7 +25,9 @@ proto messages, and works with any HTTP client and any HTTP version.
2525
In [ABNF syntax](https://tools.ietf.org/html/rfc5234), Twirp's URLs
2626
have the following format:
2727

28-
**URL ::= Base-URL "/twirp/" [ Package "." ] Service "/" Method**
28+
```abnf
29+
URL ::= Base-URL [ Prefix ] "/" [ Package "." ] Service "/" Method
30+
```
2931

3032
The Twirp wire protocol uses HTTP URLs to specify the RPC
3133
endpoints on the server for sending the requests. Such direct mapping
@@ -36,15 +38,14 @@ the following components.
3638
typically published via API documentation or service discovery.
3739
Currently, it should only contain URL `scheme` and `authority`. For
3840
example, "https://example.com".
39-
41+
* **Prefix** is usually "/twirp", but it could be empty "", or an
42+
arbitrary path like "/my/custom/prefix".
4043
* **Package** is the proto `package` name for an API, which is often
4144
considered as an API version. For example,
4245
`example.calendar.v1`. This component is omitted if the API
4346
definition doesn't have a package name.
44-
4547
* **Service** is the proto `service` name for an API. For example,
4648
`CalendarService`.
47-
4849
* **Method** is the proto `rpc` name for an API method. For example,
4950
`CreateEvent`.
5051

@@ -145,30 +146,70 @@ Content-Length: 27
145146
{"message":"Hello, World!"}
146147
```
147148

149+
148150
## Errors
149151

150152
Twirp error responses are always JSON-encoded, regardless of
151153
the request's Content-Type, with a corresponding
152154
`Content-Type: application/json` header. This ensures that
153155
the errors are human-readable in any setting.
154156

155-
Twirp errors are a JSON object with three keys:
157+
Twirp errors are a JSON object with the keys:
156158

157159
* **code**: One of the Twirp error codes as a string.
158160
* **msg**: A human-readable message describing the error
159161
as a string.
160-
* **meta**: An object with string keys and values holding
162+
* **meta**: (optional) An object with string values holding
161163
arbitrary additional metadata describing the error.
162164

163165
Example:
166+
167+
```json
168+
{
169+
"code": "internal",
170+
"msg": "Something went wrong"
171+
}
164172
```
173+
174+
Example with metadata:
175+
176+
```json
165177
{
166-
"code": "permission_denied",
167-
"msg": "thou shall not pass",
168-
"meta": {
169-
"target": "Balrog"
170-
}
178+
"code": "permission_denied",
179+
"msg": "Thou shall not pass",
180+
"meta": {
181+
"target": "Balrog",
182+
"power": "999"
183+
}
171184
}
172185
```
173186

174-
For more information, see https://github.com/twitchtv/twirp/wiki/Errors.
187+
### Error Codes
188+
189+
Twirp errors always include an error code. This code is represented
190+
as a string and must be one of a fixed set of codes, listed in the
191+
table below. Each code has an associated HTTP Status Code. When a
192+
server responds with the given error code, it must set the
193+
corresponding HTTP Status Code for the response.
194+
195+
| Twirp Error Code | HTTP Status | Description
196+
| ------------------- | ----------- | -----------
197+
| canceled | 408 | The operation was cancelled.
198+
| unknown | 500 | An unknown error occurred. For example, this can be used when handling errors raised by APIs that do not return any error information.
199+
| invalid_argument | 400 | The client specified an invalid argument. This indicates arguments that are invalid regardless of the state of the system (i.e. a malformed file name, required argument, number out of range, etc.).
200+
| malformed | 400 | The client sent a message which could not be decoded. This may mean that the message was encoded improperly or that the client and server have incompatible message definitions.
201+
| deadline_exceeded | 408 | Operation expired before completion. For operations that change the state of the system, this error may be returned even if the operation has completed successfully (timeout).
202+
| not_found | 404 | Some requested entity was not found.
203+
| bad_route | 404 | The requested URL path wasn't routable to a Twirp service and method. This is returned by generated server code and should not be returned by application code (use "not_found" or "unimplemented" instead).
204+
| already_exists | 409 | An attempt to create an entity failed because one already exists.
205+
| permission_denied | 403 | The caller does not have permission to execute the specified operation. It must not be used if the caller cannot be identified (use "unauthenticated" instead).
206+
| unauthenticated | 401 | The request does not have valid authentication credentials for the operation.
207+
| resource_exhausted | 429 | Some resource has been exhausted or rate-limited, perhaps a per-user quota, or perhaps the entire file system is out of space.
208+
| failed_precondition | 412 | The operation was rejected because the system is not in a state required for the operation's execution. For example, doing an rmdir operation on a directory that is non-empty, or on a non-directory object, or when having conflicting read-modify-write on the same resource.
209+
| aborted | 409 | The operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc.
210+
| out_of_range | 400 | The operation was attempted past the valid range. For example, seeking or reading past end of a paginated collection. Unlike "invalid_argument", this error indicates a problem that may be fixed if the system state changes (i.e. adding more items to the collection). There is a fair bit of overlap between "failed_precondition" and "out_of_range". We recommend using "out_of_range" (the more specific error) when it applies so that callers who are iterating through a space can easily look for an "out_of_range" error to detect when they are done.
211+
| unimplemented | 501 | The operation is not implemented or not supported/enabled in this service.
212+
| internal | 500 | When some invariants expected by the underlying system have been broken. In other words, something bad happened in the library or backend service. Twirp specific issues like wire and serialization problems are also reported as "internal" errors.
213+
| unavailable | 503 | The service is currently unavailable. This is most likely a transient condition and may be corrected by retrying with a backoff.
214+
| dataloss | 500 | The operation resulted in unrecoverable data loss or corruption.
215+

clientcompat/internal/clientcompat/clientcompat.twirp.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clientcompat/pycompat/clientcompat_pb2_twirp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Code generated by protoc-gen-twirp_python v5.12.1, DO NOT EDIT.
1+
# Code generated by protoc-gen-twirp_python v7.0.0, DO NOT EDIT.
22
# source: clientcompat.proto
33

44
try:

docs/spec_v5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: "spec_v5"
33
title: "Twirp Wire Protocol (v5)"
4-
sidebar_label: "Version 5 (Current)"
4+
sidebar_label: "Version 5 (Previous)"
55
---
66

77
This document defines the initial Twirp wire protocol over HTTP.

docs/spec_v7.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: "spec_v7"
33
title: "Twirp Wire Protocol (v7)"
4-
sidebar_label: "Version 7 (Draft)"
4+
sidebar_label: "Version 7 (Current)"
55
---
66

77
This document defines the Twirp wire protocol over HTTP. The
@@ -218,3 +218,10 @@ corresponding HTTP Status Code for the response.
218218
| dataloss | 500 | The operation resulted in unrecoverable data loss or corruption.
219219

220220

221+
## Differences with v5
222+
223+
Note v6 was a draft and never released. Twirp implementations supporting the protocol spec v5 should update directly to support v7.
224+
225+
* Twirp URLs in v5 could only have the "/twirp" prefix. In v7 they can have any arbitrary prefix or no prefix. See Go PR for reference: https://github.com/twitchtv/twirp/pull/264
226+
* Error responses with code `resource_exhausted` in v5 had the HTTP status `403`. In v7 they have status `429`. See Go PR for reference: https://github.com/twitchtv/twirp/pull/270
227+

example/service.twirp.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/service_pb2_twirp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Code generated by protoc-gen-twirp_python v5.12.1, DO NOT EDIT.
1+
# Code generated by protoc-gen-twirp_python v7.0.0, DO NOT EDIT.
22
# source: service.proto
33

44
try:

internal/gen/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
package gen
1515

16-
const Version = "v5.12.1"
16+
const Version = "v7.0.0"

internal/twirptest/empty_service/empty_service.twirp.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/twirptest/empty_service/empty_service_pb2_twirp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Code generated by protoc-gen-twirp_python v5.12.1, DO NOT EDIT.
1+
# Code generated by protoc-gen-twirp_python v7.0.0, DO NOT EDIT.
22
# source: empty_service.proto
33

44
try:

internal/twirptest/gogo_compat/service.twirp.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/twirptest/google_protobuf_imports/service.twirp.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/twirptest/google_protobuf_imports/service_pb2_twirp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Code generated by protoc-gen-twirp_python v5.12.1, DO NOT EDIT.
1+
# Code generated by protoc-gen-twirp_python v7.0.0, DO NOT EDIT.
22
# source: service.proto
33

44
try:

0 commit comments

Comments
 (0)