Add int_size option for generator.
[apps/agl-service-can-low-level.git] / generator / proto / 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 syntax = "proto2";
9 import "google/protobuf/descriptor.proto";
10
11 option java_package = "fi.kapsi.koti.jpa.nanopb";
12
13 enum FieldType {
14     FT_DEFAULT = 0; // Automatically decide field type, generate static field if possible.
15     FT_CALLBACK = 1; // Always generate a callback field.
16     FT_POINTER = 4; // Always generate a dynamically allocated field.
17     FT_STATIC = 2; // Generate a static field or raise an exception if not possible.
18     FT_IGNORE = 3; // Ignore the field completely.
19 }
20
21 enum IntSize {
22     IS_DEFAULT = 0; // Default, 32/64bit based on type in .proto
23     IS_8 = 1;
24     IS_16 = 2;
25     IS_32 = 3;
26     IS_64 = 4;
27 }
28
29 // This is the inner options message, which basically defines options for
30 // a field. When it is used in message or file scope, it applies to all
31 // fields.
32 message NanoPBOptions {
33   // Allocated size for 'bytes' and 'string' fields.
34   optional int32 max_size = 1;
35   
36   // Allocated number of entries in arrays ('repeated' fields)
37   optional int32 max_count = 2;
38   
39   // Size of integer fields. Can save some memory if you don't need
40   // full 32 bits for the value.
41   optional IntSize int_size = 7 [default = IS_DEFAULT];
42
43   // Force type of field (callback or static allocation)
44   optional FieldType type = 3 [default = FT_DEFAULT];
45   
46   // Use long names for enums, i.e. EnumName_EnumValue.
47   optional bool long_names = 4 [default = true];
48   
49   // Add 'packed' attribute to generated structs.
50   // Note: this cannot be used on CPUs that break on unaligned
51   // accesses to variables.
52   optional bool packed_struct = 5 [default = false];
53   
54   // Skip this message
55   optional bool skip_message = 6 [default = false];
56 }
57
58 // Extensions to protoc 'Descriptor' type in order to define options
59 // inside a .proto file.
60 //
61 // Protocol Buffers extension number registry
62 // --------------------------------
63 // Project:  Nanopb
64 // Contact:  Petteri Aimonen <jpa@kapsi.fi>
65 // Web site: http://kapsi.fi/~jpa/nanopb
66 // Extensions: 1010 (all types)
67 // --------------------------------
68
69 extend google.protobuf.FileOptions {
70     optional NanoPBOptions nanopb_fileopt = 1010;
71 }
72
73 extend google.protobuf.MessageOptions {
74     optional NanoPBOptions nanopb_msgopt = 1010;
75 }
76
77 extend google.protobuf.EnumOptions {
78     optional NanoPBOptions nanopb_enumopt = 1010;
79 }
80
81 extend google.protobuf.FieldOptions {
82     optional NanoPBOptions nanopb = 1010;
83 }
84
85