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

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

路漫漫,長修遠(yuǎn),我們不能沒有錢
隨筆 - 173, 文章 - 0, 評(píng)論 - 257, 引用 - 0
數(shù)據(jù)加載中……

為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]

//ini文件操作類
//write by Khan
//最開頭的注釋默認(rèn)的 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));//去結(jié)尾回車符
    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;
}




調(diào)用方式

#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;
}


處理前的日志文件內(nèi)容
 1 ## cbm配置文件
 2 
 3 [cbm]
 4 
 5 #sp端口號(hào)
 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內(nèi)容
 1 ## cbm配置文件
 2 
 3 [cbm]
 4 
 5 #sp端口號(hào)
 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 閱讀(4608) 評(píng)論(12)  編輯 收藏 引用 所屬分類: GCC/G++跨平臺(tái)開發(fā)

評(píng)論

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

我使用CIniFile, 是用stl實(shí)現(xiàn)的,應(yīng)該能用于wince。好像是從CodeProject下載的。
2007-08-07 13:26 | 金慶

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

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

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

to 金慶
之前寫過一個(gè)純c的版本..但是由于寫ini實(shí)在太復(fù)雜了..所以就廢了..

to 羅賓李
對(duì)..我是遵照java的ini文件格式來實(shí)現(xiàn)的
2007-08-09 09:35 | Khan's Notebook

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

這段代碼沒有實(shí)現(xiàn)修改對(duì)應(yīng)key的value. 如果需要完整版本.請(qǐng)向我索取
2007-08-09 09:45 | Khan's Notebook

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

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

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

sorry, 我沒說太清楚, 我對(duì)應(yīng)的系統(tǒng)是win mobile 5, 代碼經(jīng)過測試..是可以正常運(yùn)行的..
2007-08-27 10:02 | Khan's Notebook

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

測試了一下發(fā)現(xiàn)
如果你在同一個(gè)小節(jié)下面寫10個(gè)相同名稱的鍵(Key),并分別設(shè)置不同的鍵值,那么在這個(gè)小節(jié)下會(huì)出現(xiàn)10個(gè)鍵名相同但鍵值不同的項(xiàng)目, 那么在讀取這個(gè)鍵的值的時(shí)候,因?yàn)榇嬖?0個(gè)相同鍵名的項(xiàng),應(yīng)該返回哪個(gè)值呢??????
上面的源碼中SetValue函數(shù)好像并不會(huì)去檢測小節(jié)中是否已經(jīng)存在這個(gè)鍵名(Key).
2007-09-16 17:14 | Jim.Liang

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

正確的方法應(yīng)該是在寫入一個(gè)Key的值的時(shí)候先檢測一下小節(jié)下是否存在Key,如果存在,則用傳入的Key的值更新已有的Key的值,如果不存在Key,則添加Key和對(duì)應(yīng)的值.
2007-09-16 17:16 | Jim.Liang

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

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

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

這個(gè)是最開始的版本.剛剛想起來.我發(fā)布后不久就調(diào)試出這個(gè)問題.并進(jìn)行了改進(jìn)..我遲一點(diǎn)會(huì)更新為最新的版本
2007-09-18 16:15 | Khan's Notebook

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

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

# re: 為wince項(xiàng)目寫的一個(gè)可移植的ini文件讀寫的class[原創(chuàng)]  回復(fù)  更多評(píng)論   

@EUREKA
win98是ansi環(huán)境, 并不表示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一区二区三区| 亚洲一区二区三区高清| 狠狠色伊人亚洲综合网站色| 免费永久网站黄欧美| 欧美激情一区二区三区高清视频| 亚洲少妇在线| 欧美在线免费观看亚洲| 91久久精品国产91久久性色tv| 亚洲欧洲一区二区三区久久| 国产精品乱码一区二三区小蝌蚪| 久久国产日韩| 欧美电影免费观看网站| 欧美专区18| 欧美大秀在线观看| 欧美亚洲一区三区| 欧美激情一级片一区二区| 亚洲综合清纯丝袜自拍| 老司机久久99久久精品播放免费| 亚洲免费影院| 欧美人与性动交a欧美精品| 欧美亚洲三级| 欧美区一区二| 久热国产精品视频| 国产精品狠色婷| 欧美激情一区| 国产亚洲成人一区| 日韩视频在线一区| 亚洲国产精品精华液网站| 午夜精品一区二区三区在线| 99在线|亚洲一区二区| 欧美自拍偷拍| 欧美一区二区三区在线播放| 欧美金8天国| 欧美大尺度在线观看| 国产精品xxxxx| 欧美韩日亚洲| 狠狠色狠狠色综合日日小说| 亚洲欧美成aⅴ人在线观看| 一区二区激情| 欧美国产日韩一区二区三区| 另类尿喷潮videofree| 国产精品综合网站| 中日韩视频在线观看| 99精品欧美一区二区三区| 久久综合久久88| 久久久久久尹人网香蕉| 国产视频一区三区| 欧美一区网站| 久久精品国产精品亚洲精品| 欧美亚洲第一页| 一区二区三区免费在线观看| 一本色道久久加勒比88综合| 欧美啪啪成人vr| 亚洲国产一区二区三区a毛片| 亚洲高清在线观看一区| 久久嫩草精品久久久精品| 久久精品亚洲| 黄色在线一区| 蜜桃久久精品乱码一区二区| 欧美mv日韩mv亚洲| 亚洲国产精品久久| 欧美激情视频一区二区三区不卡| 亚洲黄色性网站| 在线亚洲+欧美+日本专区| 欧美日韩亚洲一区三区| 一本久久精品一区二区| 亚洲伊人久久综合| 国产农村妇女毛片精品久久麻豆| 性欧美精品高清| 欧美777四色影视在线| 亚洲日本中文| 国产精品久久久久久久久免费桃花 | 黄色小说综合网站| 免费在线观看日韩欧美| 亚洲国产毛片完整版| 一区二区三区视频观看| 国产精品久久毛片a| 欧美在线观看你懂的| 欧美www视频| 在线一区二区视频| 国产日韩欧美在线播放| 免费观看不卡av| 99re66热这里只有精品4| 亚洲欧美日韩另类精品一区二区三区| 国产精品一级在线| 亚洲精品之草原avav久久| 韩国av一区二区| 欧美成人免费一级人片100| 一级成人国产| 免费观看久久久4p| 亚洲图片欧洲图片av| 韩国精品在线观看| 欧美色中文字幕| 久久久午夜视频| 亚洲天堂男人| 欧美国产专区| 久久久久久久999| 夜色激情一区二区| 国产一区 二区 三区一级| 欧美精品成人一区二区在线观看 | 99热这里只有成人精品国产| 欧美专区在线观看一区| 亚洲精品国精品久久99热| 国产乱码精品| 欧美日韩精品二区第二页| 久久视频在线看| 欧美一级电影久久| 亚洲图色在线| 亚洲精品人人| 欧美高清在线精品一区| 久久精品99国产精品日本| 亚洲色图综合久久| 日韩网站在线看片你懂的| 一区二区三区在线视频免费观看| 欧美三级在线视频| 欧美成人国产va精品日本一级| 香蕉国产精品偷在线观看不卡| 宅男精品视频| 夜夜爽99久久国产综合精品女不卡| 亚洲电影免费在线| 欧美va天堂在线| 老司机精品福利视频| 久久国产精品久久久久久久久久| 亚洲午夜性刺激影院| 中文在线资源观看网站视频免费不卡 | 亚洲黄色av| 亚洲国产一二三| 欧美激情精品久久久久久久变态 | 亚洲无限av看| 一本久道久久综合婷婷鲸鱼| 亚洲精品乱码| 亚洲看片免费| 最新国产成人在线观看| 最新高清无码专区| 日韩视频―中文字幕| 日韩午夜激情av| 99精品国产在热久久婷婷| 亚洲作爱视频| 亚洲香蕉伊综合在人在线视看| 99天天综合性| 亚洲一区二区三区精品在线观看| 亚洲深夜激情| 亚洲欧美在线一区二区| 欧美一级在线视频| 久久久99免费视频| 美国成人直播| 欧美日韩免费区域视频在线观看| 欧美日韩视频专区在线播放| 欧美午夜国产| 国产色产综合产在线视频| 国产精品成人一区二区三区吃奶| 欧美一区二区三区的| 久久国产高清| 亚洲欧美日韩精品一区二区| 欧美不卡高清| 亚洲理论在线| 国产亚洲精品美女| 久久久久天天天天| 亚洲一区二区欧美日韩| 亚洲一区免费视频| 亚洲国产一二三| 中日韩午夜理伦电影免费| 久久亚洲精品欧美| 一本色道久久综合亚洲91| 欧美精品一区在线发布| 欧美国产日韩在线观看| 国产又爽又黄的激情精品视频 | 国产综合激情| 麻豆成人在线| 久久精品伊人| 免费观看日韩| 久久香蕉国产线看观看av| 一区二区电影免费观看| 亚洲国产精品成人精品| 狠狠色狠狠色综合日日tαg| 国产精品区一区二区三| 欧美h视频在线| 欧美在线free| 欧美尤物一区| 亚洲一区二区三区在线看| 欧美国产综合视频| 欧美一级大片在线观看| 国产农村妇女精品| 国产精品国产a级| 欧美午夜在线一二页| 久久久久高清| 久久成人精品一区二区三区| 日韩一级不卡| 亚洲精品激情| 亚洲国产精品一区在线观看不卡 | 亚洲免费中文字幕| 国产精品一二三| 国产精品专区一| 国产无一区二区|