首页
编程语言
数据库
网络开发
Algorithm算法
移动开发
系统相关
金融统计
人工智能
其他
首页
>
> 详细
辅导COMP 3023、讲解Software留学生、辅导C/C++编程、辅导C/C++语言 讲解留学生Prolog|讲解Python程序
Revision 0, 2018-10-06
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 1 of 5
School of Information Technology and Mathematical Sciences
COMP 3023 Software Development with C++
Individual Project
Networked Asset Manager
Introduction
This document describes the Individual variant of the Networked Asset Manager Group Project in response to the
issues around group organisation. Each group may choose to continue the Group Project with the alterations
described in the accompanying Group Project Amendment document. Alternatively, your group may disband and
each student may work on the Individual project instead. You will need to refer to the original specification for
the bulk of the requirements, this document contains only the changes over the original specification.
If any parts of this specification appear unclear, please ensure you seek clarification.
Networking
There is no need to complete a networking component for the Group Project. That is, the following sections (and
their subsections) of the original document can be disregarded:
Networking
Messages
Therefore, the following classes do not have to be implemented nor included in the design (UML diagram) and
any existing version of them can be ignored or deleted:
NetworkedAssetRegister
NetworkManager
MessageFactory
PlainTextMessageFactory
Message
RequestMessage
ResponseMessage
Assets and their Properties
To reduce the scope of the application, the AssetType class will be removed. All references to AssetType from
the original Group Project can be disregarded and the class does not have to be implemented nor appear in the
design (UML diagram). This requires some rearrangement of the core structure as UserPropertyDefinitions
will no longer be present on the AssetType. The new structure is illustrated below.
The consequences of this change are as follows:
There is only one instance of the Type-Object pattern (UserPropertyDefinition/UserProperty).
When a UserProperty is destroyed its associated UserPropertyDefinition must also be destroyed
unless it is still referenced by another UserProperty (which may occur when as Asset it cloned).
There is no need to create user interfaces for AssetType, i.e., no AssetTypes List View, no AssetType
Details View, etc.Revision 0, 2018-10-06
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 2 of 5
The user needs to be able copy an existing Asset so that they do not have to re-add the same user
properties over and over. See section GUI Changes below.
When updating a UserPropertyDefinition, it must only change for the current Asset. This can be
achieved by simply creating a new UserPropertyDefinition and replace the existing one. Other
UserProperties referencing the old UserPropertyDefinition must remain unaffected.
GUI Changes
The following views are not required:
View Asset Types
View/Edit Asset Types
Additionally, the Main Menu/Dashboard does not need to provide access to the removed views.
As AssetTypes are not included in this variant of the project the cloning of an Asset cannot be performed by an
AssetType. Therefore, the user must be able to copy an Asset (i.e., clone it) to simplify the creation of new
Assets with existing sets of properties and values. This functionality must be available from the Asset Details
View and the Assets List View. Selecting the copy option must take the user to the editable details of the new
Asset object, which will only be stored in the register if the user confirms the edit.
When specifying the UserProperties of Assets, the user must be presented with selections for the type,
precision, and validators (minimum, maximum, and enumeration) of the property, which will be stored in the
UserProperty’s associated definition.Revision 0, 2018-10-06
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 3 of 5
To support saving the register content to file, the Login Screen must contain a field to specify the file to load. The
user must be able to select the file location through a File selection dialog. After the singleton AssetRegister
instance has been retrieved, the specified file will be loaded into the register.
When the application is closed, the user must be prompted (Yes/No) to save the database. If the user selects ‘Yes’
a File selection dialog will be displayed for the user to select the location and name of the file.
Optional: the file from which the entities were loaded may be kept in memory to facilitate quick saving (i.e., set
the initial value of the File selection dialog) to the same file at application close.
Optional: the user may be able to periodically save the stored entities to file without exiting the application.
Storing Assets to File
In lieu of the networking component, the Asset Manager must be able to store its database of Assets,
Custodians, and MaintenanceRecords to file when the application closes and load the file at application startup.
The file format will be a simple, plain-text format (described below) and all entities will be stored in a single
file. To ensure correct resolution of dependent entities, the entities must be stored in the following order:
Custodians
Assets
MaintenanceRecords
File Format
The following describes the data format of the offline storage file. It requires that the objects be serialised into a
plain-text format and be deserialised on application load. You must determine an appropriate method of
serialisation and deserialization: for example, you may use QTextStream and overloaded input/output operators
(>> and <<, respectively) to read and write entities from/to text and subsequently converted into a QByteArray
(see QString::toUtf8()) for consistent storage. Note: if you take this approach you will need to overload the
operators for QTextStream not std::istream/std::ostream; there are some differences between them and the
manipulators they support, so you will need to read the relevant documentation.
The output file will contain one entity per line. Each line will be structured as a list of fields separated by pipe ‘|’
symbols. To protect against additional pipe symbols breaking the format, fields that contain user-entered text
must be encoded using URL percent encoding, which is an encoding style used by URLs that encode unfriendly
characters using a percent ‘%’ sign followed by a pair of hex digits. Refer to QByteArray::toPercentEncoding() and
QByteArray::fromPercentEncoding().
The following sections describe the format for each type of stored entity.
Custodian
The data format for serialising Custodian objects is as follows (ignore line breaks in the specification, serialisation
is one entity per line):
Custodian|
|
|
|
|
|
Where fields in angle brackets denote attributes of Custodian, with special instructions included after a colon ‘:’.
For example,
indicates that the name attribute should be percent encoded and written in that position.
The instruction, ‘iso8601’ instruction for date/time data fields indicates it should be serialised in ISO 8601 format
(see QDateTime::toString and QDateTime::fromString).Revision 0, 2018-10-06
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 4 of 5
For example, an instance of Custodian may be serialised as:
Custodian|cust001|matt|2018-09-14T00:00:00+09:30|Johnny|Maintenance|0880001111
Asset
The data format for Assets is as follows (ignore line breaks in the specification, serialisation is one entity per
line):
Asset|
|
|
|
|
|
|
|
|[disposalDate:iso8601]|
|
[|
]
If properties.size() is zero (‘0’), no UserProperty will be output and there will be no trailing pipe ‘|’ symbol.
Each UserProperty is serialised as:
=
|
[|precision=
]|min=
validator>,max=
,enum=
Where
is the precision (number of decimal places) of a double and is only present if the type is
‘double’ (the square brackets indicate that the entire field is optional and should only be present if a precision
value is specified),
is the value of the minimum value validator if present (otherwise empty),
is the value of the maximum value validator, and
is a colon separated list of the
enumeration values (percent encoded). The type, precision, min, max, and enum values come from the
UserPropertyDefinition associated with the UserProperty. For example,
Asset|asset001|matt|2018-09-14T00:00:00+09:30|x23-zz0|ACME%20Co.|x23series%20Pump|100.22|
2018-09-14T00:00:00+09:30||cust001|1|flow=2.5|double|min=,max=,enum=1.0:2.5
Asset|asset002|matt|2018-09-14T00:00:00+09:30|P-101|Pumps%27R%27Us||50.00|
2018-09-14T00:00:00+09:30|2018-09-15T00:00:00+09:30|cust001|0
Asset|asset003|matt|2018-09-14T00:00:00+09:30|Pump3|Pumps%27R%27Us|x23series|50.00|2018-09-
14T00:00:00+09:30|2018-09-15T00:00:00+09:30|cust001|1|flow=2.50|precision=2|min=,max=,enum=
Note: %27 is an apostrophe ‘ character
Note: the blank line separates distinct entities for readability, it should not occur in an output file.
Note: When percent encoding the enumeration values, do not percent encode the colon separators. This allows
the values themselves to contain colons (as they will be percent encoded) while maintaining the separator (which
will not be encoded).
MaintenanceRecord
MaintenanceRecords are serialised as follows (ignore line breaks in the specification, serialisation is one entity
per line):
MaintenancRecord|
|
|
|
|
|
|
For example:
MaintenanceRecord|rec001|matt|2018-09-14T00:00:00+09:30|asset001|
2018-09-20T00:00:00+09:30|maintenance guy 01|InspectionRevision 0, 2018-10-06
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 5 of 5
Submission Details
You must submit a single ZIP archive file containing the following:
UML diagram (in PDF or PNG format)
Your Qt Creator project folder including all source files required to compile and run your application, your
Doxygen config file, and the version control directory (i.e., the ‘.git’ folder)
The submitted ZIP file must not include any generated files, such as object files and executables, or extraneous
files, such as the ‘*.pro.user’ file.
Once you have created the zip file according to the specifications, you are required to upload it to the Assessment
Item 3: Project submission via LearnOnline. The deadline for submission is 2 November 2018 11:59 PM. After
which time the submission will be considered late and attract a penalty as detailed in the course outline.
联系我们
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-21:00
微信:codinghelp
热点文章
更多
讲解 ecmt1020 introduction t...
2025-05-09
辅导 comp 272 data structure...
2025-05-09
讲解 busi4620 data analytics...
2025-05-09
讲解 finc6013 international ...
2025-05-09
辅导 inf6001 information sys...
2025-05-09
辅导 accounting theory (acfi...
2025-05-09
讲解 elec5208 intelligent vo...
2025-05-09
辅导 cloud computing archite...
2025-05-09
讲解 mes104tc-2425-s2 integr...
2025-05-09
讲解 mth1030/mth1035: projec...
2025-05-09
讲解 database management and...
2025-05-09
辅导 cse416 introduction to ...
2025-05-09
讲解 finm1415 introduction t...
2025-05-09
讲解 assignment 3: leadershi...
2025-05-09
辅导 requirements for the ap...
2025-05-09
辅导 158.739-2025 semester 1...
2025-05-09
辅导 engmp512-25a: advanced ...
2025-05-09
讲解 stat7055 introductory s...
2025-05-09
辅导 mmn7031sr global strate...
2025-05-09
讲解 comp30024 artificial in...
2025-05-09
热点标签
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: 99515681 微信:codinghelp
© 2024
www.7daixie.com
站长地图
程序辅导网!