Get Instant Help From 5000+ Experts For
question

Writing: Get your essay and assignment written from scratch by PhD expert

Rewriting: Paraphrase or rewrite your friend's essay with similar meaning at reduced cost

Editing:Proofread your work by experts and improve grade at Lowest cost

And Improve Your Grades
myassignmenthelp.com
loader
Phone no. Missing!

Enter phone no. to receive critical updates and urgent messages !

Attach file

Error goes here

Files Missing!

Please upload all relevant files for quick & complete assistance.

Guaranteed Higher Grade!
Free Quote
wave
Advanced Programming Coursework Assignment
Answered

Demonstrate understanding of software development and software engineering techniques.

This coursework will fully or partially assess the following learning outcomes for this module.

On completion of the module you will be able to:

Demonstrate an understanding of software development using a variety of software engineering techniques.

Critically evaluate the quality of a software artefact.

Use sources of information to improve your knowledge and understanding.

Develop multi-threaded applications.

Effectively plan the development of a practical project from design to implementation.

Adpselfsimilar.jar – this is a Java archive that should be added to your project as a library (seek advice from your tutor if unable to do this). It contains classes that you will not need to modify, but you will need to extend classes and implement interfaces from within it. For your assistance, the source code of all files is contained in the jar for you to inspect.

Folder images containing Generated-these are the images the application is expected to investigate.

Src/adp/selfsimilar/Demo.java – a command line-based searcher program to compile and run

Src/adp/selfsimilar/ui/SearchUI.java – a UI-based searcher program to compile and run

Javadocs – a set of HTML JavaDoc files for all provided classes

Compile and run Demo and experiment with searching each of the supplied images by editing the filename variable in the main method.

Now run the provided SearchUI application, and again search each of the images. The smaller image is searched very quickly and the larger one will take a bit longer.

Give a written comparative analysis of the characteristics and behaviour of Demo and SearchUI, identifying the functional differences between them. In doing so, pay particular attention to the following:

The display of progress the program has achieved over time as it runs

The ability of the user to cancel the operation (with and without terminating the program)

The threads of execution involved in each program and how they determine the behaviour You should explain the characteristics of the programs in terms of the threads of execution being used, by explicit reference to the source code.

Report Deliverable 2: SearchUIEnhancement and commentary

Develop an application that looks like SearchUI but differs in the following ways:

  1. It is called SearchUIEnhancement
  2. It runs the search on a dedicated worker thread so that the UI is not frozen
  3. It displays output from the program in the text area as it is produced
  4. The user can cancel the operation and quit the program by closing the window
  5. The user can cancel the operation without quitting the program by means of an additional cancel button
  6. The UI has an additional progress bar that is updated once every second by a dedicated thread that monitors the progress of the Searcher object. Note that for full functionality and thread-correctness, you will need to implement a new subclass of AbstractSearcher.

You should ensure that all code is written to be properly thread-safe, and document exactly what this means. Remember that non-thread-safe code does not necessarily exhibit any incorrect behaviour – just because it works doesn’t mean it is right!

You may use as much or as little code from the existing SearchUI as you choose, but other than this your code must be your own. You are strongly advised not to share your code with other students as the full source code must be included in your report and will be checked via TurnItIn.

Critically evaluate software artefact quality.

You must present the full source code as text in the body of the report. It must be formatted in a fixed-width font and single line spacing, and should be presented with line numbers that can be referred to in the narrative of the report. A single screenshot of the UI is permitted if you feel it is necessary. Failure to follow these guidelines will result in marks being lost.

You must accompany the source code with a full explanation of what you have done, the rationale for your design choices and paying particular attention to all issues of thread-safety and thread interactions. Where you are unsure about thread-safety, a logical discussion of your partial understanding is worth far more than ignoring it or bland assertions of its correctness. You should also critically assess and discuss the resulting application and its performance.

Make a version of Searcher that subdivides the search and runs it simultaneously on multiple threads using Java’s fork/join framework. To do this, you should consider first making a class that extends RecursiveAction and thatis given an image to search and a range of positions in the map to search, as parameters of its constructor has a compute method that decides whether to create an Searcher object and use it to perform an search on the range of positions, or to instead create two new instances of itself and give each half the range it has been given You will also need to decide how best to assign SearchListener objects to the Searcher objects contained inside this RecursiveAction object, so that meaningful information can be fed back to the UI. (A listener that discards information messages but forwards match found information to a master listener that is the UI would be a reasonable solution for this).

The RecursiveAction would be contained within an implementation of the Searcher interface so that it could be used within the existing SearchUIEnhancement class just by changing what kind of Searcher is instantiated and used by it. Ideally all methods of the Searcher interface would be implemented so that the parallelised job could be both cancelled and monitored by the progress bar (something that will require careful design to support it inside the RecursiveAction subclass).

You must present all relevant source code as text in the body of the report. It must be formatted in a fixed-width font and single line spacing, and should be presented with line numbers that can be referred to in the narrative of the report. A single screenshot of the UI is permitted if you feel it is necessary. Failure to follow these guidelines will result in marks being lost.

You must accompany the source code with a full explanation of what you have done, the rationale for your design choices and paying particular attention to all issues of thread-safety and thread interactions. Where you are unsure about thread-safety, a logical discussion of your partial understanding is worth far more than ignoring it or bland assertions of its correctness. You should also critically assess and discuss the resulting application and its performance.

  1. Subject Knowledge (35%)

Understanding and application of subject knowledge. Contribution to subject debate. Mainly assessed by your written explanation of your code.

  1. Critical Analysis (15%)

Assessed by the rationale you give for your design approaches and their contrast to alternative approaches.

  1. Testing and Problem-Solving Skills (30%)

Design, implementation, testing and analysis of product/process/system/idea/solution(s) to practical or theoretical questions or problems.

Assessed on the basis of the software you develop and document. It is important to note that very little credit will be given to any code you provide without explanation.

  1. Practical Competence (10%)

Skills to apply theory to practice or to test theory.

Assessed on documented evidence of your use of technical documentation (for example Oracle’s tutorials, Java documentation and course materials) in working out how to accomplish the assignment.

  1. Personal and Professional Development (10%)

Management of learning through self-direction, planning and reflection.

Assessed on the basis of the quality of your submitted report.

support
close