blob: a336013558aca8e4a19f684875202e9f84ac8ac4 [file] [log] [blame]
// Copyright 2021 The Chromium 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.
package datastore_dao
import (
"context"
"infra/chromeperf/alert_groups/model"
"go.chromium.org/luci/common/errors"
"go.chromium.org/luci/gae/service/datastore"
)
type AnomalyDAO struct {
}
func (self AnomalyDAO) Get(ctx context.Context, id int64) (*model.Anomaly, error) {
entity := &model.Anomaly{ID: id}
if err := datastore.Get(ctx, entity); err != nil {
return nil, errors.Annotate(err, "failed to retreive object with ID %d from Datastore", id).Err()
}
return entity, nil
}
func (self AnomalyDAO) Update(ctx context.Context, entity *model.Anomaly) error {
if err := datastore.Put(ctx, entity); err != nil {
return errors.Annotate(err, "failed to write entity %v to Datastore", entity).Err()
}
return nil
}