mirror of
https://gitee.com/TarsCloud/TarsCpp.git
synced 2025-01-05 17:42:24 +08:00
102 lines
3.3 KiB
C++
102 lines
3.3 KiB
C++
/**
|
|
* Tencent is pleased to support the open source community by making Tars available.
|
|
*
|
|
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
|
|
*
|
|
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
|
|
* in compliance with the License. You may obtain a copy of the License at
|
|
*
|
|
* https://opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "util/tc_config.h"
|
|
#include "util/tc_file.h"
|
|
#include <iterator>
|
|
#include <sys/time.h>
|
|
using namespace tars;
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
try
|
|
{
|
|
TC_Config conf;
|
|
conf.parseFile("./template.config.conf");
|
|
|
|
cout << "parseFile************************************" << endl;
|
|
cout << conf.tostr() << endl;
|
|
|
|
vector<string> n = conf.getDomainVector("/");
|
|
cout << TC_Common::tostr(n) << endl;
|
|
|
|
return 0;
|
|
cout << "parseFile************************************" << endl;
|
|
TC_Config conft = conf;
|
|
cout << conft.tostr() << endl;
|
|
|
|
cout << conf["/tars/application/client<locator>"] << endl;
|
|
map<string, string> m1 = conf.getDomainMap("/tars/allow");
|
|
cout << TC_Common::tostr(m1) << endl;
|
|
cout << conf["/tars/allow<A>"] << endl;
|
|
|
|
cout << "parseString************************************" << endl;
|
|
TC_File tf;
|
|
conf.parseString(tf.load2str("./template.config.conf"));
|
|
cout << conf.tostr() << endl;
|
|
cout << conf["/tars/application/client<locator>"] << endl;
|
|
|
|
cout << "insertDomain create false************************************" << endl;
|
|
|
|
conf.insertDomain("/tars/insert", "insert", false);
|
|
cout << conf.tostr() << endl;
|
|
conf.parseString(conf.tostr());
|
|
cout << conf.tostr() << endl;
|
|
|
|
cout << "insertDomain create true************************************" << endl;
|
|
|
|
conf.insertDomain("/tars/insert", "insert", true);
|
|
cout << conf.tostr() << endl;
|
|
conf.parseString(conf.tostr());
|
|
cout << conf.tostr() << endl;
|
|
|
|
cout << "insertDomainParam************************************" << endl;
|
|
|
|
map<string, string> m;
|
|
m["abc"] = "def";
|
|
m["ttt"] = "yyy";
|
|
conf.insertDomainParam("/tars/insert/insert1", m, false);
|
|
cout << conf.tostr() << endl;
|
|
conf.insertDomainParam("/tars/insert/insert1", m, true);
|
|
cout << conf.tostr() << endl;
|
|
|
|
cout << "joinConfig true************************************" << endl;
|
|
TC_Config conf1;
|
|
conf1.parseFile("./log.config.conf");
|
|
|
|
conf1.joinConfig(conf, true);
|
|
cout << conf1.tostr() << endl;
|
|
|
|
cout << "joinConfig false************************************" << endl;
|
|
TC_Config conf2;
|
|
conf2.parseFile("./log.config.conf");
|
|
conf2.joinConfig(conf, false);
|
|
cout << conf2.tostr() << endl;
|
|
|
|
TC_Config conf3 = conf2;
|
|
cout << conf3.tostr() << endl;
|
|
}
|
|
catch(exception &ex)
|
|
{
|
|
cout << ex.what() << endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|