首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
Java留学生编程讲解、辅导data留学生编程、java程序语言调试 讲解Python程序|讲解留学生Processing
项目预算:
开发周期:
发布时间:
要求地区:
Assignment 2 (Individual) 2020 (20%)
Deadlines
You must submit your final work using the stream submission system no later than Monday 16 Nov 2020. Please note that without an extension, submissions beyond this time are not possible.
You are expected to manage your source code, this includes making frequent backups. It is strongly recommended (but not required) to use a private repository for this assignment.
How to submit
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 - the pdf 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.
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.
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.
1.Implement a log4j appender assign251_2.MemAppender [6 marks]
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.
Implementation details:
-It enforces the singleton pattern.
-It stores the LoggingEvents in a list. This is supplied by dependency injection (note: if you have already created a default, that is okay).
-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).
-There are three ways to get information about the LoggingEvents that it stores:
a.Call the method getCurrentLogs() which will return an unmodifiable list of the LoggingEvents.
b.Call the method getEventStrings() which will return an unmodifiable list of strings (generated using a layout stored in the MemAppender).
c.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.
-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.
Note: Be careful to observe the DRY principle - there are overlapping requirements above.
3 marks Correct implementation of the singleton pattern and dependency injection options for the list and layout.
2 marks Correct implementation of the information printing / collection methods, along with sensible precondition checks where appropriate.
1 mark Correct implementation of maxSize and associated features.
2.a layout assign251_2.VelocityLayout [3 marks]
a.VelocityLayout basically works like PatternLayout, but uses Velocity as the template engine. This layout should work with log4j appenders as well as the MemAppender.
b.Variable to be supported:
i.c (category)
ii.d (date using the default toString() representation)
iii.m (message)
iv.p (priority)
v.t (thread)
vi.n (line separator)
c.This means that the variable syntax is different, e.g. use $m instead of %m
d.VelocityLayout should have options to set its pattern both in the constructor and via a setter. An example string pattern could look like:
“[$p] $c $d: $m”
3.write tests that test your appender and layout in combination with different loggers, levels and appenders [4 marks]
a.Use JUnit for testing your appender and layout. Aim for good test coverage and precise asserts. [2 marks]
b.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. [2 mark]
c.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 [5 marks]
a.Create a separate test class for stress tests.
b.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)
c.Consider how to output your logs in such a way that makes comparisons between the MemAppender and other appenders sensible.
d.Use these scripts to compare the performance between PatternLayout and VelocityLayout
e.Stress tests should test performance before and after maxSize has been reached, and with different maxSize values.
i.parameterised tests may be helpful here.
f.Write a short report summarising your findings (embed screenshots of memory usage charts in this reports taken from VisualVM)
g.The report name should be performance-analysis.pdf
h.Measure your test coverage of the written tests by generating a branch and statement coverage reports using Jacoco or Emma.
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.
5.write a Maven build script [2 marks]
a.The Maven script should be used the build the project including compiling, testing, measuring test coverage, dependency analysis.
b.Use the jacoco Maven plugin for measuring test coverage.
Hints
●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, Guava, Apache Commons Collections, Jacoco and Emma.
Penalties
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)
4.References to local libraries (libraries should be referenced via the Maven repository)
5.Use of libraries not on the whitelist
Bonus Question [2 marks]
You can get 100% for the assignment without this. This will give you additional marks up to the maximum if you lose some elsewhere.
Create an MBean object for each instance of the MemAppender to add JMX monitoring to this object, the properties to be monitored are:
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
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代写math 1151, autumn 2024 w...
2024-11-14
代做comp4336/9336 mobile dat...
2024-11-14
代做eesa01 lab 2: weather an...
2024-11-14
代写comp1521 - 24t3 assignme...
2024-11-14
代写nbs8020 - dissertation s...
2024-11-14
代做fin b377f technical anal...
2024-11-14
代做ceic6714 mini design pro...
2024-11-14
代做introduction to computer...
2024-11-14
代做cs 353, fall 2024 introd...
2024-11-14
代做phy254 problem set #3 fa...
2024-11-14
代写n1569 financial risk man...
2024-11-14
代写csci-ua.0202 lab 3: enco...
2024-11-14
代写econ2226: chinese econom...
2024-11-14
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!