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

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

EEE6207代做、代寫C++程序設計
EEE6207代做、代寫C++程序設計

時間:2025-03-07  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



EEE6207 Coursework Assignment AY2024-2025

You will write and test a small C program that implements a model of a number of independent Producer and Consumer entities that fill and drain a FIFO queue.  C models are often used to emulate the behaviours of various hardware, software and distributed computing systems, including the operating systems themselves. Examples include determining how big a buffer should be sized so it doesn’t cause stalling and underutilisation in a new hardware microarchitecture or designing a new scheduling or i/o strategy within user or operating system software.

 We won't be doing any analysis on the model we write here in a way a microarchitect or operating system architect would. Still, this sort of exercise, which includes an element of random traffic modelling, is definitely something you might see used to help size a system or even determine how big a run queue in an operating system or web server implementation might be.

The coursework will utilise concepts of multiprogramming and synchronization that have been covered in lectures and notes and draw on practical programming examples primarily from the labs on processes, threads and synchronization.

Model Specification

Implement a C-code model that emulates a system with n Producers and m Consumers which interacting through a shared queue 

Each Producer process (Pn) should generate a stream of random integers, writing them into a shared queue. It should then wait for a random number of seconds (up to some specified maximum value) before attempting its next write.
Each entry into the queue should have a priority (low, normal, high} assigned to it
Each Consumer process (Cn) should read an item from the shared queue if one is available and display it to the standard output. It should then wait for a random number of seconds (up to some specific maximum value) before attempting its next read. 
The queue should be implemented as a first in, first out, FIFO, data structure. 
If there is more than one item in the queue a high priority entry should be read before any normal or low priority entries
A Consumer Process must not read from an empty queue.
A Producer Process must not write to a full queue.

To avoid the model from consuming unnecessary resources on the computing platform on which it will be run, your model must include a mechanism to stop its execution once a specified Timeout Value (in seconds) has been reached.

Run time behaviour of the model should be controlled through a set of  command line arguments specifying the following parameters:

Number of Producers (between 1 and 4)
Number of Consumers (between 1 and 4)
Maximum entries in the queue (between 1 and 20)
Timeout Value in seconds

The following default parameter values should be built into the model. These should be easily identifiable (using appropriate comments and code structures such as include files) such that they can be configured  through recompilation of the model source code.

Maximum wait period between Producer writes 4 seconds
The maximum wait period between Consumer reads 4 seconds
Maximum number of Producers: 5
Maximum Number of Consumers 4
Range of Random Number generated by Producer 0 to 9

Your model should display an appropriate level of user-visible information while it is executing and a concise, readable summary of the model run itself. This must include the following information.

Run time Command line parameters.
Compiled model parameters
Time  & date of the execution run
Current user name & hostname
Indication of the current state of Producers, Consumers and the Queue

Comments & Code Structure

Please make sure you comment your code well – readability is a part of the assessment criteria. Comments make your code readable both to yourself and others. As noted, you should especially make it clear where compile-time options that control model behaviour are identified and consider the use of an appropriate code structure that provides modularity. Hint: A random number needs to be generated as data in the Producer process, and as a variable random wait in both the Producer and Consumer processes, one function will suffice.

Error Handling

We have emphasised the need to ensure the code handles error conditions, for example, those returned from system calls, well. What are you going to tell the user if a function or system call you use does not return the expected value? 

Model Verbosity

Your model should output an appropriate level of information to the user as it is running so she can track progress. It is up to you, but a suggestion would be to log when a Producer writes to the queue, including which producer it is and what it writes. This should, of course, include when a consumer writes to the standard output. Summarising the command line parameters for the model run is required.

Debugging

If your code is ‘working’ it should produce expected outcomes. How will you or a user debug a problem? You should include additional detailed instrumentation in your code to provide information about what is happening and a mechanism to turn this on or off – this could be a compile time option or a run time argument, your choice. The default behavior however should be off  - see the comment about Model Verbosity above.

Tidying up
Before you program exits it should exhibit good behaviour and clean up after itself. If for example it has created thread resources or synchronization objects it should cleanly terminate or relase these,  returning the associated memory resources to the operating system.


Assessment Criteria

Your coursework should be submitted no later than 5pm on Friday February 7th (this is the last day of Semester 1). This assignment is worth 25% of the total module mark and is a must pass element.

You will submit a zipfile (not a .rar or tarfile) bundle to a blackboard assignment. This contains the following sections. You will be provided with the exact details of how to do this through the assignment portal 

a)File(s) containing your (appropriately commented) c code that implements the specified model functionality, this should include error handling and instrumentation.
b)A short report describing your code structure, key features of your model implementation and commentary on your two output run logs. {Max 200 words}
c)Two separate run logfiles that use different command line parameters demonstrating the functional execution of your code 

Your submitted c-code will be

Run through MOSS to check the code for similarity (plagiarism check). (https://theory.stanford.edu/~aiken/moss/)
Recompiled and re-run to check it works consistently with your log files and with a separate run using a different parameter set
    
Marking scheme – Must pass threshold for MSc module is 50%

C code and associated report 65%
Run logs and Code rerun 45%


Hints

This assignment will almost certainly require you to search to identify some specific programming constructs that you might not have used before or encountered in the practical lab exercises. It uses the foundational concepts of threads and synchronisation mechanisms that you have learned in those lab exercises, including mutex and semaphores, and the principles outlined in the lectures and notes.

The queue in your model should be safely and efficiently controlled using appropriate synchronization mechanisms. You  could, for example, include mutexs and or semaphores.

Generating a logfile: You can pipe the output printf’d to the std_out terminal window into a file using the > operator in the shell. For example ./a.out > logfile will redirect the stdout into the file logfile

Generating user id and hostname can be accomplished using the getpwuid(getuid()) and gethostname() functions please put these in it identifies the runs as yours.

If (MY_PARAMETER) {
// do something
}
Is a simple way to insert conditional instrumentation code you only want to happen when you require the additional messages to be output.

Approach

You should consider approaching this assignment in a modular fashion. Break the problem down. write and test component functions as small independent chunks before integrating them together. For example, the random function mentioned earlier can be independently checked, as could, for example, the code to create a set of threads that would model independent consumers or producers or that which parses and displays the run time command line arguments. 

It is entirely possible that there will be more error handling and optional debugging/ instrumentation lines of code and comments than there are functional lines of code

The number of lines of code you end up with obviously depends a little on style but a couple of fully commented – fully instrumented model implementations are in the range of 250-350 lines of code quite a few of these are things like #includes #defines etc

You will find examples of almost all of the building blocks need to complete this assignment in the practical class notes.

If you are unsure about any aspect of the assignment please reach out.

We will run additional drop in sessions for the remaining weeks of the semester

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

掃一掃在手機打開當前頁
  • 上一篇:點點借款全國客服電話-點點借款24小時服務熱線電話
  • 下一篇:INT5051代做、代寫Python編程設計
  • 無相關信息
    合肥生活資訊

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

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

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

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

          欧美三级网址| 国产精品久久午夜夜伦鲁鲁| 免费永久网站黄欧美| 久久精品麻豆| 欧美 日韩 国产 一区| 欧美激情1区2区| 亚洲二区免费| 欧美大成色www永久网站婷| 亚洲欧美一区二区三区在线| 亚洲欧洲久久| 伊人成人开心激情综合网| 国产精品成人播放| 国产资源精品在线观看| 亚洲激情一区二区三区| 亚洲一区二区3| 久久人人97超碰国产公开结果 | 91久久线看在观草草青青| 日韩一级黄色av| 亚洲视频一区二区在线观看 | 亚洲欧洲一区二区三区| 一区二区在线观看视频| 国产精品一区二区三区久久久| 欧美日韩国产成人精品| 鲁大师影院一区二区三区| 久久久久久999| 久久精品av麻豆的观看方式| 香蕉成人久久| 欧美一级片一区| 先锋影音网一区二区| 亚洲午夜免费视频| 亚洲午夜精品在线| 国产精品人人爽人人做我的可爱 | 欧美在线影院| 欧美日韩在线免费视频| 1204国产成人精品视频| 中文一区在线| 欧美精品日韩综合在线| 国语精品中文字幕| 亚洲一区在线免费| 欧美日韩亚洲国产精品| 久久久久久久一区二区| 一区二区三区欧美亚洲| 亚洲欧美日本伦理| 久久不见久久见免费视频1| 久久久在线视频| 欧美大片免费观看| 亚洲日本aⅴ片在线观看香蕉| 久久国产一区二区三区| 国产深夜精品| 欧美在线观看天堂一区二区三区 | 欧美中文字幕在线观看| 国产精品久久久久毛片软件| 亚洲精品欧美专区| 欧美大片免费看| 最新69国产成人精品视频免费| 久久精品中文字幕一区| 国产日韩精品一区二区| 亚洲欧美自拍偷拍| 国产精品一区毛片| 午夜精品久久久久久久男人的天堂 | 另类图片综合电影| 久久精品国产精品亚洲精品| 欧美v亚洲v综合ⅴ国产v| 欧美天天在线| 黄色资源网久久资源365| 99精品视频免费观看视频| 亚洲免费在线视频一区 二区| 久久精品一区二区国产| 欧美激情日韩| 国内精品**久久毛片app| aⅴ色国产欧美| 久久精品欧美| 国产精品99免视看9| 亚洲第一福利社区| 亚洲欧美文学| 欧美日韩国产精品自在自线| 激情五月婷婷综合| 午夜精品福利电影| 欧美日韩一区二区视频在线 | 亚洲一区二区黄| 欧美福利一区| 激情视频一区| 小嫩嫩精品导航| 国产精品观看| 一区二区三区欧美视频| 另类尿喷潮videofree| 国内精品福利| 久久国产精品久久久| 国产精品久久久久毛片软件| 一区二区三区视频在线观看| 老牛国产精品一区的观看方式| 国产精品一区二区三区四区五区| 亚洲欧洲精品一区二区三区不卡| 久热精品视频在线| 尤物99国产成人精品视频| 欧美一区二区在线免费观看| 国产精品久在线观看| 亚洲午夜国产成人av电影男同| 欧美精品久久久久a| 亚洲欧洲在线一区| 欧美华人在线视频| 99国产精品一区| 欧美日韩调教| 亚洲天堂偷拍| 国产精品久久久久aaaa| 亚洲一区在线免费| 国产伦精品一区二区三区免费 | 亚洲一区二区免费在线| 欧美视频免费在线| 亚洲性色视频| 国产日韩一区二区| 国产欧美在线| 欧美精品一区二区三| 久久精品国产久精国产爱| 亚洲视频免费看| 亚洲欧洲一区二区三区| 国内自拍亚洲| 国产精品视频一区二区三区| 欧美日韩亚洲精品内裤| 男女精品网站| 久久一区中文字幕| 欧美在线视频在线播放完整版免费观看 | 亚洲精品美女在线观看| 永久91嫩草亚洲精品人人| 国产精品一区二区在线观看网站 | 在线午夜精品自拍| 亚洲精品国产品国语在线app| 国产在线播放一区二区三区| 国产精品剧情在线亚洲| 国产精品v欧美精品v日本精品动漫| 久久综合国产精品| 久久久国产一区二区| 久久国产加勒比精品无码| 亚洲欧美一区二区三区在线| 亚洲永久免费观看| 亚洲一区二区精品| 亚洲一区欧美一区| 午夜视频一区二区| 亚洲欧美日韩在线| 欧美一区二区观看视频| 久久激情五月丁香伊人| 久久成人精品视频| 久久全国免费视频| 欧美chengren| 欧美日韩在线一二三| 国产精品久久久久久五月尺| 国内精品伊人久久久久av影院| 性欧美18~19sex高清播放| 亚洲乱码国产乱码精品精| 国产欧美日韩视频在线观看| 欧美精品日韩综合在线| 久久久久久久久久久久久久一区 | 老牛影视一区二区三区| 亚洲一区二区三区四区中文| 亚洲精品一级| 在线观看成人av| 国产亚洲欧美在线| 亚洲伊人久久综合| 一区二区激情| 欧美一区二区三区成人| 久久久青草青青国产亚洲免观| 美女黄毛**国产精品啪啪| 欧美精品激情| 国产伦精品一区二区三区照片91 | 欧美在线综合视频| 欧美成人免费在线视频| 国产精品国色综合久久| 国产一区二区三区成人欧美日韩在线观看 | 国产精品入口| 好吊色欧美一区二区三区四区| 亚洲国产天堂久久综合网| 欧美激情四色 | 国产精品久久久久久久久久妞妞| 欧美电影在线观看完整版| 模特精品在线| 欧美成人首页| 欧美日韩1区| 欧美日韩一区二区三区四区在线观看| 欧美激情按摩| 欧美色欧美亚洲另类二区 | 欧美日本国产视频| 欧美日韩一区二区视频在线| 欧美日韩www| 欧美日韩一区不卡| 国产精品永久入口久久久| 国产日韩欧美中文在线播放| 国产中文一区| 在线日本成人| 亚洲最黄网站| 午夜精品网站| 米奇777在线欧美播放| 欧美国产日韩a欧美在线观看| 欧美日韩午夜剧场| 国产欧美在线看| 亚洲电影专区| 亚洲欧美视频一区二区三区| 欧美在线视频一区二区| 欧美不卡视频一区| 国产精品久久久久久久久免费樱桃 | 国产综合欧美|