C/C++ 字串模糊比對

來源:互聯網
上載者:User

需求:

  准入授權設定檔有時候分了好幾個維度進行配置,例如 company|product|sys這種格式的配置:

1.配置 "sina|weibo|pusher" 表示 sina公司weibo產品pusher系統能夠准入,而"sina|weibo|sign"不允許准入

2.配置 "sina|*|pusher” 表示sina公司所有產品的pusher系統都能夠准入

3.配置 “*|*|pusher” 表示所有公司的所有產品的pusher系統都能夠准入

  …

  類似還有很多情境,好了,簡單的東西不扯蛋了.

 

實現:

  面對這個需求我第一時間想的是如何設計模式串,如何快速實現功能,因為我現在寫的是一個C服務,所以我首先出現在我腦海的是一大堆strchr(XXX, ‘*’), strchr(XXX, ‘|’)等等東西,後面發現這個東西沒有必要自己造輪子,有現成的函數可以用,那就是fnmatch.

  google了一下,發現fnmatch的資料並不是很多,大部分還都是講php函數的,所以沒辦法,只能自己寫寫測測了.

#include <iostream>#include <fnmatch.h>#include <vector>using namespace std;int main(){    const char* orgin_str = "sina|weibo|pusher";    char pattern_arr[][20] = {        {"sina|*|pusher"},        {"sina|*|*"},        {"*|weibo|*"},        //不能被匹配的        {"sina|pic|*"},        {"*|*|sign"},        {"*|weibo|sign"},        {"*|pic|sign"},        {"sina|pic|sign"},        {"*|*|*"}    };    static int pattern_arr_size = sizeof(pattern_arr) / sizeof(pattern_arr[0]);    vector<char *> vec_str;    for(int i = 0; i < pattern_arr_size; i ++)    {        vec_str.push_back(pattern_arr[i]);    }    int ret;    int z = 0;    while(z < 1){        for(int i = 0; i < vec_str.size(); i++)        {                   ret = fnmatch(vec_str.at(i), orgin_str, FNM_PATHNAME);            if(FNM_NOMATCH == ret){                cout<<"sorry I'm failed ["<< vec_str.at(i) <<"]"<<endl;            }               }               ++z;        }}

 

結果:   

  實驗一把,結果還不賴,完全滿足需求:

  

  需求滿足了,我擔心的還有一個問題,那就是效能,注釋掉cout輸出,將while z語句調至1,000,000,重新編譯跑一下:

  time ./fnmatch

看來效率還不錯,2.1s 進行了100W次匹配,平均2us一次,效能要求也滿足了...

 

參考文獻: 

fnmatch源碼實現:  http://www.opensource.apple.com/source/sudo/sudo-16/sudo/fnmatch.c

MAN:   http://linux.die.net/man/3/fnmatch

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.