Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
00b18446
Commit
00b18446
authored
Jan 11, 2016
by
Chao Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow client-gen genereate typed client with only expansion methods
parent
f9f4b74a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
17 deletions
+31
-17
generator-for-type.go
cmd/libs/go2idl/client-gen/generators/generator-for-type.go
+31
-17
No files found.
cmd/libs/go2idl/client-gen/generators/generator-for-type.go
View file @
00b18446
...
@@ -84,12 +84,19 @@ func (g *genClientForType) GenerateType(c *generator.Context, t *types.Type, w i
...
@@ -84,12 +84,19 @@ func (g *genClientForType) GenerateType(c *generator.Context, t *types.Type, w i
}
else
{
}
else
{
sw
.
Do
(
getterNonNamesapced
,
m
)
sw
.
Do
(
getterNonNamesapced
,
m
)
}
}
noMethods
:=
types
.
ExtractCommentTags
(
"+"
,
t
.
SecondClosestCommentLines
)[
"noMethods"
]
==
"true"
sw
.
Do
(
interfaceTemplate1
,
m
)
sw
.
Do
(
interfaceTemplate1
,
m
)
// Include the UpdateStatus method if the type has a status
if
!
noMethods
{
if
hasStatus
(
t
)
{
sw
.
Do
(
interfaceTemplate2
,
m
)
sw
.
Do
(
interfaceUpdateStatusTemplate
,
m
)
// Include the UpdateStatus method if the type has a status
if
hasStatus
(
t
)
{
sw
.
Do
(
interfaceUpdateStatusTemplate
,
m
)
}
sw
.
Do
(
interfaceTemplate3
,
m
)
}
}
sw
.
Do
(
interfaceTemplate2
,
m
)
sw
.
Do
(
interfaceTemplate4
,
m
)
if
namespaced
{
if
namespaced
{
sw
.
Do
(
structNamespaced
,
m
)
sw
.
Do
(
structNamespaced
,
m
)
sw
.
Do
(
newStructNamespaced
,
m
)
sw
.
Do
(
newStructNamespaced
,
m
)
...
@@ -97,17 +104,20 @@ func (g *genClientForType) GenerateType(c *generator.Context, t *types.Type, w i
...
@@ -97,17 +104,20 @@ func (g *genClientForType) GenerateType(c *generator.Context, t *types.Type, w i
sw
.
Do
(
structNonNamespaced
,
m
)
sw
.
Do
(
structNonNamespaced
,
m
)
sw
.
Do
(
newStructNonNamespaced
,
m
)
sw
.
Do
(
newStructNonNamespaced
,
m
)
}
}
sw
.
Do
(
createTemplate
,
m
)
sw
.
Do
(
updateTemplate
,
m
)
if
!
noMethods
{
// Generate the UpdateStatus method if the type has a status
sw
.
Do
(
createTemplate
,
m
)
if
hasStatus
(
t
)
{
sw
.
Do
(
updateTemplate
,
m
)
sw
.
Do
(
updateStatusTemplate
,
m
)
// Generate the UpdateStatus method if the type has a status
if
hasStatus
(
t
)
{
sw
.
Do
(
updateStatusTemplate
,
m
)
}
sw
.
Do
(
deleteTemplate
,
m
)
sw
.
Do
(
deleteCollectionTemplate
,
m
)
sw
.
Do
(
getTemplate
,
m
)
sw
.
Do
(
listTemplate
,
m
)
sw
.
Do
(
watchTemplate
,
m
)
}
}
sw
.
Do
(
deleteTemplate
,
m
)
sw
.
Do
(
deleteCollectionTemplate
,
m
)
sw
.
Do
(
getTemplate
,
m
)
sw
.
Do
(
listTemplate
,
m
)
sw
.
Do
(
watchTemplate
,
m
)
return
sw
.
Error
()
return
sw
.
Error
()
}
}
...
@@ -132,7 +142,9 @@ type $.type|publicPlural$Getter interface {
...
@@ -132,7 +142,9 @@ type $.type|publicPlural$Getter interface {
// this type's interface, typed client will implement this interface.
// this type's interface, typed client will implement this interface.
var
interfaceTemplate1
=
`
var
interfaceTemplate1
=
`
// $.type|public$Interface has methods to work with $.type|public$ resources.
// $.type|public$Interface has methods to work with $.type|public$ resources.
type $.type|public$Interface interface {
type $.type|public$Interface interface {`
var
interfaceTemplate2
=
`
Create(*$.type|raw$) (*$.type|raw$, error)
Create(*$.type|raw$) (*$.type|raw$, error)
Update(*$.type|raw$) (*$.type|raw$, error)`
Update(*$.type|raw$) (*$.type|raw$, error)`
...
@@ -140,12 +152,14 @@ var interfaceUpdateStatusTemplate = `
...
@@ -140,12 +152,14 @@ var interfaceUpdateStatusTemplate = `
UpdateStatus(*$.type|raw$) (*$.type|raw$, error)`
UpdateStatus(*$.type|raw$) (*$.type|raw$, error)`
// template for the Interface
// template for the Interface
var
interfaceTemplate
2
=
`
var
interfaceTemplate
3
=
`
Delete(name string, options *$.apiDeleteOptions|raw$) error
Delete(name string, options *$.apiDeleteOptions|raw$) error
DeleteCollection(options *$.apiDeleteOptions|raw$, listOptions $.apiListOptions|raw$) error
DeleteCollection(options *$.apiDeleteOptions|raw$, listOptions $.apiListOptions|raw$) error
Get(name string) (*$.type|raw$, error)
Get(name string) (*$.type|raw$, error)
List(opts $.apiListOptions|raw$) (*$.type|raw$List, error)
List(opts $.apiListOptions|raw$) (*$.type|raw$List, error)
Watch(opts $.apiListOptions|raw$) ($.watchInterface|raw$, error)
Watch(opts $.apiListOptions|raw$) ($.watchInterface|raw$, error)`
var
interfaceTemplate4
=
`
$.type|public$Expansion
$.type|public$Expansion
}
}
`
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment