1. Homepage
  2. Programming
  3. 159.251 - Software Design and Construction - Assignment 2: Custom Appender and Layout Objects for Log4j

159.251 - Software Design and Construction - Assignment 2: Custom Appender and Layout Objects for Log4j

Engage in a Conversation
New ZealandMasseySoftware Design and ConstructionLog4jJavaProgramming

159.251 - Software Design and Construction
CourseNana.COM

Assignment 2 (22%) CourseNana.COM


CourseNana.COM

You are expected to manage your source code, this includes making frequent backups. It is CourseNana.COM

How to submit CourseNana.COM

  1. Upload a zip file consisting of:
    a. The Maven project folder (inc.
    pom.xml)
    b.
    performance-analysis.pdf -measure time and memory consumption
    c.
    coverage.pdf/html - the pdf or html version of the coverage report created by Maven
  2. upload this file to stream - note: the max upload size is set to 20 MB
  3. verify the submission: download the zip file, unzip it into a new folder and inspect content, run Maven from the command line, check the output including generated jar files

Task
Work individually to create the following program in Java. CourseNana.COM

Create a project assign251_2 using the Maven project layout, and within this project, create a project that implements custom appender and layout objects for Log4j. For this, you will need to create an appender and layout that work with the other Log4j objects (i.e. implementing relevant Log4j abstract classes or interfaces), test them and run profiling tools on them to gauge their correctness and efficiency. CourseNana.COM

Note there is no main class for this project, it will be run via your tests from sections 3 and 4. You may want to consider a test driven development methodology where your first step is to start with section 3 and work backwards. This will allow you to check that your classes are working correctly as you go. strongly recommended (but not required) to use a private git repository for this assignment, and commit as frequently as possible. CourseNana.COM

1. Implement a log4j appender assign251_2.MemAppender [7 marks] CourseNana.COM

In this task, you will need to implement a custom log4j appender, which can be used directly with the log4j logger. This MemAppender, unlike normal appenders, stores logs in memory and prints them on demand. There is a limit to how many log events will be kept in memory (this should be configurable), and if the maximum is reached, the oldest logs should be deleted. CourseNana.COM

Implementation details: CourseNana.COM

-  It enforces the singleton pattern. CourseNana.COM

-  It stores the LoggingEvents in a list. This is supplied by dependency injection (note: if you have already created a default, that is okay). CourseNana.COM

-  It will need a layout. This will need to be able to be supplied when the MemAppender is collected, and via the setLayout() method. If a layout is not supplied, and code calling it is needed, appropriate precondition checks should be used (as some code may not use the appender with the layout, so it is a valid option not to supply one, as long as you don’t use any functionality that requires it). CourseNana.COM

-  There are three ways to get information about the LoggingEvents that it stores: CourseNana.COM

    1. Call the method getCurrentLogs() which will return an unmodifiable list of the LoggingEvents.
    2. Call the method getEventStrings() which will return an unmodifiable list of strings (generated using a layout stored in the MemAppender).
    3. Call the method printLogs() which will print the logging events to the console using the layout and then clear the logs from its memory.

-  It has a property called maxSize, which needs to be configurable. When this size is reached, the oldest logs should be removed to make space for the new ones. CourseNana.COM

-  The number of discarded logs should be tracked, and can be accessed using getDiscardedLogCount(). This should be stored as a long type, as there may be many discarded logs. CourseNana.COM

Note: Be careful to observe the DRY principle - there are overlapping requirements above. CourseNana.COM

Correct implementation of the singleton pattern and dependency injection options for the list and layout. CourseNana.COM

Correct implementation of the information printing / collection methods, along with sensible precondition checks where appropriate. CourseNana.COM

Correct implementation of maxSize and associated features. CourseNana.COM

A layout assign251_ CourseNana.COM

2.VelocityLayout [3 marks] CourseNana.COM

  1. VelocityLayout basically works like PatternLayout, but uses Velocity as the template engine. This layout should work with log4j appenders as well as the MemAppender.
  2. Variable to be supported:
    1. c (category)
    2. d (date using the default toString() representation)
    3. m (message)
    4. p (priority)
    5. t (thread)
    6. n(lineseparator)
  3. This means that the variable syntax is different, e.g. use $m instead of %m
  4. VelocityLayout should have options to set its pattern both in the constructor and

via a setter. An example string pattern could look like: CourseNana.COM

“[$p] $c $d: $m” CourseNana.COM

Write tests that test your appender and layout in combination with different loggers, levels and appenders [4 marks] CourseNana.COM

  1. Use JUnit for testing your appender and layout. Aim for good test coverage and precise asserts.
  2. Use the tests to show both the appender and layout working with different combinations of built in log4j classes as well as with each other.
  3. Tests should be stored in the appropriate locations according to the Maven folder structure.

4. Write tests to stress-test your appender/layout by creating a large amount of log statements [6 marks] CourseNana.COM

  1. Create a separate test class for stress tests.
  2. Use these tests to compare the performance between MemAppender using a

LinkedList, MemAppender using an ArrayList, ConsoleAppender and FileAppender - measure time and memory consumption (using JConsole or VisualVM or any profiler) CourseNana.COM

  1. Consider how to output your logs in such a way that makes comparisons between the MemAppender and other appenders sensible.
  2. Use these scripts to compare the performance between PatternLayout and VelocityLayout
  3. Stress tests should test performance before and after maxSize has been reached, and with different maxSize values.

i. parameterised tests may be helpful here. CourseNana.COM

  1. Write a short report summarising your findings (embed screenshots of memory

usage charts in this reports taken from VisualVM). The report name should be CourseNana.COM

performance-analysis.pdf CourseNana.COM

  1. Measure your test coverage of the written tests by generating a branch and statement coverage reports using Jacoco or Emma. Submit this report with your project (should be placed under ~/target/ folder”

Note that the marks for this section will be based around your reporting, the effectiveness of your stress tests in probing into the efficiency of the classes, and the overall integration testing, checking that these classes work in combination with other relevant out-of-the-box classes. CourseNana.COM

5. Write a Maven build script [2 marks] CourseNana.COM

Hints CourseNana.COM

  1. The Maven script should be used to build the project including compiling, testing, measuring test coverage, dependency analysis. All dependencies should be managed with your maven build.
  2. Use the jacoco Maven plugin for measuring test coverage.
  • ●  You can use any development environment you prefer as it is a Maven project.
  • ●  Library whitelist: only the following libraries and libraries they depend on can be used:

Apache log4j, Apache Velocity, JUnit, Google Guava, Apache Commons Collections, Jacoco and Emma (for code coverage). CourseNana.COM

Penalties CourseNana.COM

  1. Code that is not self-documenting, or long or complex methods.
  2. Violating the Maven standard project layout or Java naming conventions.
  3. Use of absolute paths (e.g., libraries should not be referenced using absolute paths like

“C:\\Users\\..”, instead use relative references w.r.t. the project root folder) CourseNana.COM

  1. References to local libraries (libraries should be referenced via the Maven repository)
  2. Use of libraries not on the whitelist

Bonus Question [2 marks] CourseNana.COM

You can get 100% for the assignment without this. This will give you additional marks up to the maximum if you lose some elsewhere. CourseNana.COM

Create an MBean object for each instance of the MemAppender to add JMX monitoring to this object, the properties to be monitored are: CourseNana.COM

  1. the log messages as array
  2. the estimated size of the cached logs (total characters)
  3. the number of logs that have been discarded

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
New Zealand代写,Massey代写,Software Design and Construction代写,Log4j代写,Java代写,Programming代写,New Zealand代编,Massey代编,Software Design and Construction代编,Log4j代编,Java代编,Programming代编,New Zealand代考,Massey代考,Software Design and Construction代考,Log4j代考,Java代考,Programming代考,New Zealandhelp,Masseyhelp,Software Design and Constructionhelp,Log4jhelp,Javahelp,Programminghelp,New Zealand作业代写,Massey作业代写,Software Design and Construction作业代写,Log4j作业代写,Java作业代写,Programming作业代写,New Zealand编程代写,Massey编程代写,Software Design and Construction编程代写,Log4j编程代写,Java编程代写,Programming编程代写,New Zealandprogramming help,Masseyprogramming help,Software Design and Constructionprogramming help,Log4jprogramming help,Javaprogramming help,Programmingprogramming help,New Zealandassignment help,Masseyassignment help,Software Design and Constructionassignment help,Log4jassignment help,Javaassignment help,Programmingassignment help,New Zealandsolution,Masseysolution,Software Design and Constructionsolution,Log4jsolution,Javasolution,Programmingsolution,