DBFactory.cpp 1.4 KB
Newer Older
J
jinhai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you 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.

S
starlord 已提交
18
#include "db/DBFactory.h"
S
starlord 已提交
19 20 21
#include "DBImpl.h"
#include "meta/MetaFactory.h"
#include "meta/MySQLMetaImpl.h"
S
starlord 已提交
22 23
#include "meta/SqliteMetaImpl.h"
#include "utils/Exception.h"
S
starlord 已提交
24 25 26 27

#include <stdlib.h>
#include <time.h>
#include <cstdlib>
S
starlord 已提交
28
#include <sstream>
S
starlord 已提交
29 30 31 32 33
#include <string>

namespace milvus {
namespace engine {

S
starlord 已提交
34 35
DBOptions
DBFactory::BuildOption() {
S
starlord 已提交
36
    auto meta = MetaFactory::BuildOption();
S
starlord 已提交
37
    DBOptions options;
S
starlord 已提交
38
    options.meta_ = meta;
S
starlord 已提交
39 40 41
    return options;
}

S
starlord 已提交
42
DBPtr
S
starlord 已提交
43
DBFactory::Build(const DBOptions& options) {
S
starlord 已提交
44 45 46
    return std::make_shared<DBImpl>(options);
}

S
starlord 已提交
47 48
}  // namespace engine
}  // namespace milvus