Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
/* |
|
* upb - a minimalist implementation of protocol buffers. |
|
* |
|
* Copyright (c) 2010 Google Inc. See LICENSE for details. |
|
* Author: Josh Haberman <jhaberman@gmail.com> |
|
* |
|
* This file provides upb_bytesrc and upb_bytesink implementations for |
|
* ANSI C stdio. |
|
*/ |
|
|
|
#include <stdio.h> |
|
#include "upb_stream.h" |
|
|
|
#ifndef UPB_STDIO_H_ |
|
#define UPB_STDIO_H_ |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
struct upb_stdio; |
|
typedef struct upb_stdio upb_stdio; |
|
|
|
// Creation/deletion. |
|
upb_stdio *upb_stdio_new(); |
|
void upb_stdio_free(upb_stdio *stdio); |
|
|
|
// Reset/initialize the object for use. The src or sink will call |
|
// fread()/fwrite()/etc. on the given FILE*. |
|
void upb_stdio_reset(upb_stdio *stdio, FILE* file); |
|
|
|
// Gets a bytesrc or bytesink for the given stdio. The returned pointer is |
|
// invalidated by upb_stdio_reset above. It is perfectly valid to get both |
|
// a bytesrc and a bytesink for the same stdio if the FILE* is open for reading |
|
// and writing. |
|
upb_bytesrc* upb_stdio_bytesrc(upb_stdio *stdio); |
|
upb_bytesink* upb_stdio_bytesink(upb_stdio *stdio); |
|
|
|
#ifdef __cplusplus |
|
} /* extern "C" */ |
|
#endif |
|
|
|
#endif
|
|
|