forked from canonical/iot-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory.go
44 lines (38 loc) · 1.39 KB
/
factory.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* This file is part of the IoT Management Service
* Copyright 2019 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License version 3, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// Package factory creates a datasource based on driver type
package factory
import (
"fmt"
"github.com/everactive/iot-identity/datastore"
"github.com/everactive/iot-identity/datastore/memory"
"github.com/everactive/iot-identity/datastore/postgres"
)
// CreateDataStore is the factory method to create a data store
func CreateDataStore(driver string, dataSource string) (datastore.DataStore, error) {
var db datastore.DataStore
switch driver {
case "memory":
db = memory.NewStore()
case "postgres":
db = postgres.OpenStore(driver, dataSource)
default:
return nil, fmt.Errorf("unknown data store driver: %v", driver)
}
return db, nil
}