99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫Design and Implementation of File System

時(shí)間:2024-05-18  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Project 3: Design and Implementation of File System
April 16, 2024
1 Objectives
1. Design and implement a basic disk-like secondary storage server.
2. Design and implement a basic ffle system to act as a client using the disk services provided by
the server designed above.
3. Study and learn to use the socket API. Sockets are used to provide the communication mechanism
between (i) the client processes and the ffle system, and (ii) the ffle system and the disk storage
server.
2 Problem Statement
This project will be developed in several steps to help you understand the concepts and encourage
modular project development. You must adhere to the speciffcations given below. To share your
experiences effectively, you are recommended to keep a record of your insights during the coding. This
includes writing down any challenges encountered or bugs costing you a long time for debugging. By
doing so, you’ll avoid forgetting the details of your experiences when writing the report.
Step 1: Design a basic disk-storage system
Description: Implement, as an Internet-domain socket server, a simulation of a physical disk. The
simulated disk is organized by cylinder and sector.
• You should include the seek time in your simulation to account for track-to-track time (using
 usleep(3C), nanosleep(3R), etc). Make the seek time a value in microseconds, passed as a
command-line parameter to the disk server program.
• You should accept the number of cylinders and the number of sectors per cylinder from command
line parameters. Assume the sector size is ffxed as 256 Bytes.
• Your simulation should store the actual data in a real disk ffle, so you’ll need to accept a fflename
for this ffle as another command line option.
Hints:
1. You may ffnd that the mmap(2) system call provides you with the easiest way of manipulating
the actual storage. However, you are allowed to use ffle and ffle API to simulate the storage
representing your disk.
12. Given the challenges of socket programming, we have provided some functions. Please refer to
the code template provided on Canvas for how to use these functions. If you believe there are
bugs in the provided code, please contact the TA on time.
The Disk Server: The server should be able to understand the following commands and give
corresponding responses:
• I: Information request. The disk returns two integers representing the disk geometry - the number
of cylinders, and the number of sectors per cylinder.
• R c s: Read request for the contents of cylinder c sector s.
– The disk returns Yes followed by a whitespace and those 256 bytes of information, or No
if no such block exists.
– Hint: This will return whatever data happens to be on the disk in a given sector, even if
nothing has ever been explicitly written before.
• W c s l data: Write a request for cylinder c sector s. l is the number of bytes being provided,
with a maximum of 256. The data is those l bytes of data.
– The disk returns Yes to the client if it is a valid write request (legal values of c, s, and l),
or returns a No otherwise.
– In cases where l < 256, the contents of those bytes of the sector between byte l and byte
256 are undeffned, use zero-padded contents.
Hints:
1. The data format that you must use for c, s, and l above is a regular ASCII string, followed by
a space character. So, for example, a read request for the contents of sector 17 of cylinder 130
would look like R 130 17.
2. Strings are not equivalent to byte arrays: in a string, 0 represents the end of the string, but
this is not the case in a byte array. Besides, many bytes cannot be printed as visible characters.
Therefore, DO NOT use functions like strlen() or printf() on the data. The disk server will
not interact with users directly, so writing raw bytes to the ffle descriptor is acceptable.
The Disk Client: The client that you write here is mostly for the unit testing of the disk module.
The actual front-end user of this “disk” will be the ffle system implemented in the later steps. The
client should work in a loop, having the user type commands in the format of the above protocol, send
the commands to the disk server, and display the results to the user. Besides, you need to deal with
ASCII invisible characters. For example, add a command that prints data in binary or hexadecimal.
Otherwise, it would be difffcult to debug your disk server without such a debugging tool.
Command line:
a) Server:
./BDS <DiskFileName> <#cylinders> <#sector per cylinder> <track-to-track delay> <port=10356>
b) Client:
./BDC <DiskServerAddress> <port=10356>
2Figure 1: File System Architecture
Step 2: Design a basic ffle system
Implement an inode ffle system. The ffle system should provide operations including:
• Initialize the ffle system
• Create a ffle
• Read data from a ffle
• Write the given data to a ffle
• Append data to a ffle
• Remove a ffle
• Create directories
To provide the above ffle-like concepts, you need to operate on more than just the raw block
numbers that your disk server provides to you. You need to keep track of which blocks of storage are
allocated to which ffle, and the free blocks available on the disk.
Free space management involves maintaining a list of free blocks available on the disk. Two
alternative designs are suggested: a bit vector (1 bit per block) or a chain of free blocks. Associated
with each block is a cylinder# and sector#. “Writing to a ffle” is converted to “writing into a disk
location identiffed by (cylinder#, sector#)”. All this information should be stored on the disk, as the
ffle-system module in the memory is not persistent, and it could be shut down and restarted with data
lost.
The ffle system needs to support ffles of at least 16 KB in size, and fflenames must be at least 8
Bytes long.
Implement this ffle system server as another UNIX-domain socket server. On one hand, this
program will be a server for one UNIX-domain socket; on the other hand, it will be a client to the disk
server UNIX-domain socket from the previous parts, as shown below.
3The File-system Protocol: The ffle system server should be able to accept and respond to the
following commands.
• f: Format. This will format the ffle system on the disk, by initializing any/all of the tables that
the ffle system relies on.
• mk f : Create a ffle. This will create a ffle named f in the ffle system.
• mkdir d: Create a directory. This will create a subdirectory named d in the current directory.
• rm f : Delete ffle. This will delete the ffle named f from the current directory.
• cd path: Change the directory. This will change the current working directory to the path. The
path is in the format in Linux, which can be either a relative path or an absolute path. When the
ffle system starts, the initial working path is “/”. You need to handle “.” and “..” as special
cases.
• rmdir d: Delete a directory. This will delete the subdirectory named d within the current
directory.
• ls: Directory listing. This will return a listing of the ffles and directories in the current directory.
You are also required to return other meta information, such as ffle size, last update time, etc.
• cat f : Catch ffle. This will read the ffle named f, and return the data in it.
• w f l data: Write data into ffle. This will overwrite the contents of the ffle named f with the
l bytes of data. If the new data is longer than the data previously in the ffle, the ffle will be
extended longer. If the new data is shorter than the data previously in the ffle, the ffle will be
truncated to the new length.
• i f pos l data: Insert data to a ffle. This will insert l bytes of data into the ffle after the pos−1
th
character but before the pos
th
character (0-indexed). If the pos is larger than the size of the ffle,
append the l bytes of data to the end of the ffle.
• d f pos l: Delete data in the ffle. This will delete l bytes starting from the pos character
(0-indexed), or till the end of the ffle (if l is larger than the remaining length of the ffle).
• e: Exit the ffle system.
For testing/demonstration purposes, you need to implement a command-line client, similar to the
one that you wrote for the disk server in Step 1. The ffle-system client should work in a loop, allowing
the user to type commands in the format of the above protocol, send the commands to the ffle server,
and display the results to the user.
Hints: We suggest following the below steps to implement your ffle system:
• Implement an in-memory ffle system, reading commands via STDIN, where the data is stored in
memory and disappears after the system reboot.
• Write the data to a raw ffle to achieve the data persistence.
• Implement the ffle system as a server, accepting commands passed through a client.
4• Replace the raw ffle with the disk server implemented in Step 1. This should only require
modifying a few lines of code.
Command line:
a) Disk Server:
./BDS <DiskFileName> <#cylinders> <#sectors per cylinder> <track-to-track delay> <port=10356>
b) File-system Server:
./FS <DiskServerAddress> <BDSPort=10356> <FSPort=12356>
c) File-system Client:
./FC <ServerAddr> <FSPort=12356>
Step 3: Support multiple users in the ffle system
A real-world ffle system is supposed to store data for more than one user. In this step, you need to
make some changes to your ffle system so that it becomes a multi-user system. The key problem to
solve here is to separate the stored ffles and data for different users. Instead, how to support the
parallel operations by multiple clients is considered in the “Extension 2 - Multi-Clients” in Step 4 as
an optional extension. In other words, in this step, you can safely assume different users only connect
to and access the ffle system in sequential order. One client will ffnish the actions and disconnect
before another client establishes her/his connection and performs actions.
To support the multi-user feature, we ffrst need to design a data structure to store the user information,
 which should be stored in the ffle system, instead of memory. Then you need to provide
approaches and interfaces to log into your ffle system, create new users, delete users, etc.
Each user should have her/his home folder, own ffles, and so on. Regarding the ffle access control,
the users can share some ffles with other users, or make ffles only visible to themselves. You need to
design a ffle access protocol to control ffle read/write permissions.
Step 4: Optional extensions
In this step, we provide some optional extra functions to the basic ffle system. Implementing any of
the following functions will help you earn bonus points. Besides, you are encouraged to implement any
other additional functions/optimizations that are useful to your ffle system. Please clearly indicate
the optional functions you have implemented in your ffle system, and demonstrate your extensions
through empirical performance evaluation or qualitative analysis.
Extension 1 - Caching: Reading ffles can be expensive, incurring many I/Os to the (slow) disk.
Imagine an open example: without caching, every ffle open would require at least two reads for every
level in the directory hierarchy (one to read the inode of the directory in question, and at least one to
read its data). With a long pathname (e.g., /1/2/3/ ... /100/ffle.txt), the ffle system would literally
perform hundreds of reads to just open the ffle. To remedy what would be a huge performance issue,
you can use a region in the system memory to cache frequently accessed or important blocks. Similar
to the virtual memory mechanism, strategies such as LRU and different algorithms would decide which
blocks to keep in the cache. Implement a cache in the memory, select your page replacement algorithm
5for the cache, and share your design and performance evaluation (e.g., how many times you have
accelerated your file read operations?)
Extension 2 - Multi-clients: You have supported multi-users in step 3 which mainly focuses on
separating the user folders/files and user account management. Another thing you can do is to support
more than one user to use the file system at the same time. That means your file system server should
support parallel requests from multiple clients. Different from the shell problem in Project1, here we
have more challenges when more than one user logs in to your file system. For example, user A wants
to write a file, while user B wants to read the same file. There is a read/write conflict. You can
come up with a solution to solve this conflict. There are still some other problems like this. It’s really
difficult to handle all such synchronization situations, so we encourage you to try your best to consider
as many issues as possible and explain your solutions in the report.
Extension 3 - Journaling: Consider the crash-consistency problem, that is, how to update persistent
data structures despite the presence of a system crash. The system may crash or accidentally
power off between any two writes, and thus the on-disk state may only partially get updated. After the
crash, the system boots and wishes to mount the file system again. Given that crashes can occur at
arbitrary points through time, how do we ensure the file system keeps the on-disk image in a reasonable
state? Many modern file systems use the idea of journaling (also known as write-ahead logging), where
a sequence of updates is treated as a single indivisible unit (called transaction), ensuring that either
all of the updates are committed to the disk, or none of them are. Try to implement a journaling and
transactions mechanism in your file system.
3 Implementation Details
In general, the execution of the programs above is carried out by specifying the executable program
name followed by the command line arguments.
• Use Ubuntu Linux and GNU C Compiler to compile and debug your programs. GCC-inlineassembly
is allowed.
• See the man pages for more details about specific system or library calls and commands: sleep(3),
gcc(1), mmap(2), usleep(3), nanosleep(3), etc.
• When using system or library calls you have to make sure that your program will exit gracefully
when the requested call cannot be carried out.
• One of the risks of experimenting with forking processes is leaving unwanted processes hanging
which wastes system resources. Please make sure that each process/thread is terminated cleanly
when the program exits. A parent process should wait until all its child processes finish, print a
message, and then quit.
• Your program should be robust. If any of the calls fail, it should print an error message and exit
with an appropriate error code. Please always check for errors when invoking a system or library
call.
• Please ensure that your program can work correctly with the tests we provided and exit properly.
64 Material to be submitted
• Create a folder named Prj3_studentID that includes your source codes, Makefile, and report.
Use meaningful names for the files so their contents are recognizable. Then compress the folder
into a file named Prj3_studentID.tar, ensuring that only the folder itself is included in the tar
file.
• You are not required to submit the executables. Make sure your programs can be compiled with
the Makefile before the submission.
• Enclose a README file that lists the files you have submitted along with a one-sentence explanation.
Call it README.md.
• Please state clearly the purpose of each program at the start of the program file. Add comments
to explain your program.
• Test runs: You must show that your program works for all possible inputs. Submit online a
single typescript file clearly showing the working of all the programs for correct input as well as
a graceful exit on error input. Call it test.md or test.pdf.
• Submit a short report to present the analysis. You can also write down important methods and
observations you find useful when finishing your project. Call it report.pdf.
• We provide a code template for this project. Here’s how the file structure looks (you can feel
free to add other files you need):
Prj3 52202191xxxx
Makefile
README.md
report.pdf
test.md
step1
BDS.c
BDC.c
Makefile
step2
FS.c
FC.c
Makefile
step3
Makefile
...
step4
Makefile
...
• Submit your Prj3_StudentID.tar file on Canvas.
• Due date: 23:59 on May. 31, 2024.
• Demo slots: Around June 1, 2024. Demo slots will be posted later on a shared document.
Please sign up for one of the available slots.
 7• You are encouraged to present your design of the project optionally. The presentation time is
16:00-17:40, June 4, 2024 (Course meet time of the 16th week). Please pay attention
to the course website.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫COMP1005、代做Python/C++程序語言
  • 下一篇:大學(xué)生程序兼職群 大學(xué)生編程兼職群 大學(xué)生python兼職群
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評 開團(tuán)工具
    出評 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士1號線
    合肥機(jī)場巴士1號線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                欧美一二区视频| 亚洲精品大片www| 91国内精品野花午夜精品| 96av麻豆蜜桃一区二区| 成人精品视频一区| 色视频成人在线观看免| 在线看不卡av| 欧美精品日韩一本| 色婷婷久久久久swag精品| 精品乱码亚洲一区二区不卡| 2017欧美狠狠色| 亚洲色欲色欲www在线观看| 久久av老司机精品网站导航| 国产**成人网毛片九色| 日韩无一区二区| 成人免费一区二区三区在线观看| 亚洲国产人成综合网站| 91玉足脚交白嫩脚丫在线播放| 欧美夫妻性生活| 久久久久亚洲综合| 久久99久久久久久久久久久| 成人小视频免费观看| 欧美丰满一区二区免费视频| 亚洲人成网站精品片在线观看| 免费视频一区二区| av不卡在线观看| 国产人伦精品一区二区| 轻轻草成人在线| 99国产欧美久久久精品| 在线不卡免费av| 亚洲视频在线一区观看| 日本亚洲天堂网| 国产又黄又大久久| 欧美美女黄视频| 亚洲欧美激情小说另类| 亚洲不卡在线观看| 中文字幕日韩一区| 日韩欧美黄色影院| 亚洲小说欧美激情另类| 国产成人鲁色资源国产91色综| 日韩免费在线观看| 香蕉成人伊视频在线观看| 99re热这里只有精品视频| 久久久一区二区| 亚洲精选免费视频| 91精品国产乱| 香蕉成人啪国产精品视频综合网 | 成人国产免费视频| 欧美一区二区成人6969| 亚洲靠逼com| 麻豆一区二区三| 精品国产精品网麻豆系列| 亚洲大片精品永久免费| bt7086福利一区国产| 中文一区二区完整视频在线观看| 日本亚洲免费观看| 精品精品国产高清a毛片牛牛| 日韩激情av在线| 欧美日韩一卡二卡三卡| 日本欧美大码aⅴ在线播放| 欧美日韩在线播放| 一区二区免费看| 在线成人免费视频| 欧美aaaaaa午夜精品| 欧美高清激情brazzers| 国产精品影视网| 2023国产精华国产精品| 激情久久五月天| 国产精品人妖ts系列视频| 国产一区二区三区黄视频| 欧美精品一区二区三区蜜桃视频| 成人国产精品免费观看视频| 国产欧美精品一区aⅴ影院| 国产成a人无v码亚洲福利| 亚洲免费av高清| 欧美影视一区二区三区| 亚洲电影一区二区| 精品国产麻豆免费人成网站| 久久爱www久久做| 久久精品在线观看| 日本韩国视频一区二区| 亚洲高清不卡在线| 69堂成人精品免费视频| 成人亚洲精品久久久久软件| 国产精品久久午夜| 欧美性感一区二区三区| 国产v综合v亚洲欧| 亚洲激情第一区| 99re这里只有精品6| 免费亚洲电影在线| 国产婷婷色一区二区三区| 免费人成在线不卡| 一区二区在线观看av| 宅男噜噜噜66一区二区66| 亚洲图片欧美色图| 中文字幕一区二区三区四区| 欧美日韩午夜在线| 视频一区在线播放| 欧美国产亚洲另类动漫| 欧美亚洲高清一区二区三区不卡| 中文字幕一区二区三区精华液| 欧美日韩免费不卡视频一区二区三区| 日韩vs国产vs欧美| 亚洲一卡二卡三卡四卡无卡久久| 日韩欧美一级在线播放| 不卡一区在线观看| 国产精品影视天天线| 亚洲国产色一区| 国产欧美视频一区二区| 精品久久久久久久久久久久包黑料| 国产91精品一区二区麻豆网站| 欧美激情一区二区在线| 久久尤物电影视频在线观看| 99久久国产免费看| 一区二区免费在线| 一区二区三区在线观看动漫| 2023国产精品视频| 26uuu欧美日本| 欧美挠脚心视频网站| 国产精品18久久久久久久网站| 蜜桃av一区二区| 亚洲综合一区二区三区| 欧美精品一区二区蜜臀亚洲| 欧美精品自拍偷拍| 91在线视频免费观看| 午夜欧美大尺度福利影院在线看| 亚洲三级在线免费| 国产欧美日韩三区| 在线视频欧美精品| 91丨porny丨蝌蚪视频| 激情成人午夜视频| 中文字幕一区二区三区不卡在线| 精品国产麻豆免费人成网站| 欧美视频一区二区三区四区 | 日韩欧美在线综合网| 欧美在线综合视频| 精品无人码麻豆乱码1区2区 | 色噜噜狠狠色综合中国| 国产成人精品网址| 亚洲制服丝袜在线| 亚洲精品久久久蜜桃| 国产精品嫩草99a| 亚洲精品视频观看| 亚洲欧洲中文日韩久久av乱码| 亚洲视频香蕉人妖| 日韩美女久久久| 国产精品福利电影一区二区三区四区 | 久久精品一区二区三区四区| 国产亚洲欧美一级| 国产欧美日韩精品在线| 欧美蜜桃一区二区三区 | 亚洲va欧美va人人爽| 一区二区在线观看不卡| 肉肉av福利一精品导航| 五月婷婷色综合| 天天色天天爱天天射综合| 亚洲成人av一区| 日本亚洲最大的色成网站www| 国产精华液一区二区三区| 国产很黄免费观看久久| 日韩电影在线免费看| 国产一区二区0| 国产99久久久久| 日韩理论片网站| 亚洲一区二区三区国产| 亚欧色一区w666天堂| 国产最新精品免费| 成人午夜视频免费看| 91色乱码一区二区三区| 日韩欧美一区二区免费| 久久精品在线观看| 精品成人一区二区三区四区| 亚洲综合在线免费观看| 天堂成人免费av电影一区| 成人性生交大片免费看中文网站| 不卡一区在线观看| 欧美性猛交xxxx黑人交| 中文子幕无线码一区tr| 亚洲午夜在线电影| 久久国产福利国产秒拍| 欧美无砖专区一中文字| 欧美成人vr18sexvr| 国产寡妇亲子伦一区二区| 欧美一区二区三区免费视频| 久久蜜桃av一区二区天堂| 91精品国产一区二区三区| 国产欧美一区二区三区在线看蜜臀| 18欧美乱大交hd1984| 国产裸体歌舞团一区二区| 91啪在线观看| 精品污污网站免费看| 精品国产免费久久| 亚洲一区二区在线播放相泽| av在线综合网| 国产日韩欧美综合在线| 久久激情五月激情| 91精品久久久久久蜜臀| 日韩在线一区二区| 欧美精品乱码久久久久久| 亚洲成人资源网|