spikard-cli 0.15.6-rc.18

Command-line interface for building and validating Spikard applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
//! Protobuf Schema Definition Language (.proto) specification parsing and code generation
//!
//! This module provides parsing and code generation for Protocol Buffer (protobuf) specifications.
//! Supports proto3 syntax only with message, service, and enum definitions.

pub mod generators;
pub mod spec_parser;

// Re-export parser types and functions for public use
pub use spec_parser::{
    EnumDef, EnumValue, FieldDef, FieldLabel, MessageDef, MethodDef, ProtoType, ProtobufSchema, parse_proto_schema,
    parse_proto_schema_string, parse_proto_schema_with_includes,
};

// Re-export generators trait
pub use generators::{ProtobufGenerator, ProtobufTarget};

use anyhow::Result;

/// Generate Python Protobuf code from a schema
///
/// Parses the Protobuf schema and generates complete Python code with message
/// definitions, service clients, and server stubs based on the target specification.
///
/// # Arguments
///
/// * `schema` - Parsed Protobuf schema
/// * `target` - Generation target specifying what to generate:
///   * `ProtobufTarget::All` - Complete code: messages, services, and utilities
///   * `ProtobufTarget::Messages` - Message definitions only
///   * `ProtobufTarget::Services` - Service clients and stubs only
///
/// # Returns
///
/// Generated Python code as a `String`, or an `anyhow::Error` if generation fails.
pub fn generate_python_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::python::PythonProtobufGenerator;

    let generator = PythonProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

/// Generate TypeScript Protobuf code from a schema
///
/// Parses the Protobuf schema and generates complete TypeScript code
/// with message types, service clients, and server implementations based on
/// the target specification.
///
/// # Arguments
///
/// * `schema` - Parsed Protobuf schema
/// * `target` - Generation target: `ProtobufTarget::All` (complete), `ProtobufTarget::Messages` (messages only),
///   or `ProtobufTarget::Services` (services only)
///
/// # Returns
///
/// Generated TypeScript code as a string, or an error if generation fails
pub fn generate_typescript_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::typescript::TypeScriptProtobufGenerator;

    let generator = TypeScriptProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

/// Generate Ruby Protobuf code from a schema
///
/// Parses the Protobuf schema and generates idiomatic Ruby code with message
/// classes, service clients, and server implementations based on the target specification.
///
/// # Arguments
///
/// * `schema` - Parsed Protobuf schema
/// * `target` - Generation target: `ProtobufTarget::All` (complete), `ProtobufTarget::Messages` (messages only),
///   or `ProtobufTarget::Services` (services only)
///
/// # Returns
///
/// Generated Ruby code as a string, or an error if generation fails
pub fn generate_ruby_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::ruby::RubyProtobufGenerator;

    let generator = RubyProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

/// Generate PHP Protobuf code from a schema
///
/// Parses the Protobuf schema and generates complete PHP code with message
/// type definitions, service clients, and server implementations based on the
/// target specification. Generated code uses PSR-4 namespacing with PHP 8.1+
/// typed properties and the google/protobuf library.
///
/// # Arguments
///
/// * `schema` - Parsed Protobuf schema
/// * `target` - Generation target: `ProtobufTarget::All` (complete), `ProtobufTarget::Messages` (messages only),
///   or `ProtobufTarget::Services` (services only)
///
/// # Returns
///
/// Generated PHP code as a string, or an error if generation fails
pub fn generate_php_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::php::PhpProtobufGenerator;

    let generator = PhpProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

/// Generate Rust Protobuf code from a schema
pub fn generate_rust_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::rust_lang::RustProtobufGenerator;

    let generator = RustProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

/// Generate Elixir Protobuf code from a schema.
pub fn generate_elixir_protobuf(schema: &ProtobufSchema, target: &ProtobufTarget) -> Result<String> {
    use generators::ProtobufGenerator;
    use generators::elixir::ElixirProtobufGenerator;

    let generator = ElixirProtobufGenerator;

    match target {
        ProtobufTarget::All => generator.generate_complete(schema),
        ProtobufTarget::Messages => generator.generate_messages(schema),
        ProtobufTarget::Services => generator.generate_services(schema),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::codegen::{TargetLanguage, quality::QualityValidator};
    use std::path::Path;

    #[test]
    fn test_parse_and_generate_python_all() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
  string name = 2;
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_python_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Python code");
        assert!(code.contains("DO NOT EDIT - Auto-generated by Spikard CLI"));
        assert!(code.contains("from google.protobuf import message"));
        assert!(code.contains("PROTOBUF_PACKAGE = \"example\""));
    }

    #[test]
    fn test_parse_and_generate_python_all_validates() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
  string name = 2;
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_python_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Python code");
        let report = QualityValidator::new(TargetLanguage::Python)
            .validate_all(&code)
            .expect("python protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated Python Protobuf code should validate cleanly: {report}"
        );
    }

    #[test]
    fn test_parse_and_generate_typescript_messages() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_typescript_protobuf(&schema, &ProtobufTarget::Messages)
            .expect("Failed to generate TypeScript code");
        assert!(code.contains("DO NOT EDIT - Auto-generated by Spikard CLI"));
        assert!(code.contains("import * as $protobuf from \"protobufjs\""));
        assert!(code.contains("// Package: example"));
    }

    #[test]
    fn test_parse_and_generate_typescript_all_validates() {
        let proto = r#"syntax = "proto3";

package example.service;

message User {
  string id = 1;
  repeated string tags = 2;
}

service UserService {
  rpc GetUser (User) returns (User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code =
            generate_typescript_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate TypeScript code");
        let report = QualityValidator::new(TargetLanguage::TypeScript)
            .validate_all(&code)
            .expect("typescript protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated TypeScript Protobuf code should validate cleanly: {report}"
        );
    }

    #[test]
    fn test_reject_proto2_in_generation() {
        let proto = r#"syntax = "proto2";

package example;

message User {
  required string id = 1;
}
"#;

        let result = parse_proto_schema_string(proto);
        assert!(result.is_err());
        let error_msg = format!("{}", result.unwrap_err());
        assert!(error_msg.contains("Only proto3 syntax is supported"));
    }

    #[test]
    fn test_generate_ruby_messages() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
  string name = 2;
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_ruby_protobuf(&schema, &ProtobufTarget::Messages).expect("Failed to generate Ruby code");
        assert!(code.contains("# frozen_string_literal: true"));
        assert!(code.contains("DO NOT EDIT - Auto-generated by Spikard CLI"));
        assert!(code.contains("require 'google/protobuf'"));
        assert!(code.contains("Package: example"));
    }

    #[test]
    fn test_parse_and_generate_ruby_all_validates() {
        let proto = r#"syntax = "proto3";

package example.service;

message User {
  string id = 1;
  repeated string tags = 2;
}

service UserService {
  rpc GetUser (User) returns (User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_ruby_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Ruby code");
        let report = QualityValidator::new(TargetLanguage::Ruby)
            .validate_all(&code)
            .expect("ruby protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated Ruby Protobuf code should validate cleanly: {report}"
        );
    }

    #[test]
    fn test_generate_php_all() {
        let proto = r#"syntax = "proto3";

package example.service;

message Empty {}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_php_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate PHP code");
        assert!(code.contains("<?php"));
        assert!(code.contains("DO NOT EDIT - Auto-generated by Spikard CLI"));
        assert!(code.contains(r"namespace example\service"));
    }

    #[test]
    fn test_parse_and_generate_php_all_validates() {
        let proto = r#"syntax = "proto3";

package example.service;

message User {
  string id = 1;
  repeated string tags = 2;
}

service UserService {
  rpc GetUser (User) returns (User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_php_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate PHP code");
        let report = QualityValidator::new(TargetLanguage::Php)
            .validate_all(&code)
            .expect("php protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated PHP Protobuf code should validate cleanly: {report}"
        );
    }

    #[test]
    fn test_parse_and_generate_rust_all() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
  string name = 2;
}

service UserService {
  rpc GetUser (User) returns (User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_rust_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Rust code");
        assert!(code.contains("DO NOT EDIT - Auto-generated by Spikard CLI"));
        assert!(code.contains("pub struct User"));
        assert!(code.contains("pub trait UserService"));
        assert!(code.contains("async fn get_user"));
        assert_eq!(code.matches("DO NOT EDIT - Auto-generated by Spikard CLI").count(), 1);
    }

    #[test]
    fn test_parse_and_generate_rust_example_validates() {
        let fixture = Path::new(env!("CARGO_MANIFEST_DIR")).join("../../testing_data/schemas/user-service.proto");
        let schema = parse_proto_schema(&fixture).expect("example proto schema should parse");
        let code = generate_rust_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Rust code");
        let report = QualityValidator::new(TargetLanguage::Rust)
            .validate_all(&code)
            .expect("rust protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated Rust protobuf code for the example schema should validate cleanly: {report}"
        );
        assert!(code.contains("pub enum UserStatus"));
        assert!(code.contains("Unknown = 0"));
        assert!(code.contains("Active = 1"));
        assert!(!code.contains("UNKNOWN = 0"));
    }

    #[test]
    fn test_parse_and_generate_elixir_all_validates() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
  string name = 2;
}

service UserService {
  rpc GetUser (User) returns (User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code = generate_elixir_protobuf(&schema, &ProtobufTarget::All).expect("Failed to generate Elixir code");
        assert!(code.contains("defmodule Example.User"));
        assert!(code.contains("defstruct"));
        assert!(code.contains("@callback get_user"));
        assert!(code.contains("def registry(handler \\\\ Example.UserService.Server)"));
        assert!(code.contains("Grpc.Service.register("));
        assert!(code.contains("def service_name, do: \"example.UserService\""));

        let report = QualityValidator::new(TargetLanguage::Elixir)
            .validate_all(&code)
            .expect("elixir protobuf validation should run");

        assert!(
            report.is_valid(),
            "generated Elixir Protobuf code should validate cleanly: {report}"
        );
    }

    #[test]
    fn test_generate_elixir_services_emit_runtime_rpc_modes() {
        let proto = r#"syntax = "proto3";

package example;

message User {
  string id = 1;
}

service UserService {
  rpc GetUser (User) returns (User);
  rpc WatchUsers (User) returns (stream User);
  rpc UploadUsers (stream User) returns (User);
  rpc ChatUsers (stream User) returns (stream User);
}
"#;

        let schema = parse_proto_schema_string(proto).expect("Failed to parse proto");
        let code =
            generate_elixir_protobuf(&schema, &ProtobufTarget::Services).expect("Failed to generate Elixir code");

        assert!(code.contains("\"GetUser\" => :unary"));
        assert!(code.contains("\"WatchUsers\" => :server_stream"));
        assert!(code.contains("\"UploadUsers\" => :client_stream"));
        assert!(code.contains("\"ChatUsers\" => :bidi_stream"));
        assert!(code.contains("@callback get_user(Spikard.Grpc.Request.t())"));
        assert!(code.contains("@callback upload_users("));
    }
}