aboutsummaryrefslogtreecommitdiff
path: root/protos
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-05-19 12:01:16 -0500
committerrogerk <devnull@localhost>2011-05-19 12:01:16 -0500
commitf1816beebe7f68a6e9380b964d93c1dee91fb277 (patch)
treec03f8e2d549a7ed71e243a1437085b9d7c976f42 /protos
parent68d831e3a48ea3a81b3791a24219bc3406b962b8 (diff)
downloadprotobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.tar.gz
protobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.tar.bz2
protobuf-f1816beebe7f68a6e9380b964d93c1dee91fb277.zip
- Added CSharpServiceType NONE to skip service generation.
- Defaulted service_generator_type to NONE - Added /protos/extest/unittest_generic_services.proto to test services - Migrated unit tests to use the new generic services for testing
Diffstat (limited to 'protos')
-rw-r--r--protos/extest/unittest_generic_services.proto29
-rw-r--r--protos/google/protobuf/csharp_options.proto4
2 files changed, 32 insertions, 1 deletions
diff --git a/protos/extest/unittest_generic_services.proto b/protos/extest/unittest_generic_services.proto
new file mode 100644
index 00000000..3fe2e8eb
--- /dev/null
+++ b/protos/extest/unittest_generic_services.proto
@@ -0,0 +1,29 @@
+// Additional options required for C# generation. File from copyright
+// line onwards is as per original distribution.
+import "google/protobuf/csharp_options.proto";
+import "google/protobuf/unittest.proto";
+import "google/protobuf/unittest_custom_options.proto";
+option (google.protobuf.csharp_file_options).namespace = "Google.ProtocolBuffers.TestProtos";
+option (google.protobuf.csharp_file_options).umbrella_classname = "UnitTestGenericServices";
+
+option (google.protobuf.csharp_file_options).service_generator_type = GENERIC;
+
+// We don't put this in a package within proto2 because we need to make sure
+// that the generated code doesn't depend on being in the proto2 namespace.
+package protobuf_unittest;
+
+option optimize_for = SPEED;
+
+service TestGenericService {
+ rpc Foo(FooRequest) returns (FooResponse);
+ rpc Bar(BarRequest) returns (BarResponse);
+}
+
+service TestGenericServiceWithCustomOptions {
+ option (service_opt1) = -9876543210;
+
+ rpc Foo(CustomOptionFooRequest) returns (CustomOptionFooResponse) {
+ option (method_opt1) = METHODOPT1_VAL2;
+ }
+}
+
diff --git a/protos/google/protobuf/csharp_options.proto b/protos/google/protobuf/csharp_options.proto
index d9fe04e1..33a7b03d 100644
--- a/protos/google/protobuf/csharp_options.proto
+++ b/protos/google/protobuf/csharp_options.proto
@@ -58,10 +58,12 @@ message CSharpFileOptions {
// Controls how services are generated, GENERIC is the deprecated original implementation
// INTERFACE generates service interfaces only, RPCINTEROP generates interfaces and
// implementations using the included Windows RPC interop libarary.
- optional CSharpServiceType service_generator_type = 225 [default = GENERIC];
+ optional CSharpServiceType service_generator_type = 225 [default = NONE];
}
enum CSharpServiceType {
+ // Services are ignored by the generator
+ NONE = 0;
// Generates the original Java generic service implementations
GENERIC = 1;
// Generates an interface for the service and nothing else