2014-06-06 23:40:48 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2014-06-23 18:32:11 +00:00
|
|
|
|
2014-08-11 07:34:59 +00:00
|
|
|
package registrytest
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
import (
|
2014-09-18 23:03:34 +00:00
|
|
|
"sync"
|
|
|
|
|
2014-06-12 20:17:34 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
2014-08-14 19:48:34 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
|
2014-06-06 23:40:48 +00:00
|
|
|
)
|
|
|
|
|
2014-08-15 23:42:37 +00:00
|
|
|
func NewServiceRegistry() *ServiceRegistry {
|
|
|
|
return &ServiceRegistry{}
|
|
|
|
}
|
|
|
|
|
2014-08-11 07:34:59 +00:00
|
|
|
type ServiceRegistry struct {
|
2014-09-18 23:03:34 +00:00
|
|
|
mu sync.Mutex
|
2014-08-29 02:31:41 +00:00
|
|
|
List api.ServiceList
|
|
|
|
Service *api.Service
|
|
|
|
Err error
|
|
|
|
Endpoints api.Endpoints
|
|
|
|
EndpointsList api.EndpointsList
|
2014-08-15 23:42:37 +00:00
|
|
|
|
|
|
|
DeletedID string
|
|
|
|
GottenID string
|
2014-08-19 03:18:00 +00:00
|
|
|
UpdatedID string
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) ListServices(ctx api.Context) (*api.ServiceList, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
|
|
|
// Return by copy to avoid data races
|
|
|
|
res := new(api.ServiceList)
|
|
|
|
*res = r.List
|
|
|
|
res.Items = append([]api.Service{}, r.List.Items...)
|
|
|
|
return res, r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) CreateService(ctx api.Context, svc *api.Service) error {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-09-08 04:14:18 +00:00
|
|
|
r.Service = svc
|
|
|
|
r.List.Items = append(r.List.Items, *svc)
|
2014-08-11 07:34:59 +00:00
|
|
|
return r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) GetService(ctx api.Context, id string) (*api.Service, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-15 23:42:37 +00:00
|
|
|
r.GottenID = id
|
|
|
|
return r.Service, r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) DeleteService(ctx api.Context, id string) error {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-15 23:42:37 +00:00
|
|
|
r.DeletedID = id
|
2014-09-18 23:03:34 +00:00
|
|
|
r.Service = nil
|
2014-08-11 07:34:59 +00:00
|
|
|
return r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) UpdateService(ctx api.Context, svc *api.Service) error {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-19 03:18:00 +00:00
|
|
|
r.UpdatedID = svc.ID
|
2014-09-18 23:03:34 +00:00
|
|
|
r.Service = svc
|
2014-08-11 07:34:59 +00:00
|
|
|
return r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 20:51:28 +00:00
|
|
|
func (r *ServiceRegistry) WatchServices(ctx api.Context, label labels.Selector, field labels.Selector, resourceVersion string) (watch.Interface, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-14 19:48:34 +00:00
|
|
|
return nil, r.Err
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) ListEndpoints(ctx api.Context) (*api.EndpointsList, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-29 02:31:41 +00:00
|
|
|
return &r.EndpointsList, r.Err
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) GetEndpoints(ctx api.Context, id string) (*api.Endpoints, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-25 21:36:15 +00:00
|
|
|
r.GottenID = id
|
2014-08-14 19:48:34 +00:00
|
|
|
return &r.Endpoints, r.Err
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:19:22 +00:00
|
|
|
func (r *ServiceRegistry) UpdateEndpoints(ctx api.Context, e *api.Endpoints) error {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-09-08 04:14:18 +00:00
|
|
|
r.Endpoints = *e
|
2014-08-11 07:34:59 +00:00
|
|
|
return r.Err
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
2014-08-14 19:48:34 +00:00
|
|
|
|
2014-10-07 20:51:28 +00:00
|
|
|
func (r *ServiceRegistry) WatchEndpoints(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error) {
|
2014-09-18 23:03:34 +00:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2014-08-14 19:48:34 +00:00
|
|
|
return nil, r.Err
|
|
|
|
}
|