| // Copyright 2017 The LUCI Authors. |
| // |
| // 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. |
| |
| // AUTOGENERATED: Do not edit |
| |
| package tricium |
| |
| import ( |
| "github.com/golang/protobuf/proto" |
| |
| "go.chromium.org/luci/gae/service/datastore" |
| ) |
| |
| var _ datastore.PropertyConverter = (*Acl)(nil) |
| |
| // ToProperty implements datastore.PropertyConverter. It causes an embedded |
| // 'Acl' to serialize to an unindexed '[]byte' when used with the |
| // "go.chromium.org/luci/gae" library. |
| func (p *Acl) ToProperty() (prop datastore.Property, err error) { |
| data, err := proto.Marshal(p) |
| if err == nil { |
| prop.SetValue(data, datastore.NoIndex) |
| } |
| return |
| } |
| |
| // FromProperty implements datastore.PropertyConverter. It parses a '[]byte' |
| // into an embedded 'Acl' when used with the "go.chromium.org/luci/gae" library. |
| func (p *Acl) FromProperty(prop datastore.Property) error { |
| data, err := prop.Project(datastore.PTBytes) |
| if err != nil { |
| return err |
| } |
| return proto.Unmarshal(data.([]byte), p) |
| } |
| |
| var _ datastore.PropertyConverter = (*Data_File)(nil) |
| |
| // ToProperty implements datastore.PropertyConverter. It causes an embedded |
| // 'Data_File' to serialize to an unindexed '[]byte' when used with the |
| // "go.chromium.org/luci/gae" library. |
| func (p *Data_File) ToProperty() (prop datastore.Property, err error) { |
| data, err := proto.Marshal(p) |
| if err == nil { |
| prop.SetValue(data, datastore.NoIndex) |
| } |
| return |
| } |
| |
| // FromProperty implements datastore.PropertyConverter. It parses a '[]byte' |
| // into an embedded 'Data_File' when used with the "go.chromium.org/luci/gae" library. |
| func (p *Data_File) FromProperty(prop datastore.Property) error { |
| data, err := prop.Project(datastore.PTBytes) |
| if err != nil { |
| return err |
| } |
| return proto.Unmarshal(data.([]byte), p) |
| } |
| |
| var _ datastore.PropertyConverter = (*ProjectConfig)(nil) |
| |
| // ToProperty implements datastore.PropertyConverter. It causes an embedded |
| // 'ProjectConfig' to serialize to an unindexed '[]byte' when used with the |
| // "go.chromium.org/luci/gae" library. |
| func (p *ProjectConfig) ToProperty() (prop datastore.Property, err error) { |
| data, err := proto.Marshal(p) |
| if err == nil { |
| prop.SetValue(data, datastore.NoIndex) |
| } |
| return |
| } |
| |
| // FromProperty implements datastore.PropertyConverter. It parses a '[]byte' |
| // into an embedded 'ProjectConfig' when used with the "go.chromium.org/luci/gae" library. |
| func (p *ProjectConfig) FromProperty(prop datastore.Property) error { |
| data, err := prop.Project(datastore.PTBytes) |
| if err != nil { |
| return err |
| } |
| return proto.Unmarshal(data.([]byte), p) |
| } |
| |
| var _ datastore.PropertyConverter = (*ServiceConfig)(nil) |
| |
| // ToProperty implements datastore.PropertyConverter. It causes an embedded |
| // 'ServiceConfig' to serialize to an unindexed '[]byte' when used with the |
| // "go.chromium.org/luci/gae" library. |
| func (p *ServiceConfig) ToProperty() (prop datastore.Property, err error) { |
| data, err := proto.Marshal(p) |
| if err == nil { |
| prop.SetValue(data, datastore.NoIndex) |
| } |
| return |
| } |
| |
| // FromProperty implements datastore.PropertyConverter. It parses a '[]byte' |
| // into an embedded 'ServiceConfig' when used with the "go.chromium.org/luci/gae" library. |
| func (p *ServiceConfig) FromProperty(prop datastore.Property) error { |
| data, err := prop.Project(datastore.PTBytes) |
| if err != nil { |
| return err |
| } |
| return proto.Unmarshal(data.([]byte), p) |
| } |