mirror of https://github.com/pulumi/pulumi.git
110 lines
3.0 KiB
Go
110 lines
3.0 KiB
Go
// Copyright 2016-2022, Pulumi Corporation.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
javagen "github.com/pulumi/pulumi-java/pkg/codegen/java"
|
|
|
|
"github.com/pulumi/pulumi/pkg/v3/codegen/dotnet"
|
|
gogen "github.com/pulumi/pulumi/pkg/v3/codegen/go"
|
|
"github.com/pulumi/pulumi/pkg/v3/codegen/nodejs"
|
|
"github.com/pulumi/pulumi/pkg/v3/codegen/python"
|
|
"github.com/pulumi/pulumi/pkg/v3/codegen/schema"
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/util/cmdutil"
|
|
)
|
|
|
|
func newGenSdkCommand() *cobra.Command {
|
|
var language string
|
|
var out string
|
|
cmd := &cobra.Command{
|
|
Use: "gen-sdk <schema_source>",
|
|
Args: cobra.ExactArgs(1),
|
|
Short: "Generate SDK(s) from a package or schema",
|
|
Long: `Generate SDK(s) from a package or schema.
|
|
|
|
<schema_source> can be a package name, the path to a plugin binary, or the path to a schema file.`,
|
|
Run: cmdutil.RunFunc(func(cmd *cobra.Command, args []string) error {
|
|
source := args[0]
|
|
|
|
pkg, err := schemaFromSchemaSource(source)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if language == "all" {
|
|
for _, lang := range []string{"dotnet", "go", "java", "nodejs", "python"} {
|
|
err := genSDK(lang, out, pkg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
return genSDK(language, out, pkg)
|
|
}),
|
|
}
|
|
cmd.Flags().StringVarP(&language, "language", "", "all",
|
|
"The SDK language to generate: [nodejs|python|go|dotnet|java|all]")
|
|
cmd.Flags().StringVarP(&out, "out", "o", "./sdk",
|
|
"The directory to write the SDK to")
|
|
return cmd
|
|
}
|
|
|
|
func genSDK(language, out string, pkg *schema.Package) error {
|
|
var f func(string, *schema.Package, map[string][]byte) (map[string][]byte, error)
|
|
switch language {
|
|
case "csharp", "c#", "dotnet":
|
|
f = dotnet.GeneratePackage
|
|
language = "dotnet"
|
|
case "go":
|
|
f = func(s string, p *schema.Package, m map[string][]byte) (map[string][]byte, error) {
|
|
return gogen.GeneratePackage(s, pkg)
|
|
}
|
|
case "typescript", "nodejs":
|
|
f = nodejs.GeneratePackage
|
|
language = "nodejs"
|
|
case "python": // nolint: goconst
|
|
f = python.GeneratePackage
|
|
case "java":
|
|
f = javagen.GeneratePackage
|
|
}
|
|
|
|
m, err := f("pulumi", pkg, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
root := filepath.Join(out, language)
|
|
err = os.RemoveAll(root)
|
|
if err != nil && !os.IsNotExist(err) {
|
|
return err
|
|
}
|
|
for k, v := range m {
|
|
path := filepath.Join(root, k)
|
|
err := os.MkdirAll(filepath.Dir(path), 0700)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = os.WriteFile(path, v, 0600)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|