tars 소스 만담 12편--------tcoption.h/tc_option.cpp(명령줄 해석)

2316 단어 s2:tarsC++
바이너리 프로그램을 실행할 때 종종 입력 파라미터를 정해야 한다. 그러면 바이너리 프로그램에 대응하는 코드는 어떻게 이런 파라미터를 해석해야 합니까?예를 들면 다음과 같습니다.
./a.out --name1=value1 --name2=value2

     tc_option은 전문적으로 이 일을 하는 것이니 다음에는 스스로 해석하지 마세요. 
원본 보기:
/**
 * Tencent is pleased to support the open source community by making Tars available.
 *
 * Copyright (C) 2016THL 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_option.h"
#include "util/tc_common.h"

namespace tars
{

void TC_Option::decode(int argc, char *argv[])
{
    _mParam.clear();

    vector v;
    for(int i = 1; i < argc; i++)
    {
        v.push_back(argv[i]);
    }

    for(size_t i = 0; i < v.size(); i++)
    {
        if(v[i].length() > 2 && v[i].substr(0,2) == "--")
        {
            parse(v[i]);
        }
        else
        {
            _vSingle.push_back(v[i]);
        }
    }
}

void TC_Option::parse(const string &s)
{
    string::size_type pos = s.find('=');
    if( pos != string::npos)
    {
        _mParam[s.substr(2, pos-2)] = s.substr(pos+1);
    }
    else
    {
        _mParam[s.substr(2, pos-2)] = "";
    }
}

string TC_Option::getValue(const string &sName)
{
    if(_mParam.find(sName) != _mParam.end())
    {
        return _mParam[sName];
    }
    return "";
}

bool TC_Option::hasParam(const string &sName)
{
    return _mParam.find(sName) != _mParam.end();
}

vector& TC_Option::getSingle()
{
    return _vSingle;
}

map& TC_Option::getMulti()
{
    return _mParam;
}

}



"--"및 "="에 따라 로 해석mParam (키/value 맵) 에서 직접 사용하십시오.
일목요연하니 더 말할 필요가 없다.

좋은 웹페이지 즐겨찾기