1. Homepage
  2. Programming
  3. ICS 33: Intermediate Programming with Python - Project 1: Calling All Stations

ICS 33: Intermediate Programming with Python - Project 1: Calling All Stations

Engage in a Conversation
USUCIUniversity of California IrvineICS 33Intermediate Programming with PythonICS33PythonCalling All Stations

ICS 33 Winter 2023
Project 1: Calling All Stations CourseNana.COM


Introduction CourseNana.COM

When I first started learning to write programs in the 1980s, software systems were, by and large, written to run a single computer. It would be necessary for a program to communicate with its computer's main memory, and perhaps with peripheral devices like disk drives, but usually not any farther than that. Communication between computers was much less common, with techniques supporting it much less well-known. While computer networks did exist in those days, they were substantially less common and ran at a tiny fraction of the speed of the networks in place today, which meant that even well-heeled people and organizations couldn't use them in the ways we take for granted today; the bandwidth simply wasn't there at any price. CourseNana.COM

Today, we have ubiquitous high-speed connectivity, allowing distributed systems to be a common part of the real-world software landscape. In a distributed system, programs run on many machines and collaborate to solve a problem. The programs on each machine run separately, which means that they can make simultaneous progress, but this is a double-edged sword. CourseNana.COM

  • Ten identical computers can employ ten times as much raw effort as one can. If all ten are running full tilt, ten times as many computations can be performed in the same amount of time.
  • At any given time, each computer can only access what's stored in its own main memory, so if one of them needs information stored only within the other, communication (via a network) will need to take place.

In other words, in terms of raw work, the effect of running on many computers is multiplicative; the problem is that the raw work of one computer will only be useful if it's coordinated with the raw work being done by the others. Just like when multiple people collaborate on a task, if there's no agreement about who will do what, you can end up with duplicate effort, with two people working on the same task. If there are dependencies between tasks — one task can't be started until another is finished — then coordination will be needed, so that things will be done in the right order, and so that the output from the first can be made available as input to the second. So, an important part of any distributed system is coordinating these kinds of things, which requires careful design before the system runs, as well as computation and communication bandwidth for the coordination while it runs. CourseNana.COM

the way, you'll continue to build on your skills from prerequisite coursework by making the appropriate design decisions (e.g., determining which of Python's built-in data structures might best help you solve the various parts of the problem, deciding how best to organize your program into modules, classes, functions, and so on). Additionally, you'll continue to develop your abilities to test your programs in an automated fashion by writing unit tests, employing a few techniques that we've learned more recently to widen the reach of what can be verified by your automated tests.
CourseNana.COM


A simulation of a distributed system CourseNana.COM

simulation is a program that executes a simplified model of some reality, usually with the goal of allowing us to explore some aspect of that reality without having to actually experience it. There are lots of reasons why we might want a simulation. We can use one for the purposes of entertainment, like how we might use a flight simulator to allow us to experience the feeling of flight without purchasing an airplane and obtaining a pilot's license; we might instead use one to explore the impact of a potential change to a business process without having to make the change, so we can see ahead of time whether the change is likely to be profitable. (Of course, what we learn from a simulation is only useful if our model matches the reality of what we're simulating — if our model mischaracterizes our customers' actual reaction to the change in our business process, say, then our simulation will mislead us into making poor decisions — but that's a deep topic for other courses.) CourseNana.COM

In our case, we'd like to explore one aspect of how distributed systems behave without having to obtain multiple machines, write coordinated programs to run on them, and connect them via a computer network. So, rather than setting all of that up, we'll write a program that boils our problem down to its essence, with simulated devices pretending to communicate with each other, according to a set of rules that will be a simplification of reality, but that will allow our program to have a result that we hope will be indicative of reality. (Since we won't ultimately be using that result for anything beyond this project, there's less pressure on us to define our simulation model accurately; it's more important that we have a definitive result, and that we learn something about the nature of how simulations are built and tested.) CourseNana.COM

The simulation model CourseNana.COM

Our simulation model is based around a few concepts, which we'll need to understand before we can proceed into the details of how to implement and test our simulation. CourseNana.COM

  • We're simulating a distributed system made up of devices, which we'll assume are Internet-connected electronic devices that are able to communicate with each other individually (i.e., one device can send a message to another device). It's not particularly important to us what the devices do otherwise; we only care that they're able to communicate with one another.
  • Each device has a device ID, which is a non-negative integer value that uniquely identifies it.
  • When one of the devices detects an issue that will potentially affect other devices, it raises an alert, with the goal of making all of the other devices aware of the issue. To do that, it sends a message to some subset of the devices, which, in turn, send messages to other devices, and so on, in a process that we call propagation. That way, if there are thousands of devices, the alerting device doesn't have to send thousands of messages itself; instead, it can send a message to a few of them, then rely on them to spread the word. (While ours is a dramatic simplification, this is at least a little bit similar to how peer-to-peer protocols like BitTorrent work.)
  • Each device is configured to propagate alerts and cancellations to a predefined collection of other devices, which we'll call its propagation set.
  • Whenever a device receives an alert or cancellation, it immediately notifies all of the devices in its propagation set unless it's previously received a cancellation of that same alert. We'll say that this introduces a delay into the process, which is to say that when a device sends a message at some particular time, it will be received at some later time. 

So, in general, there's a straightforward effect that we can expect from these rules. When a device raises an alert, it begins propagating among the devices, continuing to propagate — even amongst devices that have already been made aware of it — until all of the devices have been notified of its cancellation. Because communication takes time, there will naturally be a delay between the alert being raised and all devices being aware of it, just as some devices will continue propagating canceled alerts until they've been made aware of the cancellation. (We see the same kinds of effects in any kind of distributed organization, whether it's made up of computers or people; some members will be acting on outdated information at least some of the time.) CourseNana.COM

As an example, we might have four devices, which we'll call Device 1, Device 2, Device 3, and Device 4, for the purposes of discussion. Let's suppose that the propagation sets are configured as follows. CourseNana.COM

  • Device 1 propagates to Device 2 with a delay of 750 milliseconds.
  • Device 2 propagates to Device 3 with a delay of 1,250 milliseconds.
  • Device 3 propagates to Device 4 with a delay of 500 milliseconds.
  • Device 4 propagates to Device 1 with a delay of 1,000 milliseconds.

Now, suppose Device 1 raises an alert at time 0 (i.e., immediately as the simulation begins). What happens next is a cascade of communication amongst devices, which we can simulate by hand to understand how our simulation model is meant to work. CourseNana.COM

  • Initially, at time 0, Device 1 is aware of the alert, but no other devices are aware. It's time for propagation to commence, so Device 1 sends a message to Device 2.
  • Device 2 receives the message from Device 1 at time 750 (i.e., 750 milliseconds after the start of the simulation). At this point, both Device 1 and Device 2 are aware of the alert, but no other devices are. Device 2 now needs to propagate the alert, so it sends a message to Device 3.
  • At time 2,000, Device 3 receives a message from Device 2 indicating the alert (1,250 milliseconds after it was sent), which triggers Device 3 to propagate it.
  • At time 3,500, Device 1 receives the message from Device 4 indicating the alert (1,000 milliseconds after Device 4 sent it). Because Device 1 is aware that the alert has been canceled, it doesn't propagate the alert.
  • At time 4,200, Device 3 receives the message from Device 2 indicating the cancellation (1,250 milliseconds after Device 2 sent it). Because this is news to Device 3, it propagates the cancellation to Device 4.
  • At time 4,700, Device 4 receives the message from Device 3 indicating the cancellation (500 milliseconds after Device 3 sent it). Because it hadn't seen it before, Device 4 propagates the cancellation to Device 1.
  • At time 5,700, Device 1 receives the message from Device 4 indicating the cancellation (1,000 milliseconds after Device 4 sent it). Since this is a cancellation that Device 1 is already aware of, the message isn't propagated any further.
  • There are no longer any messages in flight, so, until there's another alert, all will remain quiet.

There are a couple of things worth noting about this example. CourseNana.COM

  • Because each device is dealing only with limited information — it can only know what it's been told by other devices — the alert continued to be propagated for a while even after the original device canceled it. While we could limit this effect by propagating the message more widely (e.g., each device could send more than one message, for example) or more quickly (e.g., by reducing the delays somehow), this is essentially unavoidable in a distributed system where each device is acting only on its own local knowledge.
  • The simplicity of our propagation rules — propagate anything you haven't seen before — leads to some wasteful behavior, such as propagating the cancellation back to the original device that issued it (which will surely know about it already). In a practical situation, this might cause us to redesign our protocol a bit, but we'll skip that problem here, except to take note of how our simulation is already giving us actionable advice about our design; that's part of what makes simulations (even "simulation-by-hand," like we're doing here) so useful, by helping us to see potential downsides of our ideas before we've committed the time and effort to fully implement them.

Tightening the screws in our simulation model CourseNana.COM

Because we want our program to have a deterministic result — given any input, we always want the simulation to produce the same output — we'll need to define a few more rules around how we handle things that are scheduled to happen at the same time. CourseNana.COM

  • If a device is scheduled to send messages and receive messages at the same time, all messages will be received by that device before any is sent.
  • When two cancellations or two alerts are received simultaneously, their descriptions are compared lexicographically (i.e., using <) and the "lesser" one is processed first. So, for example, the alert Boo would be processed before the alert Hello, because 'Boo' < 'Hello' is True.
    • When two cancellations or two alerts with the same description are received simultaneously, the one sent by the smaller device ID is processed first.
  • If two alerts or two cancellations are scheduled to be initiated at the same time, the one being initiated by the device with the smaller device ID is initiated first. If they're being initiated by the same device, the alert with the lexicographically "lesser" description (e.g., 'Boo' before 'Hello') is initiated first.
  • If an alert or cancellation is scheduled to be propagated by one device to two other devices at the same time, the propagation to the device with the smaller device ID occurs first.
  • If an alert and a cancellation are scheduled to be initiated at the same time, the cancellation is initiated first.

Getting started CourseNana.COM

Near the top of this project write-up, you'll find a link to a Git repository that provides the starting point for this project. Using the instructions you followed in Project 0 (in the section titled Starting a new project), create a new PyCharm project using that Git repository; you'll do your work within that PyCharm project. CourseNana.COM

You won't find that there's much provided code: Just a skeletal project1.py file, an empty test_project1.py file in which you could write unit tests for the code in project1.py, one sample input and one sample output file, and a .gitignore file to help you curate what does (and doesn't) end up committed into your Git repository. Requirements about how you organize your solution will follow a little later in this write-up. CourseNana.COM


The program CourseNana.COM

Your program will begin by reading one line of input from the Python shell (e.g., via a call to the built-in input function), specifying the path to an input file that describes the work that your program will be doing. Do not print a prompt or anything else; read this input before writing any output. CourseNana.COM

If the specified file doesn't exist, your program will then print one line of output FILE NOT FOUND and then terminate. Otherwise, your program will have a simulation to run, with everything driven by what's in that input file, so let's take a look at what you can expect to be in it. CourseNana.COM

The input CourseNana.COM

Your program's input file consists of lines of text. Each file will fit one of six characteristics, described below. CourseNana.COM

  • A line can begin with the word LENGTH, followed by a space, followed by a positive integer value. This line establishes the length of the simulation, specified in minutes. So, for example, the line LENGTH 10 would mean that the simulation will run for 600,000 simulation milliseconds, numbered 0 through 599,999, with the simulation ending (and nothing else happening) at time 600,000.
  • A line can begin with the word DEVICE, followed by a space, followed by a non-negative integer value. These lines establish the existence of one device in our simulation; the integer is the device ID that uniquely identifies the device.
  • A delay, expressed as a positive integer number of milliseconds, indicating how long it will be before the propagated alert or cancellation will be received by the second device. ("Positive" means that it will never be zero.)
  • So, for example, the line PROPAGATE 1 2 100 indicates that device 1 will propagate any alert or cancellation to device 2, and that device 2 will receive it 100 milliseconds later.
  • A line can begin with the word ALERT, followed by three values, separated by spaces.
    • A device ID that will be scheduled to raise an alert at a particular time during the simulation.
    • An arbitrary string of (non-space) characters specifying the description of the alert.
    • The simulation time at which the alert will be raised, which means that the specified device will begin the process of propagating it. This time is given as a non-negative integer number of milliseconds after the start of the simulation. ("Non-negative" means that it might be zero.)
    So, for example, the line ALERT 1 OhNo 5000 indicates that device 1 will raise an alert with the text OhNo at simulation time 5000.
  • A line can begin with the word CANCEL, followed by three values, separated by spaces.
    • A device ID that will be scheduled to cancel an alert at a particular time during the simulation.
    • An arbitrary string of (non-space) characters specifying the description of the alert being canceled.
    • The simulation time at which the cancellation will occur, which means that the specified device will begin the process of propagating the cancellation. This time is given as a non-negative integer number of milliseconds after the start of the simulation. ("Non-negative" means that it might be zero.)
    So, for example, the line CANCEL 1 OhNo 6000 indicates that device 1 will cancel an alert with the text OhNo at simulation time 6000.
  • A line can be blank or consist only of spaces. These lines are used for readability of the input file, and can be ignored by your program when detected.
  • A line can begin with a # character, in which case it can be followed by zero or more characters of text with no restrictions. These lines are used as comments in the input file — similar to comments in a Python program — and can be ignored by your program when detected.
  • No pair of alerts will have the same description.
  • No pair of cancellations will have the same description.
  • No propagation rules, alerts, or cancellations will make reference to device IDs that are not also defined elsewhere in the input file.

The output CourseNana.COM

As your simulation progresses, your program will produce output that describes messages as they're sent and received, printing that output to the standard output. There are four interesting events in our simulation, each of which warrants a line of output. CourseNana.COM

  • A device receives an alert.
    • @100: #1 RECEIVED ALERT FROM #2: OhNo means that, at simulation time 100, device 1 received the alert with description OhNo from device 2.
  • A device sends or propagates an alert.
    • @50: #2 SENT ALERT TO #1: OhNo means that, at simulation time 50, device 2 sent the alert OhNo to device 1.
  • A device sends or propagates a cancellation.
    • @150: #2 SENT CANCELLATION TO #1: OhNo means that, at time 150, device 2 sent a cancellation of the alert with description OhNo to device 1.
  • The simulation ends.
    • @600: END means that, at time 600, the simulation ended.

Your program's output must exactly match this output specification, character-for-character, with a newline on the end of every line (including the last one). Spelling, capitalization, and spacing are all relevant. CourseNana.COM

How the simulation ends CourseNana.COM

Your simulation will continue running for its scheduled duration, ending at the scheduled time, regardless of whether there are still messages propagating. CourseNana.COM

If the simulation is scheduled to end at a particular time, nothing else happens within that same simulation millisecond — nor after that time — even if scheduled. For example, if the simulation length is 10 minutes, that means there are 600,000 simulation milliseconds (10 minutes * 60 seconds * 1,000 milliseconds per second = 600,000 milliseconds), numbered from 0 through 599,999. The only thing that happens at time 600,000 is the ending of the simulation. CourseNana.COM

Sample input and output CourseNana.COM

After you create a PyCharm project from the provided Git bundle, you'll find a directory named sample that contains two files, sample_input.txt and sample_output.txt, which are a sample input and output, respectively. The sample_input.txt file represents the example scenario described in the section titled The simulation model above. If you run your program using sample_input.txt as the input file, its output should exactly match (on a character-for-character basis) what's in sample_output.txt. CourseNana.COM

We will not be providing additional samples; beyond this, testing is your responsibility, as it usually is when you develop programs. CourseNana.COM

The meaning of time in your simulation CourseNana.COM

It's worth noting that your goal here is building a simulation, which is defined generally as a way of exploring a possible reality without actually having to experience that reality. What we learn from a simulation might inform our real-world decisions — if, for example, a simulation tells us that an idea is a good one, and we believe our simulation's model reasonably reflects reality, then we might be inclined to follow through with our idea. CourseNana.COM

In our case, our goal is not to experience the passage of time in our simulation; it's to measure the possible passage of time in the world that we're simulating, while obtaining a result as quickly as possible. For that reason, when an event is scheduled to take place at a certain time in our simulation, that has no bearing on when it happens in real time. A simulation of eight hours of real-world time shouldn't take eight hours to run; it should run as quickly as our program can determine the outcome. So, don't fall into the trap of trying to figure out how to pause your program for a certain number of milliseconds, or schedule functions to be called at a certain time; that's not the goal here. CourseNana.COM


Design, organization, and testing requirements CourseNana.COM

Building on your prior background in designing and implementing Python programs (e.g., from ICS 32 or ICS 32A), we'll leave many of the details of how to design your program unspecified; there are lots of good ways to approach the problem, so rather than require everyone to do exactly the same thing, we'll allow each of you to discover your own solution. CourseNana.COM

That said, we do have some requirements that need to be met, and that will inform at least some of your design choices. We will not be willing or able to pre-grade your work, and we won't generally be answering quesitons such as "If I make this decision choice, how will that affect my grade?" The requirements are listed below and they — along with what's specified in the section titled Limitations below and the general grading guidelines given on the Project Guide page — are definitive. CourseNana.COM

Your main module CourseNana.COM

You must have a Python module named project1.py, which provides a way to execute your program in whole; executing project1.py executes the program. Since you expect this module to be executed in this way, it would naturally need to have an if __name__ == '__main__': statement at the end of it, for reasons described in prior coursework. Note that the provided Git repository will already contain this file (and the if __name__ == '__main__': statement. CourseNana.COM

Aside from the requirement that there be a project1.py file that is your "main" module, you can change any of the provided code in any way you'd like to meet this project's requirements. CourseNana.COM

Modules other than the main module CourseNana.COM

This is a project that is large enough that it will benefit from being divided into separate modules, each focusing on one kind of functionality, as opposed to jamming all of it into a single file or, worse yet, a single function. As you no doubt learned in prerequisite coursework, when you divide a large program into smaller pieces that are relatively isolated from one another, your ability to work on a large-sized problem without losing control of its complexity dramatically increases. So, we'll expect to see your program divided into multiple modules, with each one focused on one kind of problem. We don't have specific requirements around exactly where you draw the line, but we do have the requirement that, in general, you "keep separate things separate." CourseNana.COM

If deciding what functionality belongs in which modules is territory that feels unfamiliar to you, the Modules notes from my ICS 32A course are a good primer on some of the ways you might think about that problem. Pay special attention to how terms like high cohesion and low coupling are defined there. CourseNana.COM

Working and testing incrementally CourseNana.COM

As you did in Project 0, you are required to do your work incrementally, to test it incrementally (i.e., as you write new functions, you'll be implementing unit tests for them), and to commit your work periodically into a Git repository, which you will be bundling and submitting to us. CourseNana.COM

As in Project 0, we don't have a specific requirement about how many commits you make, or how big a "feature" is, but your general goal is to commit when you've reached stable ground — a new feature is working, and you've tested it (ideally with unit tests). We'll expect to see a history of these kinds of incremental commits. CourseNana.COM

Test coverage CourseNana.COM

Your goal in this project is to reach the highest percentage of test coverage you can. Our goal here can't as easily be 100% as it was in Project 0 — mainly because there are aspects of what you're doing here that may not be testable with techniques that you've learned to date — but you'll nonetheless need to test whatever can be tested. Challenge yourself to cover everything that you can cover using the techniques that you've learned to date. CourseNana.COM

To that end, every function that lacks full coverage (i.e., for which at least one line or at least branch is left uncovered) will require a comment above it, briefly explaining why there is missing coverage. These comments won't ever need to be more than a sentence or two, but the objective is to reflect on why you weren't able to write unit tests that covered it.  CourseNana.COM

We will be neither willing nor able to negotiate individually with you about explicitly what must be tested and what can be safely left untested, as this will depend heavily on the design decisions you're making. However, it's safe to say that there are relatively few things we're doing here for which no testing techniques exist, and we will be aware, while grading your work, of what aspects of this problem are likelier to be untestable (using techniques taught in this course or in prerequisite coursework) than others. CourseNana.COM


Sanity-checking your output CourseNana.COM

We are providing a tool that you can use to sanity check whether you've followed the basic requirements above. It will only give you a "passing" result in these circmustances. CourseNana.COM

  • It's possible to run your program by executing a correctly named module (project1.py), spelled and capitalized correctly.
  • Executing that module is enough to execute your program.
  • Your program reads its input and generates character-for-character correct input for one simple test scenario.

It should be noted that there are many additional tests you'll be want to perform, and that there are many additional tests that we'll be using when we grade your project. The way to understand the sanity checker's output is to think of it this way: Just because the sanity checker says your program passes doesn't mean it's close to perfect, but if you cannot get the sanity checker to report that your program passes, it surely will not pass all of our automated tests (and may well fail all of them). CourseNana.COM

You'll find the sanity checker in your project directory, in a file named project1_sanitycheck.py. Run that program like you would any other, and it will report a result. CourseNana.COM

Get in Touch with Our Experts

WeChat (微信) WeChat (微信)
Whatsapp WhatsApp
US代写,UCI代写,University of California代写, Irvine代写,ICS 33代写,Intermediate Programming with Python代写,ICS33代写,Python代写,Calling All Stations代写,US代编,UCI代编,University of California代编, Irvine代编,ICS 33代编,Intermediate Programming with Python代编,ICS33代编,Python代编,Calling All Stations代编,US代考,UCI代考,University of California代考, Irvine代考,ICS 33代考,Intermediate Programming with Python代考,ICS33代考,Python代考,Calling All Stations代考,UShelp,UCIhelp,University of Californiahelp, Irvinehelp,ICS 33help,Intermediate Programming with Pythonhelp,ICS33help,Pythonhelp,Calling All Stationshelp,US作业代写,UCI作业代写,University of California作业代写, Irvine作业代写,ICS 33作业代写,Intermediate Programming with Python作业代写,ICS33作业代写,Python作业代写,Calling All Stations作业代写,US编程代写,UCI编程代写,University of California编程代写, Irvine编程代写,ICS 33编程代写,Intermediate Programming with Python编程代写,ICS33编程代写,Python编程代写,Calling All Stations编程代写,USprogramming help,UCIprogramming help,University of Californiaprogramming help, Irvineprogramming help,ICS 33programming help,Intermediate Programming with Pythonprogramming help,ICS33programming help,Pythonprogramming help,Calling All Stationsprogramming help,USassignment help,UCIassignment help,University of Californiaassignment help, Irvineassignment help,ICS 33assignment help,Intermediate Programming with Pythonassignment help,ICS33assignment help,Pythonassignment help,Calling All Stationsassignment help,USsolution,UCIsolution,University of Californiasolution, Irvinesolution,ICS 33solution,Intermediate Programming with Pythonsolution,ICS33solution,Pythonsolution,Calling All Stationssolution,