亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > PHP > 正文

關于php中beanstalkd消息隊列的詳解以及類的分享

2020-03-22 18:55:14
字體:
來源:轉載
供稿:網友
這篇文章主要為大家分享了php-beanstalkd消息隊列類實例代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下

概況:
Beanstalkd,一個高性能、輕量級的分布式內存隊列系統,最初設計的目的是想通過后臺異步執行耗時的任務來降低高容量Web應用系統的頁面訪問延遲,支持過有9.5 million用戶的Facebook Causes應用。后來開源,現在有PostRank大規模部署和使用,每天處理百萬級任務。Beanstalkd是典型的類Memcached設計,協議和使用方式都是同樣的風格,所以使用過memcached的用戶會覺得Beanstalkd似曾相識。
beanstalk核心概念:
job:一個需要異步處理的任務,需要放在一個tube中。
tube:一個有名的任務隊列,用來存儲統一類型的job
producer:job的生產者
consumer:job的消費者
簡單來說流程就一句話:
由 producer 產生一個任務 job ,并將 job 推進到一個 tube 中,
然后由 consumer 從 tube 中取出 job 執行(當然了,這一切的操作的前提是beanstalk服務正在運行中)。

一個job有READY(時刻準備著被消費者取出), RESERVED(任務正在被一個消費者處理中), DELAYED(延遲任務,設定的延遲時間后進入ready狀態), BURIED(休眠中,需要轉移狀態后才能操作)四種狀態。當producer直接put一個job時,job就處于READY狀態,等待consumer來處理,如果選擇延遲put,job就先到DELAYED狀態,等待時間過后才遷移到READY狀態。consumer獲取了當前READY的job后,該job的狀態就遷移到RESERVED,這樣其他的consumer就不能再操作該job。當consumer完成該job后,可以選擇delete, release或者bury操作;delete之后,job從系統消亡,之后不能再獲取;release操作可以重新把該job狀態遷移回READY(也可以延遲該狀態遷移操作),使其他的consumer可以繼續獲取和執行該job;有意思的是bury操作,可以把該job休眠,等到需要的時候,再將休眠的job kick回READY狀態,也可以delete BURIED狀態的job。正是有這些有趣的操作和狀態,才可以基于此做出很多意思的應用,比如要實現一個循環隊列,就可以將RESERVED狀態的job休眠掉,等沒有READY狀態的job時再將BURIED狀態的job一次性kick回READY狀態。

例子分析:微博是一個很典型的例子:
1,發一個微博
2,推送給他的粉絲 (如果有100w個粉絲,這個地方會堵塞很久,用戶感受到的就是延遲)
在微博上發布一條內容要做上面兩件事情才算完整,發一條微博只需要進行一次簡單的數據庫操作,
但是推送給他的粉絲卻要操作100w次數據庫,導致用戶發一個微博要等待很長的延遲才能返回結果發送成功。
采用隊列的方式,用戶發送一條微博立馬返回結果,發送成功,剩下的推送就放到隊列里面異步執行,
推送并不需要特別及時,延遲過幾秒幾十秒都是可以接受的。

本文實例為大家分享了php beanstalkd消息隊列類的具體代碼,供大家參考,具體內容如下

<?phpnamespace Common/Business;/** * beanstalk: A minimalistic PHP beanstalk client. * * Copyright (c) 2009-2015 David Persson * * Distributed under the terms of the MIT License. * Redistributions of files must retain the above copyright notice. */ use RuntimeException; /** * An interface to the beanstalk queue service. Implements the beanstalk * protocol spec 1.9. Where appropriate the documentation from the protocol * has been added to the docblocks in this html' target='_blank'>class. * * @link https://github.com/kr/beanstalkd/blob/master/doc/protocol.txt */class BeanStalk {   /**   * Minimum priority value which can be assigned to a job. The minimum   * priority value is also the _highest priority_ a job can have.   *   * @var integer   */  const MIN_PRIORITY = 0;   /**   * Maximum priority value which can be assigned to a job. The maximum   * priority value is also the _lowest priority_ a job can have.   *   * @var integer   */  const MAX_PRIORITY = 4294967295;   /**   * Holds a boolean indicating whether a connection to the server is   * currently established or not.   *   * @var boolean   */  public $connected = false;   /**   * Holds configuration values.   *   * @var array   */  protected $_config = [];   /**   * The current connection resource handle (if any).   *   * @var resource   */  protected $_connection;   /**   * Constructor.   *   * @param array $config An array of configuration values:   *    - `'persistent'` Whether to make the connection persistent or   *             not, defaults to `true` as the FAQ recommends   *             persistent connections.   *    - `'host'`    The beanstalk server hostname or IP address to   *             connect to, defaults to `127.0.0.1`.   *    - `'port'`    The port of the server to connect to, defaults   *             to `11300`.   *    - `'timeout'`   Timeout in seconds when establishing the   *             connection, defaults to `1`.   *    - `'logger'`   An instance of a PSR-3 compatible logger.   *   * @link https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md   * @return void   */  public function __construct(array $config = []) {    $defaults = [      'persistent' => true,      'host' => '127.0.0.1',      'port' => 11300,      'timeout' => 1,      'logger' => null    ];    $this->_config = $config + $defaults;  }   /**   * Destructor, disconnects from the server.   *   * @return void   */  public function __destruct() {    $this->disconnect();  }   /**   * Initiates a socket connection to the beanstalk server. The resulting   * stream will not have any timeout set on it. Which means it can wait   * an unlimited amount of time until a packet becomes available. This   * is required for doing blocking reads.   *   * @see /Beanstalk/Client::$_connection   * @see /Beanstalk/Client::reserve()   * @return boolean `true` if the connection was established, `false` otherwise.   */  public function connect() {    if (isset($this->_connection)) {      $this->disconnect();    }    $errNum = '';    $errStr = '';    $function = $this->_config['persistent'] ? 'pfsockopen' : 'fsockopen';    $params = [$this->_config['host'], $this->_config['port'], &$errNum, &$errStr];     if ($this->_config['timeout']) {      $params[] = $this->_config['timeout'];    }    $this->_connection = @call_user_func_array($function, $params);     if (!empty($errNum) || !empty($errStr)) {      $this->_error("{$errNum}: {$errStr}");    }     $this->connected = is_resource($this->_connection);     if ($this->connected) {      stream_set_timeout($this->_connection, -1);    }    return $this->connected;  }   /**   * Closes the connection to the beanstalk server by first signaling   * that we want to quit then actually closing the socket connection.   *   * @return boolean `true` if diconnecting was successful.   */  public function disconnect() {    if (!is_resource($this->_connection)) {      $this->connected = false;    } else {      $this->_write('quit');      $this->connected = !fclose($this->_connection);       if (!$this->connected) {        $this->_connection = null;      }    }    return !$this->connected;  }   /**   * Pushes an error message to the logger, when one is configured.   *   * @param string $message The error message.   * @return void   */  protected function _error($message) {    if ($this->_config['logger']) {      $this->_config['logger']->error($message);    }  }   public function errors()  {    return $this->_config['logger'];  }  /**   * Writes a packet to the socket. Prior to writing to the socket will   * check for availability of the connection.   *   * @param string $data   * @return integer|boolean number of written bytes or `false` on error.   */  protected function _write($data) {    if (!$this->connected) {      $message = 'No connecting found while writing data to socket.';      throw new RuntimeException($message);    }     $data .= "/r/n";    return fwrite($this->_connection, $data, strlen($data));  }   /**   * Reads a packet from the socket. Prior to reading from the socket   * will check for availability of the connection.   *   * @param integer $length Number of bytes to read.   * @return string|boolean Data or `false` on error.   */  protected function _read($length = null) {    if (!$this->connected) {      $message = 'No connection found while reading data from socket.';      throw new RuntimeException($message);    }    if ($length) {      if (feof($this->_connection)) {        return false;      }      $data = stream_get_contents($this->_connection, $length + 2);      $meta = stream_get_meta_data($this->_connection);       if ($meta['timed_out']) {        $message = 'Connection timed out while reading data from socket.';        throw new RuntimeException($message);      }      $packet = rtrim($data, "/r/n");    } else {      $packet = stream_get_line($this->_connection, 16384, "/r/n");    }    return $packet;  }   /* Producer Commands */   /**   * The `put` command is for any process that wants to insert a job into the queue.   *   * @param integer $pri Jobs with smaller priority values will be scheduled   *    before jobs with larger priorities. The most urgent priority is   *    0; the least urgent priority is 4294967295.   * @param integer $delay Seconds to wait before putting the job in the   *    ready queue. The job will be in the "delayed" state during this time.   * @param integer $ttr Time to run - Number of seconds to allow a worker to   *    run this job. The minimum ttr is 1.   * @param string $data The job body.   * @return integer|boolean `false` on error otherwise an integer indicating   *     the job id.   */  public function put($pri, $delay, $ttr, $data) {    $this->_write(sprintf("put %d %d %d %d/r/n%s", $pri, $delay, $ttr, strlen($data), $data));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'INSERTED':      case 'BURIED':        return (integer) strtok(' '); // job id      case 'EXPECTED_CRLF':      case 'JOB_TOO_BIG':      default:        $this->_error($status);        return false;    }  }   /**   * The `use` command is for producers. Subsequent put commands will put   * jobs into the tube specified by this command. If no use command has   * been issued, jobs will be put into the tube named `default`.   *   * @param string $tube A name at most 200 bytes. It specifies the tube to   *    use. If the tube does not exist, it will be created.   * @return string|boolean `false` on error otherwise the name of the tube.   */  public function useTube($tube) {    $this->_write(sprintf('use %s', $tube));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'USING':        return strtok(' ');      default:        $this->_error($status);        return false;    }  }   /**   * Pause a tube delaying any new job in it being reserved for a given time.   *   * @param string $tube The name of the tube to pause.   * @param integer $delay Number of seconds to wait before reserving any more   *    jobs from the queue.   * @return boolean `false` on error otherwise `true`.   */  public function pauseTube($tube, $delay) {    $this->_write(sprintf('pause-tube %s %d', $tube, $delay));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'PAUSED':        return true;      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /* Worker Commands */   /**   * Reserve a job (with a timeout).   *   * @param integer $timeout If given specifies number of seconds to wait for   *    a job. `0` returns immediately.   * @return array|false `false` on error otherwise an array holding job id   *     and body.   */  public function reserve($timeout = null) {    if (isset($timeout)) {      $this->_write(sprintf('reserve-with-timeout %d', $timeout));    } else {      $this->_write('reserve');    }    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'RESERVED':        return [          'id' => (integer) strtok(' '),          'body' => $this->_read((integer) strtok(' '))        ];      case 'DEADLINE_SOON':      case 'TIMED_OUT':      default:        $this->_error($status);        return false;    }  }   /**   * Removes a job from the server entirely.   *   * @param integer $id The id of the job.   * @return boolean `false` on error, `true` on success.   */  public function delete($id) {    $this->_write(sprintf('delete %d', $id));    $status = $this->_read();     switch ($status) {      case 'DELETED':        return true;      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /**   * Puts a reserved job back into the ready queue.   *   * @param integer $id The id of the job.   * @param integer $pri Priority to assign to the job.   * @param integer $delay Number of seconds to wait before putting the job in the ready queue.   * @return boolean `false` on error, `true` on success.   */  public function release($id, $pri, $delay) {    $this->_write(sprintf('release %d %d %d', $id, $pri, $delay));    $status = $this->_read();     switch ($status) {      case 'RELEASED':      case 'BURIED':        return true;      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /**   * Puts a job into the `buried` state Buried jobs are put into a FIFO   * linked list and will not be touched until a client kicks them.   *   * @param integer $id The id of the job.   * @param integer $pri *New* priority to assign to the job.   * @return boolean `false` on error, `true` on success.   */  public function bury($id, $pri) {    $this->_write(sprintf('bury %d %d', $id, $pri));    $status = $this->_read();     switch ($status) {      case 'BURIED':        return true;      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /**   * Allows a worker to request more time to work on a job.   *   * @param integer $id The id of the job.   * @return boolean `false` on error, `true` on success.   */  public function touch($id) {    $this->_write(sprintf('touch %d', $id));    $status = $this->_read();     switch ($status) {      case 'TOUCHED':        return true;      case 'NOT_TOUCHED':      default:        $this->_error($status);        return false;    }  }   /**   * Adds the named tube to the watch list for the current connection.   *   * @param string $tube Name of tube to watch.   * @return integer|boolean `false` on error otherwise number of tubes in watch list.   */  public function watch($tube) {    $this->_write(sprintf('watch %s', $tube));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'WATCHING':        return (integer) strtok(' ');      default:        $this->_error($status);        return false;    }  }   /**   * Remove the named tube from the watch list.   *   * @param string $tube Name of tube to ignore.   * @return integer|boolean `false` on error otherwise number of tubes in watch list.   */  public function ignore($tube) {    $this->_write(sprintf('ignore %s', $tube));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'WATCHING':        return (integer) strtok(' ');      case 'NOT_IGNORED':      default:        $this->_error($status);        return false;    }  }   /* Other Commands */   /**   * Inspect a job by its id.   *   * @param integer $id The id of the job.   * @return string|boolean `false` on error otherwise the body of the job.   */  public function peek($id) {    $this->_write(sprintf('peek %d', $id));    return $this->_peekRead();  }   /**   * Inspect the next ready job.   *   * @return string|boolean `false` on error otherwise the body of the job.   */  public function peekReady() {    $this->_write('peek-ready');    return $this->_peekRead();  }   /**   * Inspect the job with the shortest delay left.   *   * @return string|boolean `false` on error otherwise the body of the job.   */  public function peekDelayed() {    $this->_write('peek-delayed');    return $this->_peekRead();  }   /**   * Inspect the next job in the list of buried jobs.   *   * @return string|boolean `false` on error otherwise the body of the job.   */  public function peekBuried() {    $this->_write('peek-buried');    return $this->_peekRead();  }   /**   * Handles response for all peek methods.   *   * @return string|boolean `false` on error otherwise the body of the job.   */  protected function _peekRead() {    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'FOUND':        return [          'id' => (integer) strtok(' '),          'body' => $this->_read((integer) strtok(' '))        ];      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /**   * Moves jobs into the ready queue (applies to the current tube).   *   * If there are buried jobs those get kicked only otherwise delayed   * jobs get kicked.   *   * @param integer $bound Upper bound on the number of jobs to kick.   * @return integer|boolean False on error otherwise number of jobs kicked.   */  public function kick($bound) {    $this->_write(sprintf('kick %d', $bound));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'KICKED':        return (integer) strtok(' ');      default:        $this->_error($status);        return false;    }  }   /**   * This is a variant of the kick command that operates with a single   * job identified by its job id. If the given job id exists and is in a   * buried or delayed state, it will be moved to the ready queue of the   * the same tube where it currently belongs.   *   * @param integer $id The job id.   * @return boolean `false` on error `true` otherwise.   */  public function kickJob($id) {    $this->_write(sprintf('kick-job %d', $id));    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'KICKED':        return true;      case 'NOT_FOUND':      default:        $this->_error($status);        return false;    }  }   /* Stats Commands */   /**   * Gives statistical information about the specified job if it exists.   *   * @param integer $id The job id.   * @return string|boolean `false` on error otherwise a string with a yaml formatted dictionary.   */  public function statsJob($id) {    $this->_write(sprintf('stats-job %d', $id));    return $this->_statsRead();  }   /**   * Gives statistical information about the specified tube if it exists.   *   * @param string $tube Name of the tube.   * @return string|boolean `false` on error otherwise a string with a yaml formatted dictionary.   */  public function statsTube($tube) {    $this->_write(sprintf('stats-tube %s', $tube));    return $this->_statsRead();  }   /**   * Gives statistical information about the system as a whole.   *   * @return string|boolean `false` on error otherwise a string with a yaml formatted dictionary.   */  public function stats() {    $this->_write('stats');    return $this->_statsRead();  }   /**   * Returns a list of all existing tubes.   *   * @return string|boolean `false` on error otherwise a string with a yaml formatted list.   */  public function listTubes() {    $this->_write('list-tubes');    return $this->_statsRead();  }   /**   * Returns the tube currently being used by the producer.   *   * @return string|boolean `false` on error otherwise a string with the name of the tube.   */  public function listTubeUsed() {    $this->_write('list-tube-used');    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'USING':        return strtok(' ');      default:        $this->_error($status);        return false;    }  }   /**   * Returns a list of tubes currently being watched by the worker.   *   * @return string|boolean `false` on error otherwise a string with a yaml formatted list.   */  public function listTubesWatched() {    $this->_write('list-tubes-watched');    return $this->_statsRead();  }   /**   * Handles responses for all stat methods.   *   * @param boolean $decode Whether to decode data before returning it or not. Default is `true`.   * @return array|string|boolean `false` on error otherwise statistical data.   */  protected function _statsRead($decode = true) {    $status = strtok($this->_read(), ' ');     switch ($status) {      case 'OK':        $data = $this->_read((integer) strtok(' '));        return $decode ? $this->_decode($data) : $data;      default:        $this->_error($status);        return false;    }  }   /**   * Decodes YAML data. This is a super naive decoder which just works on   * a subset of YAML which is commonly returned by beanstalk.   *   * @param string $data The data in YAML format, can be either a list or a dictionary.   * @return array An (associative) array of the converted data.   */  protected function _decode($data) {    $data = array_slice(explode("/n", $data), 1);    $result = [];     foreach ($data as $key => $value) {      if ($value[0] === '-') {        $value = ltrim($value, '- ');      } elseif (strpos($value, ':') !== false) {        list($key, $value) = explode(':', $value);        $value = ltrim($value, ' ');      }      if (is_numeric($value)) {        $value = (integer) $value == $value ? (integer) $value : (float) $value;      }      $result[$key] = $value;    }    return $result;  }} ?>

以上就是關于php中beanstalkd消息隊列的詳解以及類的分享的詳細內容,更多請關注 其它相關文章!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
91欧美激情另类亚洲| 中文字幕精品一区久久久久| 久久精品久久久久久国产 免费| 亚洲女人被黑人巨大进入| 亚洲xxxx在线| 国内精品久久久久| 91青草视频久久| 国产精品最新在线观看| 91精品国产高清自在线看超| 亚洲欧美精品suv| 97在线观看免费高清| 国产欧美韩国高清| 国产日韩一区在线| 91免费人成网站在线观看18| 国产精品视频yy9099| 92福利视频午夜1000合集在线观看| 久久99精品国产99久久6尤物| 亚洲系列中文字幕| 91大神在线播放精品| 亚洲欧美视频在线| 国产精品福利片| 亚洲欧美国产日韩天堂区| 国产成人av在线播放| 国产成人一区二区三区| 人人做人人澡人人爽欧美| 亚洲午夜国产成人av电影男同| 在线亚洲男人天堂| 国产精品综合网站| 久久久电影免费观看完整版| 欧美性猛交xxxx免费看漫画| 国产精品69精品一区二区三区| 亚洲激情视频在线播放| 欧美午夜片欧美片在线观看| 亚洲精品影视在线观看| 欧美精品在线视频观看| 在线播放国产一区中文字幕剧情欧美| 国产精品十八以下禁看| 成人h片在线播放免费网站| 欧美亚州一区二区三区| 精品一区电影国产| 精品一区精品二区| 久久久97精品| 亚洲精品日韩久久久| 欧美视频免费在线| 国产精品日韩欧美大师| x99av成人免费| 亚洲综合成人婷婷小说| 日韩av网址在线观看| 色偷偷88888欧美精品久久久| 久久久之久亚州精品露出| 亚洲自拍小视频免费观看| 最近2019中文字幕一页二页| 欧美成人午夜激情视频| 国模视频一区二区| 久久精视频免费在线久久完整在线看| 91精品国产高清久久久久久91| 欧美黑人极品猛少妇色xxxxx| 亚洲天堂日韩电影| 国产香蕉精品视频一区二区三区| 久久久久久av| 国产日韩欧美影视| 欧美丝袜一区二区| 精品国产一区二区三区久久久狼| 搡老女人一区二区三区视频tv| 国产一区视频在线播放| 国产精品视频网站| 久青草国产97香蕉在线视频| 在线亚洲午夜片av大片| 欧美疯狂做受xxxx高潮| 亚洲999一在线观看www| 亚洲国产成人精品久久| 黑人精品xxx一区| 国产高清在线不卡| 亚洲美女免费精品视频在线观看| 91精品视频在线| 国产精品永久在线| 欧美精品videosex牲欧美| 亚洲永久免费观看| 日韩av在线不卡| 欧美一级黄色网| 日韩免费观看av| 国产视频久久久| 国产精品直播网红| 国产精品高潮呻吟视频| 亚洲精品国产福利| 国产99视频在线观看| 亚洲aa中文字幕| 亚洲精品女av网站| 国产精品三级久久久久久电影| 亚洲理论在线a中文字幕| 91高潮在线观看| 亚洲精品国产精品乱码不99按摩| 成人免费视频a| 在线不卡国产精品| 亚洲福利在线观看| 国产成人自拍视频在线观看| 亚洲成**性毛茸茸| 成人h猎奇视频网站| 亚洲国产黄色片| 中文字幕综合一区| 久久精品国产亚洲精品| 欧美成人一区在线| 92国产精品久久久久首页| 欧美日韩激情视频8区| 精品国产一区二区三区在线观看| 国产亚洲视频在线| 亚洲精品美女在线| 2019亚洲日韩新视频| 日韩三级影视基地| 美乳少妇欧美精品| 亚洲午夜小视频| 久久综合久久美利坚合众国| 国产精品h在线观看| 日韩精品极品在线观看| 日本精品视频在线观看| 欧美巨猛xxxx猛交黑人97人| 欧美一二三视频| 日韩免费在线免费观看| 日韩在线观看免费全集电视剧网站| 日本亚洲欧洲色α| 97超级碰碰碰| 久久精品国产成人| 精品亚洲国产成av人片传媒| 亚洲国产另类 国产精品国产免费| 国产91九色视频| 性色av一区二区三区免费| 日本久久亚洲电影| 亚洲一区美女视频在线观看免费| 精品国产乱码久久久久久婷婷| 国产精品69久久久久| 亚洲综合在线播放| 日韩视频在线一区| 亚洲天堂av电影| 亚洲国产精品资源| 欧美猛交免费看| 热久久免费视频精品| 成人欧美一区二区三区在线湿哒哒| 国产99久久精品一区二区| 欧美一区二区视频97| 欧美精品videosex性欧美| 日韩视频一区在线| 国产精品自产拍在线观| 狠狠色噜噜狠狠狠狠97| 精品视频—区二区三区免费| 欧美视频中文在线看| 久久久久九九九九| 欧美夫妻性生活视频| 81精品国产乱码久久久久久| 亚洲人成在线电影| 精品日本高清在线播放| 精品久久香蕉国产线看观看亚洲| 91精品国产综合久久久久久久久| 亚洲伊人久久大香线蕉av| 精品国产欧美一区二区三区成人| 亚洲欧美一区二区精品久久久| 精品久久久久久久大神国产| 精品动漫一区二区三区| 蜜臀久久99精品久久久久久宅男| 亚洲免费影视第一页| 国产精品盗摄久久久| 亚洲一区精品电影| 国产精品爽爽ⅴa在线观看| 懂色av中文一区二区三区天美| 精品性高朝久久久久久久|