Cleanup: get rid of unnecessary spaces
[apps/agl-service-can-low-level.git] / generator / nanopb.proto
1 // Custom options for defining:
2 // - Maximum size of string/bytes
3 // - Maximum number of elements in array
4 //
5 // These are used by nanopb to generate statically allocable structures
6 // for memory-limited environments.
7
8 import "google/protobuf/descriptor.proto";
9
10 enum FieldType {
11     FT_DEFAULT = 0; // Automatically decide field type, generate static field if possible.
12     FT_CALLBACK = 1; // Always generate a callback field.
13     FT_STATIC = 2; // Generate a static field or raise an exception if not possible.
14 }
15
16 message NanoPBOptions {
17   // Allocated size for 'bytes' and 'string' fields.
18   optional int32 max_size = 1;
19   
20   // Allocated number of entries in arrays ('repeated' fields)
21   optional int32 max_count = 2;
22   
23   // Force type of field (callback or static allocation)
24   optional FieldType type = 3 [default = FT_DEFAULT];
25   
26   // Use long names for enums, i.e. EnumName_EnumValue.
27   optional bool long_names = 4 [default = true];
28 }
29
30 // Protocol Buffers extension number registry
31 // --------------------------------
32 // Project:  Nanopb
33 // Contact:  Petteri Aimonen <jpa@kapsi.fi>
34 // Web site: http://kapsi.fi/~jpa/nanopb
35 // Extensions: 1010 (all types)
36 // --------------------------------
37
38 extend google.protobuf.FileOptions {
39     optional NanoPBOptions nanopb_fileopt = 1010;
40 }
41
42 extend google.protobuf.MessageOptions {
43     optional NanoPBOptions nanopb_msgopt = 1010;
44 }
45
46 extend google.protobuf.EnumOptions {
47     optional NanoPBOptions nanopb_enumopt = 1010;
48 }
49
50 extend google.protobuf.FieldOptions {
51     optional NanoPBOptions nanopb = 1010;
52 }
53
54