日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CSE 332S代寫、代做c/c++設計編程

時間:2024-05-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CSE 3**S Lab 5: OOP Design
Miscellaneous details:
Due Date: Monday, May 6th at 11:59 PM CT, no extensions will be given. The late policy will
apply. The last day to submit will be May 8th at 11:59 PM. No work will be accepted afterwards.
Grade breakdown: This lab accounts for 20% of your final semester grade, 25% total for lab 5
and studios 16-21
Group details: You will work in the same groups as you did for Studio 16-21. Groups of **3
students are allowed.
Getting started: Continue working in your repository for studios 16-21 and lab 5. Open and
build targeting “lab5” and “testlab5”.
Note: Please review the repository structure video on Canvas if you have any issues
navigating the projects. Also, see the README.md file in the base directory of your
repository for details on how to work through and run/test your code.
You should not modify the file structure of the repository in any way. We have already
created CMake build configurations for each of the studios and the unit tests associated with
each studio. We have also already created most files you will need for the studios and lab 5.
After you finish working, be sure to commit and push any changes you made. Each time you sit
down to start working, be sure to “pull” any changes from github into your local repository.
Lab overview:
This lab will be built upon studios 16-21. You should complete all studios before starting the lab.
Throughout studios 16-21 and continuing into lab 5, you will build a software simulation of a file
system, some simple file types that may be stored in a file system, and a user interface similar
to a command prompt or terminal that allows a user to interact with the file system and files it
contains. Throughout the design and implementation of the file system, OOP design principles
and patterns learned throughout the semester will be used to ensure the file system is easy to
extend with new functionality in the future, easy to modify without major code refactoring, and
easy to configure with different functionality as needed. Here is a quick overview of what you
have done in studio already:
1. Studio 16: Creating a set of related classes via interface inheritance. A file system
stores files of many different types. In this studio, you created an interface that declares
the basic functionality all files share (read, write, append, getSize, getName). You then
defined a couple of concrete file types that inherit this interface and define it
appropriately for the given file type(TextFile, ImageFile(studio 17)). This creates a set of
concrete file classes that share a common interface (AbstractFile).
2. Studio 17: Programming to an interface. Now that you have some concrete file types,
you need a way to store and manage access to files. This is the file system’s job. This
studio introduces a new interface describing the functionality all file systems share
(createFile (moved in studio 18), addFile, openFile, closeFile, removeFile) and
introduces an implementation of this interface (SimpleFileSystem). The
SimpleFileSystem may store and manage access to many different file types. To support
this, the file system is programmed to use the AbstractFile interface. A file system stores
AbstractFiles and interacts with AbstractFiles. As concrete classes that inherit and define
the AbstractFile interface are subclasses of AbstractFile, objects of those classes may
be used freely with the file system. New file types can easily be added to the file system
by creating new concrete file classes that inherit the AbstractFile interface.
3. Studio 18: Single responsibility principle and the abstract factory design pattern.
This studio separates the task of creating files from the file system object. A file system
should simply be responsible for storing and managing access to files, not creating them.
A new object, a file factory, will be responsible for creating files instead. The abstract
factory pattern is used to support extensibility and flexibility in our design. The
AbstractFileFactory interface declares an interface for creating files and concrete file
factory objects define that interface to handle the creation of objects of different concrete
file types. The abstract factory pattern provides extensibility by making it easy to create
new concrete file factory classes (as in studio 20). Each concrete file factory may
enforce restrictions on what types of files it can create, or can vary how the files are
actually created. The pattern supports flexibility as a client that creates files using the
AbstractFileFactory interface may be configured with any concrete factory class that
inherits from AbstractFileFactory. This allows us to easily configure a client to change
what types of files it may create or how those files are created.
4. Studio 19: Adding new functionality to existing file types via the visitor pattern.
This studio introduces the visitor pattern. The visitor pattern allows us to add new
functionality to an existing set of related classes, where each concrete class may require
a different implementation. For instance, a file may be displayed in different ways.
Maybe we want to display the bytes contained in the file directly, without any special
formatting; maybe we want to display metadata about the file only; or, maybe we want to
display the file in a format specific to that concrete file type. Rather than adding a virtual
member function to the AbstractFile interface for each of these display methods (such as
readBytes(), readMetadata(), readFormatted()) and overriding those methods in an
appropriate way in each derived file class, we can instead use the visitor pattern to
accomplish this without cluttering the AbstractFile interface. After completion, you will
now have a couple of concrete visitors. One prints the contents of a file in a format
specific to that file type, the other displays the metadata of the file.
5. Studio 20: Password protected files using the Proxy pattern. This studio introduces
the Proxy design pattern to start to build support for password protected files. A proxy
object can be stored in place of a real file in the file system. Any attempts to read, write,
or visit a file will require the user to enter the correct password for the file before gaining
access.
6. Studio 21: Adding a user interface and the command pattern. Up to this point,
testing/interacting with the file system has been done via writing code in main. This
studio creates a user interface (CommandPrompt) that allows a user to interact with the
file system by issuing commands. To implement this functionality, the command pattern
is used. Each action the user can request is implemented as a ConcreteCommand
object. When a user provides input, the CommandPrompt object invokes the appropriate
command based on the user’s input. The touch command is introduced in this studio.
Touch is a command that creates a new file and adds the file to the file system.
What you will implement in lab 5: For lab 5, you will be creating a few additional commands to
increase the functionality of the program. The commands you will modify or implement are listed
below, you will find further details on the specification and requirements of each command later
in this document. In lab 5, you will:
1. Create and implement a command called “ls” to list all of the files stored in the file
system
2. Create and implement a command called “remove” to remove a file from the filesystem
3. Modify the “touch” command to support creating password protected files
4. Create and implement a command called “cat” that concatenates or writes user input into
a file
5. Create and implement a command called “ds” that displays the contents of a file based
on the file’s type
6. Create and implement a command called “copy” that makes a copy of an existing file
and stores it in the file system with a different name (prototype pattern)
7. Create and implement a command called “rename” that renames an existing file in the
file system (composite pattern, strategy pattern)
And finally, the details…
Modify, or create and implement the following commands as described below. All commands
you add should be ConcreteCommand objects as part of the command pattern. You should
name your classes exactly as they are typed below when highlighted in blue. Header and
source files for your classes should already be created and linked in the solution.
Note: You should not:
● Modify any base class interfaces to include additional functions not described in this
document or studio assignments. For example: you cannot add a function to AbstractFile
to return the file’s concrete type. You may modify AbstractFile to support the prototype
pattern as this is required.
● Modify any tests.
● Determine a file’s type in a command object by using the file’s name and extension.
Command objects should not need to understand the types of files they are interacting
with.
Doing any of the above will result in deductions.
1. Create and implement LSCommand in LSCommand.h/.cpp (15 points): The
LSCommand will be invoked by the user by typing “ls” into the command prompt. It
should output to the terminal the names of all files currently in the file system. To support
this, you should first add a function to the AbstractFileSystem interface called
“getFileNames” that takes no parameters and returns a std::set<string> containing the
names of all files in the file system. Implement this function in SimpleFileSystem. You
can assume all file names are less than 20 chars total (you can enforce this in “touch” if
you would like). The output of the “ls” command should look as below (assume we have
5 files in the file system currently: file.txt, image.img, other.txt, file2.txt, image2.img):
$ ls // the command given by the user
file.txt file2.txt // output of the command
image.img image2.img
other.txt
More specifically, 2 files should be printed per line and the file names should be evenly
spaced and aligned appropriately.
The “ls” command should also support an additional option, “-m”, which will display a
single file per line along with the metadata associated with that file as below (sizes are
made up):
$ ls -m
file.txt text 15
file2.txt text 10
image.img image 4
image2.img image 9
other.txt test 0
When the command is executed, it should return 0 if the command executes
successfully, or some non-zero value if the command fails for some reason.
Hint: You may already have a visitor that can help with this. Given a file name, how
would you obtain a pointer to the file so that you can “visit” it?
Other Hint: When the CommandPrompt executes a command, what does it pass to the
command’s execute function if the user enters “ls”? What about “ls -m”? Use the
debugger to figure this out if you need to.
2. Create and implement RemoveCommand (RemoveCommand.h/.cpp)(5 points):
This command should remove the file with the provided name from the file system. If the
file is unable to be removed for some reason, the command should return a non-zero
value indicating this. Otherwise, it should return 0 if the file was removed successfully.
The command should be invoked by the user with “rm <filename>”, such as below:
$ ls
file.txt image.img // file system contains these
files
$ rm file.txt // rm one of the files
$ ls
image.img // file.txt was successfully removed
$ // ready for the next command from the user
3. Modify your TouchCommand from studio 21 to support creating password
protected files (10 points): Update “touch” with an option to create a file that is
password protected. When touch is invoked with the “-p” option, a password protected
file should be created rather than a regular file. You must use your Proxy from studio 21
to support this. The touch command should create the file, prompt the user for a
password, and then set up the proxy to protect the file. Then add the proxy to the file
system. An example is below:
$ touch file.txt // creates file.txt and adds it, no password
$ touch file1.txt -p // -p comes after the filename
What is the password? // prompt the user for a password
1234 // user input: a not very safe password
$
After implementing cat and ds below, you can verify the password protection is working
correctly (cat and ds will write/read the file).
4. Create and implement CatCommand (CatCommand.h/.cpp)(15 points): Add a new
command to your program called cat. If you are unfamiliar with linux command line
utilities, cat is a utility that is useful for concatenating files. The cat command can be
used to write to a file as well, which will be the purpose of our cat command. Cat can be
invoked from the command prompt as follows:
$ cat <filename> [-a]
<filename> will be replaced with the name of a real file in the file system. The ‘[‘ brackets
around “-a” indicate “-a” is optional. So, a real invocation of the command may look like:
$ cat file.txt // or
$ cat file.txt -a
The cat command should be defined to do the following: the -a option stands for append.
If the -a option is given, the current contents of the file should be displayed (the bytes
only, not the formatted output) followed by a new line. The user should then be prompted
to input data to append to the file, to input “:wq” to save and quit, or to input “:q” to quit
without saving. The user's input should be read from cin line by line. If the line is not
“:wq” or “:q”, the data should be saved temporarily. Remember getline() will trim off the
newline character (‘\n’), make sure to reinsert a new line character between each line of
user input when saving it. If the user enters “:q”, the cat command should return and no
data should be written to the file. If the user enters “:wq”, the input provided up until the
user entered “:wq” should be appended to the file.
If the user invokes cat without the -a option, the functionality should be the same as
above except the current contents of the file should not be displayed to the user before
prompting for input and when the user provides “:wq” as input, the contents of the file
should be overwritten with the data supplied by the user, rather than appended to the
end of the file. Some example invocations and possible output are below(note “ds” is a
command you will implement later, it displays a file):
Note: These images show the functionality from a previous semester where we
supported directories and hierarchical file storage. The output may look a bit different
(root $ instead of $ only, root/file.txt instead of file.txt, etc..). Ignore those minor
differences and the images show the correct functionality.
And continued on..
As with other commands, 0 should be returned if the command executes successfully,
otherwise a non-zero value should be returned indicating an error occurred.
5. Create and implement DisplayCommand (DisplayCommand.h/.cpp)(10 points): Add
a new command, Display. Display is invoked with “ds”. Display opens a file and displays
its contents, either formatted or not (when given the “-d” option for data only). An
example invocation could be:
$ ds image.img // formated
Or..
$ ds image.img -d // unformatted
And here is a screenshot of it in action:
If display executes successfully, 0 should be returned. Otherwise, a non-zero value
should be returned indicating an error occurred.
6. Create and implement CopyCommand (CopyCommand.h/.cpp)(15 points): The
copy command will copy a file that exists in the file system and add the copy to the file
system with a different name. It is invoked with the following command structure:
cp <file_to_copy> <new_name_with_no_extension>
Where file_to_copy is replaced with a real file that exists in the file system and
new_name_with_no_extension is replaced with the name a user would like the copy to
be called (minus the extension). The copy will be of the same type as the original file, so
the file extension should match as well. When the copy is made, the correct extension
should be added to the file name given by the user. The original file, and the copy of the
file should be unique file objects. To receive credit for this command, you must
implement the prototype pattern in order to copy a file object. If any errors occur while
copying or adding the copy to the file system, a message notifying the user the
command failed should be displayed and the copy of the file should be deleted. Here is a
transcript of copy in action (kind of, I have not implemented this version of the lab yet, so
some output is missing but this shows the general commands to run):
$ touch file.txt // create file.txt
$ cat file.txt // write to it
123456
:wq
$ cp file.txt file_copy // create a copy
$ ds file_copy.txt // .txt added by the cp command
123456 // ensure it is a copy
$ cat file_copy.txt
Hello
:wq
$ ds file.txt
123456 // ensure the copy is a unique file, writing to
// the copy does not change the original
If the file is copied successfully and added to the file system, executing this command
should return 0 for success. Otherwise, a non-zero value should be returned.
How should a password protected file be copied? The copy should be password
protected as well. So, not only does the file need to be copied via the prototype pattern,
but the proxy for the file needs to be copied as well.
Hint: You will need to change the name of the copy to its new name, however there is no
setName function in the AbstractFile interface. You should not add a setter for the file
name. Instead, it may be helpful to pass a string holding the new file name to the clone
function as part of the prototype pattern.
7. Create and Implement support for MacroCommands (10 points): Macro commands
will allow us to construct commands out of other commands. Executing a macro
command simply executes each of the commands it is composed of in order. To
implement this, you should first create a class called MacroCommand
(MacroCommand.h/.cpp)that inherits the AbstractCommand interface and maintains as
member variables a std::vector of AbstractCommand objects (the primitive commands
the macro command will use) and a pointer to an AbstractParsingStrategy (This will be
described shortly). In our project, the macro command’s execute function takes in an
input string, however we can’t just pass that same string to each individual command the
macro command is composed of, as they expect different input. The job of a
ParsingStrategy will be to take the input provided to the macro command’s execute
function and transform it into a vector<string>, where each string in the vector is the
input that should be supplied to the corresponding individual command.
MacroCommand’s execute function should be implemented as follows:
a. Ask the ParsingStrategy object to parse the input provided to the macro
command’s execute function, which will return a vector<string>. See below.
b. For each individual command the MacroCommand is composed of, call the
individual command’s execute function with the corresponding input from the
vector<string> returned by the ParsingStrategy. If any individual command
returns an error, return an error. Otherwise, if all individual commands execute
successfully, return 0 for success.
As a MacroCommand is a composite object in the composite pattern, it needs to provide
a function for adding individual commands to its vector of commands. Add a function to
its public interface called addCommand that takes a pointer to an AbstractCommand and
pushes it to the end of its vector of commands. Add a function to set the macro
command’s parsing strategy as well. This should be called setParseStrategy and should
take a pointer to an AbstractParsingStrategy as a parameter.
Declare the AbstractParsingStrategy (AbstractParsingStrategy.h) interface. An
AbstractParsingStrategy has a single public pure virtual member function called parse
that takes a std::string parameter and returns a std::vector<string> by value.
8. Add the rename command (5 points): To receive credit, this command must be
implemented as a MacroCommand. The rename command will change the name of an
existing file (you cannot change it directly, this must be implemented as a
MacroCommand or you will get 0 credit). Rename can be invoked by the user with “rn”
as below:
$ rn <existing_file> <new_name_with_no_extension>
Where <existing_file> is replaced with the name of an existing file and
<new_name_with_no_extension> is replaced with the name the user would like the file
to be called (a file extension like.txt or .img will be tacked on to the name provided by the
CopyCommand). Renaming a file should do two things: First, copy the file with the copy
command giving the copy the correct new name. Second, remove the original file with
the remove command. To implement a MacroCommand with this functionality you will
need to:
● Implement a concrete class called “RenameParsingStrategy”
(RenameParsingStrategy.h/.cpp) that defines the interface provided by
AbstractParsingStrategy. The interface should be defined appropriately so that
given an input string like:
<existing_file> <new_name>
The parse function will return a vector containing the strings:
<existing_file> <new_name> // in index 0, used by the copy command
<existing_file> // in index 1, used by the remove command
● Update main to create a MacroCommand object configured with a
RenameParsingStrategy object as its AbstractParsingStrategy and a
CopyCommand as well as a RemoveCommand object as its command objects.
Add the MacroCommand to the CommandPrompt so it will be invoked when the
user provides “rn” as input
9. Add support for an additional MacroCommand of your choosing (5 points): Any
options supported by the individual commands should be supported by the Macro
command as well, if it makes sense to do so. Some useful command ideas I can think of
are:
a. Cat + ds - edit a file and then display it afterwards to see the edits.
b. Touch + cat - create a file and edit it immediately
c. Even crazier: touch + cat + ds
Update main to create a new MacroCommand object configured to support a parsing
strategy for the command you chose to implement and configure the CommandPrompt
to support your command. In your Readme, document what command you chose to
implement, how the command is invoked from the command prompt, and what tests you
ran to ensure it works properly. NOTE: If you need to create a new header/source file
for your parsing strategy, create them along side existing header files in
include/mockos/ and alongside existing .cpp files in /lib/mockos/
10. Updating main and testing (10 points): update main to configure the command prompt
with each of the above commands. Test your commands thoroughly. In your lab5.md
(docs/lab5.md) file, document the tests you ran as well as any errors/bugs you
encountered while working. Also, at the top of your Readme.md for lab 5 (docs/lab5.md),
list each group member’s name and describe how the work was split between the group
members.
a. Note: Make sure to avoid memory leaks, double deletions, etc.
i. What objects are allocated dynamically? (files? factories?
commandPrompt? Commands? Visitors? File system?)
ii. For each dynamically allocated object, when is it deallocated or when
should it be deallocated if it isn’t already?
11. Extra credit (5 points): Come up with an additional piece of functionality you would like
to add to the file system/command prompt that can be implemented cleanly using a
design pattern. Meet with and discuss your idea with Prof. Shidal to have it approved,
then implement it. No credit will be given without prior discussion and approval
with Prof. Shidal. Extra credit ideas must be discussed with Prof. Shidal before the
end of 5/3/2024. This should be done in-person, ideas will not be discussed over
email. When you come to discuss an idea, you should already have an idea of how
you will implement the added functionality and what design pattern you will use.
Some potential ideas to think about:
● Permissions on files - read only
● Copy on write
● Other common linux utilities like grep
● Symbolic links
● Aggregate statistics about the file system - total space required, etc.
● Write the in-memory files out to real files, read real files in to populate the file
system

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp







 

掃一掃在手機打開當前頁
  • 上一篇:代寫CPT204、代做Java編程設計
  • 下一篇:代做INFO1110、代寫Python程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
  • 短信驗證碼 豆包 幣安下載 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        久久久综合网| 久久精品国产亚洲一区二区三区| 在线免费不卡视频| 国产综合色产在线精品| 欧美激情综合色综合啪啪| 国产午夜一区二区三区| 国产精品网站视频| 国产精品magnet| 久久视频在线看| 99在线精品视频在线观看| 亚洲视频网站在线观看| 国产午夜精品美女视频明星a级| 欧美理论片在线观看| 国产一区亚洲一区| 91久久精品www人人做人人爽| 国产精品高清在线| 亚洲欧洲精品一区| 99香蕉国产精品偷在线观看| 在线视频你懂得一区二区三区| 欧美福利专区| 亚洲一区在线观看免费观看电影高清| 久久国产婷婷国产香蕉| 9色国产精品| 国产精品国色综合久久| 久久亚洲一区二区三区四区| 欧美日韩国产成人精品| 国产一区二区丝袜高跟鞋图片| 久久亚洲精品欧美| 亚洲午夜av| 久久精品在线| 国产日韩欧美一区在线| 午夜在线精品偷拍| 亚洲精品激情| 国产精品成人观看视频免费| 国产精品免费在线| 久久久久久久一区二区| 欧美激情视频一区二区三区不卡| 在线精品国产成人综合| 欧美色综合网| 欧美日韩一区自拍| 欧美午夜影院| 国产精品日本欧美一区二区三区| 亚洲愉拍自拍另类高清精品| 亚洲激情影视| 欧美国产一区在线| 亚洲国产高清视频| 亚洲成色最大综合在线| 亚洲自拍16p| 欧美日韩在线视频首页| 亚洲免费一区二区| 性色av一区二区三区| 欧美综合国产| 国产三级欧美三级日产三级99| 亚洲精品一区二区三区av| 国产情人综合久久777777| 在线精品高清中文字幕| 尤物视频一区二区| 欧美日韩一区二区视频在线| 在线播放一区| 亚洲一区在线免费观看| 亚洲午夜激情网页| 欧美日韩国产片| 看欧美日韩国产| 极品少妇一区二区| 欧美在线免费一级片| 国产精品资源在线观看| 亚洲欧洲精品一区二区| 亚洲一区二区三区精品在线观看| 一区二区三区四区五区精品| 在线成人av.com| 老司机精品视频一区二区三区| 午夜影视日本亚洲欧洲精品| 久久亚洲一区二区| 国产精品久久国产愉拍| 国产一区二区主播在线| 国产精品99久久久久久人| 国产精品有限公司| 老牛嫩草一区二区三区日本| 亚洲狼人精品一区二区三区| 亚洲一区二区三区四区五区午夜| 最新日韩在线视频| 国产精品第十页| 国产热re99久久6国产精品| 国产日韩欧美在线一区| 国产一区二区三区久久悠悠色av| 欧美在线视频在线播放完整版免费观看| 欧美日韩在线播放一区二区| 欧美日韩国产999| 亚洲欧美综合一区| 亚洲男人第一网站| 亚洲一区在线播放| 性做久久久久久| 欧美巨乳在线| 国产日本欧美一区二区三区在线| 亚洲精品女人| 亚洲天堂网站在线观看视频| 99综合电影在线视频| 99re亚洲国产精品| 亚洲国产合集| 伊人狠狠色丁香综合尤物| 亚洲欧美一区二区三区极速播放| 伊人天天综合| 国产婷婷97碰碰久久人人蜜臀| 欧美日韩精品二区| 欧美精选午夜久久久乱码6080| 欧美成人午夜激情在线| 在线欧美日韩| 国产精品成人v| 狠狠色丁香婷婷综合影院| 亚洲一区二区三区影院| 国产精品欧美一区喷水| 国产精品免费观看视频| 亚洲国产精品一区二区尤物区| 欧美激情四色| 中日韩午夜理伦电影免费| 日韩一级不卡| 国产一区二区三区视频在线观看| 欧美日本韩国一区二区三区| 久久女同互慰一区二区三区| 在线日韩中文字幕| 亚洲欧美激情视频在线观看一区二区三区| 国产一区二区av| 亚洲欧美日韩国产综合| 亚洲第一综合天堂另类专| 国产精品美女xx| 亚洲精品一区二区三区99| 国内精品嫩模av私拍在线观看| 久久躁狠狠躁夜夜爽| 亚洲精品视频在线观看网站| 夜夜嗨一区二区三区| 日韩视频一区二区| 欧美一区网站| 久久黄色网页| 国产区欧美区日韩区| 久久aⅴ国产紧身牛仔裤| 美女福利精品视频| 国产嫩草一区二区三区在线观看| 国产精品久久久亚洲一区| 欧美日韩和欧美的一区二区| 久久精品国产精品| 国产一区久久| 一区二区国产日产| 欧美精品一区二区三| 国产欧美日韩麻豆91| 欧美一区二区三区精品电影| 欧美性大战久久久久| 亚洲福利一区| 亚洲大胆视频| 亚洲美女诱惑| 欧美在线1区| 999亚洲国产精| 欧美大片在线观看一区二区| 在线视频日韩| 欧美激情第4页| 99视频精品全国免费| 欧美激情一区二区三区高清视频| 一本到高清视频免费精品| 欧美国产日本高清在线| 欧美日韩大陆在线| 国产日韩一区二区三区| 国产精品地址| 亚洲在线观看视频网站| 久久综合九色综合网站| 国产精品高清免费在线观看|