青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Khan's Notebook GCC/GNU/Linux Delphi/Window Java/Anywhere

路漫漫,長修遠,我們不能沒有錢
隨筆 - 173, 文章 - 0, 評論 - 257, 引用 - 0
數據加載中……

為wince項目寫的一個可移植的ini文件讀寫的class[原創]

//ini文件操作類
//write by Khan
//最開頭的注釋默認的 section為 "###"
//普通的注釋和空行 key為"##"

//所以 大家不要讓配置文件的key = "##"
支持的注釋格式 "#注釋"


//LIniFile.h
#ifndef __LINI_FILE_H__
#define __LINI_FILE_H__

#include <string>
#include <vector>
#include <stdio.h>
#include <utility>

using namespace std;





class CLogFileException{
    string m_strError;

public:
    inline CLogFileException(string p_strError){ m_strError = m_strError; }
    inline string OnMessage(){ return this->m_strError; }
};






class LIniFile
{
public:
    LIniFile(const string p_strFileName);
    ~LIniFile(void);

public:
    string GetValue(const string p_strSection, const string p_strKey);
    int SetValue(const string p_strSection, const string p_strKey, const string p_strValue);
    void Print();

    int OpenIni(const string p_strFileName);
    int OpenIni();
    void CloseIni();
protected:


private:
    vector<pair<string, pair<string,string> > >   m_szStrItem;
    string m_strFileName;
    FILE*  m_fileHandle;



  string TrimL(string p_strValue);
  string TrimR(string p_strValue);
  string Trim(string p_strValue);
  void LIniFile::DeleteEnter(char *p_str, int size);
};

#endif //__LINI_FILE_H__











//LIniFile.cpp
#include "LIniFile.h"
#include <algorithm>


LIniFile::LIniFile(const string p_strFileName)
{
  this->m_strFileName = p_strFileName;
  this->m_fileHandle = NULL;
  //this->OpenIni(p_strFileName);
}

LIniFile::~LIniFile(void){
  //this->CloseIni();
}

int LIniFile::OpenIni(){
  return OpenIni(m_strFileName);
}

int  LIniFile::OpenIni(const string p_strFileName){
  this->m_fileHandle = fopen(p_strFileName.c_str(),"rt+");
  if (NULL == this->m_fileHandle) {
    return 0;
  }

  fseek(this->m_fileHandle, 0, SEEK_SET); //將文件指針指向文件開頭
  char cTemp[512];
  memset(cTemp, 0, sizeof(cTemp));

  vector<string> vecStrItem;
  int iLen = 0;

  while(NULL != fgets(cTemp, sizeof(cTemp), this->m_fileHandle)){
    DeleteEnter(cTemp, sizeof(cTemp));//去結尾回車符
    Trim(cTemp); //去前后空格
    string str = cTemp;
    vecStrItem.push_back(str);
  }

  this->CloseIni();
 
  pair<string, string> pKVItem;
  pair<string, pair<string, string> > pItem;
  string strSection = "";
  string strCurrentSection = "";

  for (unsigned int i = 0; i < vecStrItem.size(); i++) {
    string strLine = ((string)vecStrItem[i]);

    if( '[' == strLine[0] ){
      strSection = strLine;

      strSection = strSection.erase(0,1);
      if(']' == strSection[strSection.size() -1 ])
        strSection = strSection.erase(strSection.size() - 1 );
      if (strCurrentSection != strSection)
        strCurrentSection = strSection;
     
  }else if( string::npos != strLine.find('=') ){
      if ("" != strCurrentSection ) {
        string strKey;
        string strValue;
        strKey = TrimR( strLine.substr(0, strLine.find('=')) );
        strValue = TrimL( strLine.substr(strLine.find('=') + 1, strLine.size() - strLine.find('=')  ) );
        pKVItem.first = strKey;
        pKVItem.second = strValue;
        pItem.first = strCurrentSection;
        pItem.second = pKVItem;
        m_szStrItem.push_back(pItem);
      }
  }else{
      if ("" != strCurrentSection ) {
          string strKey = "##";
          string strValue = TrimL( strLine );
          pKVItem.first = strKey;
          pKVItem.second = strValue;
          pItem.first = strCurrentSection;
          pItem.second = pKVItem;
          m_szStrItem.push_back(pItem);
    }else{
          string strKey = "##";
          string strValue = TrimL( strLine );
          pKVItem.first = strKey;
          pKVItem.second = strValue;
      pItem.first = "###";
          pItem.second = pKVItem;
          m_szStrItem.push_back(pItem);
    }
  }
  }

  return 1;
}

string LIniFile::GetValue(const string p_strSection, const string p_strKey){
  string strValue;
  for (unsigned i = 0; i< m_szStrItem.size(); i++) {
    if( p_strSection == (string) ( ((pair<string, pair<string, string> >)m_szStrItem[i]).first ) ){
      pair<string, string> pKVItem = ((pair<string, pair<string, string> >)m_szStrItem[i]).second;
      if ( p_strKey == (string)(pKVItem.first)) {
        strValue = (string)(pKVItem.second);
        break;
      }
    }
  }
  return strValue;
}


void LIniFile::Print(){
  string strValue;
  string strKey;
  string strSection;
  for (unsigned i = 0; i< m_szStrItem.size(); i++) {
    strSection = (string) ( ((pair<string, pair<string, string> >)m_szStrItem[i]).first );
    pair<string, string> pKVItem = ((pair<string, pair<string, string> >)m_szStrItem[i]).second;
    strKey = (string)(pKVItem.first);
    strValue = (string)(pKVItem.second);
  //if((strSection != "###") && (strKey != "##") )
    printf("[%s]:%s=%s\n", strSection.c_str(), strKey.c_str(), strValue.c_str());
  }
}


void LIniFile::CloseIni(){
  if(NULL != this->m_fileHandle){
    fclose(this->m_fileHandle);
    this->m_fileHandle = NULL;
  }
}


string LIniFile::TrimL(string p_strValue){
  int i = 0 ;
  if ((i=(int)(p_strValue.length())) < 1)
    return "";

  i = 0;
  while(isspace(p_strValue[i])){
    i++ ;
  }
  p_strValue.erase(0,i);

  return p_strValue;
}

string LIniFile::TrimR(string p_strValue){
  int i = 0;
  if ( (i = (int)(p_strValue.length()-1)) < 1 )
    return "";

  while( ( p_strValue[i] ) == ' ' ){
    i--;
  }
  p_strValue.erase(i + 1);
  return p_strValue;
}


string LIniFile::Trim(string p_strValue){
  return TrimL(TrimR(p_strValue));
}

int LIniFile::SetValue(const string p_strSection, const string p_strKey, const string p_strValue){
  pair<string, string> pKVItem;
  pair<string, pair<string, string> > pItem;

  pKVItem.first = p_strKey;
  pKVItem.second = p_strValue;
  pItem.first = p_strSection;
  pItem.second = pKVItem;

  int bFind = 0;

  for(int i = (int)(m_szStrItem.size())-1; i >= 0; i--){ //找到已有的section, 并在末尾添加
    string bb = m_szStrItem[i].second.first;
    if((m_szStrItem[i].first == p_strSection)  && (m_szStrItem[i].second.first != "##")/* && (m_szStrItem[i].second.second != "")*/){
      m_szStrItem.insert( m_szStrItem.begin()+ i+1, pItem );
      bFind = 1;
      break;
    }
  }

  if(bFind != 1) //如果是新增的section
    m_szStrItem.push_back(pItem);

  this->m_fileHandle = fopen(this->m_strFileName.c_str(),"wt+");
  //this->m_fileHandle = fopen("c:\\aaa.ini","wt+");
  if (NULL == this->m_fileHandle) {
    return 0;
  }

  string strCurSection = "";
  string strTmp = "";

  if((int)(m_szStrItem.size()) > 0){

    strCurSection = m_szStrItem[0].first;
    if(strCurSection != "###"){
      strTmp = "[" + strCurSection + "]" + "\n";
      fputs(strTmp.c_str(), this->m_fileHandle);
    }

    for(int i=0; i<(int)(m_szStrItem.size()); i++){
      if( strCurSection ==  m_szStrItem[i].first ){

        if((m_szStrItem[i].second.first == "##") && (m_szStrItem[i].second.second ==""))
          strTmp = "\n";
        else if((m_szStrItem[i].second.first == "##") && (m_szStrItem[i].second.second !=""))
          strTmp = m_szStrItem[i].second.second+ "\n";
        else
          strTmp = m_szStrItem[i].second.first + " = " + m_szStrItem[i].second.second+ "\n";

        fputs(strTmp.c_str(), this->m_fileHandle);
      }else{

        strCurSection = m_szStrItem[i].first;
        if(strCurSection != "###"){
          string strTmp = "[" + strCurSection + "]"+ "\n";
          fputs(strTmp.c_str(), this->m_fileHandle);
        }

        if((m_szStrItem[i].second.first == "##") && (m_szStrItem[i].second.second ==""))
          strTmp = "\n";
        else if((m_szStrItem[i].second.first == "##") && (m_szStrItem[i].second.second !=""))
          strTmp = m_szStrItem[i].second.second+ "\n";
        else
          strTmp = m_szStrItem[i].second.first + " = " + m_szStrItem[i].second.second+ "\n";

        fputs(strTmp.c_str(), this->m_fileHandle);
      }
    }
  }
  this->CloseIni();
  return 1;
}




void LIniFile::DeleteEnter(char *p_str, int size){
  int i_len = (int)(strlen(p_str));
  if(p_str[i_len-1] == 0x0d || p_str[i_len-1] == 0x0a)
    p_str[i_len-1] = 0x00;

  i_len =  (int)(strlen(p_str));
  if(p_str[i_len-1] == 0x0d || p_str[i_len-1] == 0x0a)
    p_str[i_len-1] = 0x00;
}




調用方式

#include "LIniFile.h"


int main(int argc, char** argv)
{
    LIniFile ini("d:\\My Documents\\Visual Studio 2005\\Projects\\inifile\\cbm.ini");
    ini.OpenIni();
    ini.SetValue("cbm","a", "b");
    ini.SetValue("aaa","a", "b");

    ini.Print();
    ini.CloseIni();

    getchar();
    return 0;
}


處理前的日志文件內容
 1 ## cbm配置文件
 2 
 3 [cbm]
 4 
 5 #sp端口號
 6 sp_port = 07554400001
 7 
 8 # 開通的頻道列表
 9 channels = 2001,2002,2003,2004
10 
11 #rsa私鑰
12 rsa_key1 = 0004b831414e0b4613922bd35b4b36802bc1e1e81c95a27c958f5382003df646154ca92fc1ce02c3be047a45e9b02a9089b4b90278237c965192a0fcc86bb49bc82ae6
13 rsa_key2 = fdc2de709006b86c7676efdf597626fad633a4f7dc48c445d37eb55fcb3b1abb95baaa826d5390e15fd14ed403fa2d0cb841c650609524ec555e3bc56ca95700000000
14 rsa_key3 = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
15 rsa_key4 = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010001
16 
17 
18 [2001]
19 flag = 1
20 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
21 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
22 
23 [2002]
24 flag = 1
25 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
26 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
27 
28 [2003]
29 flag = 1
30 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
31 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
32 
33 [2004]
34 flag = 1
35 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
36 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b


處理后的ini內容
 1 ## cbm配置文件
 2 
 3 [cbm]
 4 
 5 #sp端口號
 6 sp_port = 07554400001
 7 
 8 # 開通的頻道列表
 9 channels = 2001,2002,2003,2004
10 
11 #rsa私鑰
12 rsa_key1 = 0004b831414e0b4613922bd35b4b36802bc1e1e81c95a27c958f5382003df646154ca92fc1ce02c3be047a45e9b02a9089b4b90278237c965192a0fcc86bb49bc82ae6
13 rsa_key2 = fdc2de709006b86c7676efdf597626fad633a4f7dc48c445d37eb55fcb3b1abb95baaa826d5390e15fd14ed403fa2d0cb841c650609524ec555e3bc56ca95700000000
14 rsa_key3 = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
15 rsa_key4 = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010001
16 
17 
18 [2001]
19 flag = 1
20 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
21 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
22 
23 [2002]
24 flag = 1
25 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
26 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
27 = b
28 
29 [2003]
30 flag = 1
31 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
32 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
33 
34 [2004]
35 flag = 1
36 des3_key1 = 3e072bb9698439377cea73f33e0d5c5af1f5ce581f8e585ac4df2e98c8627e84fea8dbfc2ad4e66375187ab021aedc094c37196534c41611262419bfd07822a3ee
37 des3_key2 = a2bd32dd13ffc59535d99e2ae79c866f308fbd1de7466034f4ed3742651731d307e95a1e9e838e5c77f135124c0714efe06cb7c596a6c35e64eb7572b1737b
38 
39 [aaa]
40 = b
41 


posted on 2007-08-07 10:06 Khan 閱讀(4611) 評論(12)  編輯 收藏 引用 所屬分類: GCC/G++跨平臺開發

評論

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

我使用CIniFile, 是用stl實現的,應該能用于wince。好像是從CodeProject下載的。
2007-08-07 13:26 | 金慶

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

strKey = (string)(pKVItem.first);
完全的java風格嘛。。。
2007-08-07 19:59 | 羅賓李

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

to 金慶
之前寫過一個純c的版本..但是由于寫ini實在太復雜了..所以就廢了..

to 羅賓李
對..我是遵照java的ini文件格式來實現的
2007-08-09 09:35 | Khan's Notebook

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

這段代碼沒有實現修改對應key的value. 如果需要完整版本.請向我索取
2007-08-09 09:45 | Khan's Notebook

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

wince 不支持STL,這個代碼需要改造
2007-08-25 21:12 | peng.jun

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

sorry, 我沒說太清楚, 我對應的系統是win mobile 5, 代碼經過測試..是可以正常運行的..
2007-08-27 10:02 | Khan's Notebook

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

測試了一下發現
如果你在同一個小節下面寫10個相同名稱的鍵(Key),并分別設置不同的鍵值,那么在這個小節下會出現10個鍵名相同但鍵值不同的項目, 那么在讀取這個鍵的值的時候,因為存在10個相同鍵名的項,應該返回哪個值呢??????
上面的源碼中SetValue函數好像并不會去檢測小節中是否已經存在這個鍵名(Key).
2007-09-16 17:14 | Jim.Liang

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

正確的方法應該是在寫入一個Key的值的時候先檢測一下小節下是否存在Key,如果存在,則用傳入的Key的值更新已有的Key的值,如果不存在Key,則添加Key和對應的值.
2007-09-16 17:16 | Jim.Liang

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

sorry. 我再仔細查查..謝謝樓上達人指出
2007-09-18 16:14 | Khan's Notebook

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

這個是最開始的版本.剛剛想起來.我發布后不久就調試出這個問題.并進行了改進..我遲一點會更新為最新的版本
2007-09-18 16:15 | Khan's Notebook

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

不大懂...wince下不是UNICODE環境么,可以直接用string讀到ini的值么
2008-07-11 10:16 | EUREKA

# re: 為wince項目寫的一個可移植的ini文件讀寫的class[原創]  回復  更多評論   

@EUREKA
win98是ansi環境, 并不表示win98下不能寫unicode的文件..
2008-07-15 16:42 | Khan's Notebook
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美成人久久| 国产日韩精品一区二区浪潮av| 亚洲高清不卡av| 久久综合色播五月| 久久久精品国产免费观看同学| 欧美综合77777色婷婷| 香蕉尹人综合在线观看| 久久免费高清视频| 欧美韩日精品| 在线综合视频| 欧美专区在线观看| 久久影视三级福利片| 欧美国产激情二区三区| 国产精品毛片va一区二区三区| 国产日韩欧美在线视频观看| 亚洲国产精品尤物yw在线观看 | 亚洲第一伊人| 亚洲美女尤物影院| 性做久久久久久| 欧美成人精品福利| 国产精品理论片| 在线观看成人av| 午夜国产精品视频免费体验区| 久久亚洲色图| 亚洲视频中文| 欧美国产日韩精品| 狠狠久久亚洲欧美| 亚洲欧美另类中文字幕| 欧美成人第一页| 亚洲欧美日韩精品久久| 欧美极品一区| 一区二区三区无毛| 香蕉免费一区二区三区在线观看| 美女在线一区二区| 亚洲综合三区| 欧美日韩色综合| 亚洲国产日韩精品| 久久久中精品2020中文| 中文av字幕一区| 欧美激情在线狂野欧美精品| 国产日韩一级二级三级| 中日韩午夜理伦电影免费| 欧美α欧美αv大片| 欧美与黑人午夜性猛交久久久| 欧美性一区二区| 一本色道久久88亚洲综合88| 欧美黄色免费| 免费久久99精品国产| 尤物精品国产第一福利三区| 久久精品综合| 欧美在线免费| 狠狠色狠狠色综合日日tαg | 久久夜色精品| 亚洲欧美日韩在线一区| 国产精品久久久久久久电影| 一区二区三区国产在线观看| 亚洲国产精品久久久久秋霞蜜臀 | 精品99一区二区三区| 性做久久久久久久免费看| 夜夜嗨av一区二区三区中文字幕| 欧美成人首页| 日韩视频免费观看| 亚洲精品免费在线观看| 欧美另类视频在线| 亚洲午夜羞羞片| 亚洲一二三区视频在线观看| 国产精品揄拍500视频| 久久超碰97中文字幕| 欧美在线观看一区二区| 1024欧美极品| 最新国产精品拍自在线播放| 欧美视频在线免费| 欧美一二三区精品| 欧美亚洲一区二区在线观看| 在线播放中文字幕一区| 亚洲国产精品视频| 国产精品久久97| 久久精品国产69国产精品亚洲| 欧美在线观看天堂一区二区三区| 在线欧美不卡| 99在线|亚洲一区二区| 国产日韩精品电影| 亚洲国产91精品在线观看| 国产精品www网站| 快播亚洲色图| 欧美日韩国产三级| 久久久噜噜噜久久中文字幕色伊伊 | 久久成人一区| 欧美成人一区二免费视频软件| 亚洲桃色在线一区| 久久精品亚洲热| 亚洲一区二区三区四区在线观看| 欧美亚洲视频在线观看| 亚洲美女在线视频| 午夜在线成人av| 亚洲免费成人| 欧美一区二区三区男人的天堂| 亚洲精品日韩在线| 欧美一区1区三区3区公司| 亚洲美女精品一区| 欧美在线不卡视频| 亚洲免费网站| 欧美国产国产综合| 久久久精品国产免大香伊| 欧美日韩精品一区二区天天拍小说 | 国产精品久久久久久久7电影 | 欧美国产免费| 国产精品手机在线| 亚洲精品欧美| 136国产福利精品导航| 在线视频亚洲欧美| 亚洲精品123区| 欧美一进一出视频| 午夜在线视频一区二区区别| 欧美国产激情二区三区| 久久综合成人精品亚洲另类欧美| 欧美天天综合网| 亚洲人成在线观看网站高清| 一色屋精品亚洲香蕉网站| 亚洲一区成人| 亚洲亚洲精品在线观看| 欧美精品在线免费| 亚洲福利免费| 亚洲欧洲久久| 蜜桃av综合| 亚洲大胆av| 亚洲精品美女91| 老司机成人网| 欧美肥婆在线| 亚洲高清久久网| 久久婷婷色综合| 免费视频一区| 亚洲国产另类久久精品| 免费成人av| 亚洲国产精彩中文乱码av在线播放| 国内久久视频| 久久精品国产亚洲高清剧情介绍| 欧美一区二区私人影院日本| 国产精品日韩二区| 亚洲欧美影院| 欧美亚洲三区| 国内成+人亚洲| 麻豆freexxxx性91精品| 欧美福利视频在线| 91久久精品国产91久久性色| 欧美精品www| 亚洲一区在线免费观看| 欧美有码视频| 在线观看视频免费一区二区三区| 久久亚洲精品中文字幕冲田杏梨| 欧美99久久| aa级大片欧美| 国产精品嫩草99a| 久久久国产视频91| 亚洲第一综合天堂另类专| 日韩视频在线观看国产| 国产精品jizz在线观看美国 | 在线日韩欧美| 欧美日韩国产区| 欧美一区二区三区日韩视频| 裸体一区二区| av成人国产| 国产欧美精品一区二区三区介绍| 久久精品一区| 亚洲乱码国产乱码精品精天堂 | 亚洲国产成人高清精品| 欧美激情国产精品| 欧美伊人久久| 亚洲精品一区二区三区99| 亚洲一区二区高清| 一区二区三区自拍| 国产精品久久久久国产a级| 久久福利毛片| 一区二区三区精密机械公司 | 亚洲第一黄色| 亚洲欧美日韩国产中文在线| 伊人一区二区三区久久精品| 欧美日韩国产大片| 久久超碰97中文字幕| 日韩一级免费观看| 欧美不卡在线| 久久av一区二区| 日韩亚洲欧美在线观看| 黄色日韩网站视频| 国产精品香蕉在线观看| 欧美精品一二三| 久久久久综合| 欧美一级黄色录像| 亚洲私人影院| 亚洲精品一区二区在线| 欧美gay视频| 久久性天堂网| 欧美一区二区三区视频| 一区二区激情视频| 91久久香蕉国产日韩欧美9色| 国产乱理伦片在线观看夜一区| 欧美精品色综合| 欧美国产欧美综合 | 先锋资源久久| 亚洲欧美日韩综合国产aⅴ|