Learn R Programming

RProtoBuf: R Interface to Google Protocol Buffers

What are Protocol Buffers?

A serialization format developed by Google and used widely within Google, and by numerous other projects. Quoting from the official website:

Protocol buffers are Google's language-neutral, platform-neutral,

extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages.

Protocol Buffers natively support C++, C#, Go, Java and Python. Many other languages are supported via contributed extensions. This package adds support for R.

Installation

You can either install from source via this repo, or install the CRAN package the usual way from R via

install.packages("RProtoBuf")

but do make sure you have the system requirements covered when building from source.

Under Debian/Ubuntu you may need

sudo apt-get install protobuf-compiler libprotobuf-dev libprotoc-dev

with similar commands on other operating systems or distributions.

Documentation

The package contains two pdf vignettes; the second one corresponds to our JSS paper.

Authors

Romain Francois, Dirk Eddelbuettel, Murray Stokely and Jeroen Ooms

License

GPL (>= 2)

Copy Link

Version

Install

install.packages('RProtoBuf')

Monthly Downloads

2,297

Version

0.4.24

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Dirk Eddelbuettel

Last Published

March 31st, 2025

Functions in RProtoBuf (0.4.24)

GetErrno-methods

Get the error number for an I/O error
FileDescriptor-class

Class "FileDescriptor"
FileInputStream-class

Class "FileInputStream"
EnumValueDescriptor-class

Class "EnumValueDescriptor"
EnumDescriptor-class

Class "EnumDescriptor"
SetCloseOnDelete-methods

set the close on delete behavior
RProtoBuf-package

R Interface to the Protocol Buffers API
Next-methods

Obtains a chunk of data from the stream
P

Protocol Buffer descriptor importer
asMessage

coerce an object to a protobuf message
ZeroCopyInputStream-class

Virtual Class "ZeroCopyInputStream"
add-methods

add elements of a repeated field of a message
ZeroCopyOutputStream-class

Virtual Class "ZeroCopyOutputStream"
fetch-methods

Fetch content of a repeated field
Skip-methods

Skips a number of bytes
completion

Completion support for protocol buffer messages and descriptors
enum_type_count-methods

The number of enum types
descriptor-methods

Get the descriptor of a message
has-methods

Indicates if an object has the given field set
ServiceDescriptor-class

Class "ServiceDescriptor"
fileDescriptor-methods

gets the file descriptor of an object
enum_type-methods

Extract an enum type descriptor for a nested type
serialize_pb

Serialize R object to Protocol Buffer Message.
bytesize-methods

The number of bytes taken by a message
nested_type_count-methods

The number of fields
as.list.Message

Grab the protocol buffer message as an R list
number-methods

Gets the declared tag number of a field
clear-methods

Clear a field or all fields of the message and set them to their default values
readProtoFiles

protocol buffer descriptor importer
Message-class

Class "Message"
Descriptor-class

Class "Descriptor"
label-methods

Gets the label of a field
MethodDescriptor-class

Class "MethodDescriptor"
merge-methods

Merge two messages of the same type
readJSON-methods

read a message in JSON format
nested_type-methods

Extract a message type descriptor for a nested type
isInitialized-methods

Indicates if a protocol buffer message is initialized
with.Message

with and within methods for protocol buffer messages
set-methods

set a subset of values of a repeated field of a message
name

Name or full name of a descriptor
field-methods

Extract a field descriptor
containing_type-methods

Gets the message type descriptor that contains a descriptor
is_extension-methods

Indicates if a field descriptor is an extension
clone-methods

Clone protocol buffer messages
type-methods

Gets the type or the C++ type of a field
field_count-methods

The number of fields
swap-methods

swap elements of a repeated field of a message
readASCII-methods

read a message in ASCII format
size-methods

Size of a message field
read-methods

Read a protocol buffer message from a connection
sizegets

Set the size of a field
BackUp-methods

Backs up a number of bytes from a stream
ConnectionInputStream-class

Class "ConnectionInputStream"
ArrayOutputStream-class

Class "ArrayOutputStream"
ArrayOutputStream-methods

Creates an ArrayOutputStream
ByteCount-methods

The number of bytes read/written since the object was created
ArrayInputStream-methods

Creates an ArrayInputStream
ArrayInputStream-class

Class "ArrayInputStream"
ConnectionOutputStream-methods

Creates an ConnectionOutputStream
ConnectionOutputStream-class

Class "ConnectionOutputStream"
ConnectionInputStream-methods

Creates an ConnectionInputStream
FileInputStream-methods

Creates an FileInputStream
FileOutputStream-methods

Creates an FileOutputStream
FieldDescriptor-class

Class "FieldDescriptor"
FileOutputStream-class

Class "FileOutputStream"