factory method, Software Engineering

Assignment Help:
For this assignment you will create a program called MMWordFix (Multi-Mode WordFix). This program prompts the user to select one of three word filters (uppercase, lowercase, encrypt). Then it allows the user to repeatedly apply this filter either interactively or to convert a file. Here is a sample run:


If the user tries to convert a file and the file is not found in the local directory, they should see an error message, e.g.:


If the user does not correctly enter the name of one of the filters, WordFix should continue to prompt the user until a valid selection is entered. For example,



This program builds on Hwk4.
IFilter, FUpperCase, FLowerCase, FEncrypt:
• No changes.
FilterMgr:
• Change method selectFilter to return a pointer to IFactory. Thus it creates and returns an instance of the appropriate factory (instead of filter).
IFactory:
• An interface that has method NewFilter, which takes no arguments and returns a pointer to an IFilter.
UCaseFactory, LCaseFactory, EncryptFactory:
• Each implements interface IFactory.
• Each creates a different type of filter object: FUpperCase, FLowerCase, or FEncrypt respectively.
InteractiveFix:
• Has private attribute myFilter, which is a pointer to an IFilter.
• The constructor takes a pointer to an IFactory as an argument. It uses the factory object to create a filter object, which it saves in myFilter.
• Has method DoInteractiveSession, which takes no arguments and returns nothing. This method:
o Prompts the user for a word, then accepts a word from the user.
o If the word is “q”, the method returns.
o Otherwise it executes myFilter on the word, and displays the result.
• Note that InteractiveFix should not know anything about specific factory or filter classes; it only knows about IFactory and IFilter.
FileFix:
• Has private attribute myFactory, which is a pointer to an IFactory.
• The constructor takes a pointer to an IFactory as an argument. It saves the factory object in myFactory.
• Has method ConvertFile, which takes string argument and returns nothing. The argument is the name of the input file. This method:
o Uses myFactory to create the appropriate filter object.
o Opens the input file and output file (same name but .fix suffix).
o Reads each line in the input file, converts it, and writes it to the output file.
o Closes both files.
• Note that FileFix should not know anything about specific factory or filter classes; it only knows about IFactory and IFilter.
main():
• Prompts the user for a filter name, using the FilterMgr to get the choices.
• Accepts a filter name from the user.
• If the filter name is “q”, the program quits.
• Uses the FilterMgr to get the appropriate factory object that can create the named filter. If the filter name is not one of the available filters, the user is prompted again.
• Now the user may repeatedly apply the filter in one of two modes.
o Prompt the user for the mode (“i” or “f”)
o If the mode is “q”, the program quits.
o If the mode is “i”, an InteractiveFix object is created and used to apply the filter interactively.
o If the mode is “f”, the user is prompted for a file name then a FileFix object is created and used to apply the filter to a file.
• Note that main() should not know about any of the specific factory classes; it only knows about IFactory.
• Note that main() should not know anything about filters.

Related Discussions:- factory method

What is meant by information flow continuity, What is meant by Information ...

What is meant by Information flow Continuity? When we refine a fundamental model for a system, the information flow continuity must be maintained .ie, input & output to every r

What are the tools used in system analyst, What are the Toolsused in system...

What are the Toolsused in system analyst Systems analyst have numerous tools to help them in carrying out their work. As many of their projects are for big companies it is ess

Explain any ten case tools, Question 1 Explain black box and white box tes...

Question 1 Explain black box and white box testing techniques Question 2 Explain different roles of the software development? Question 3 List out different project

Test a system though there is no documentation available, You need to test ...

You need to test a system though there is no documentation available and developers who developed it don't work there anymore. What would you do? - We will perform exploratory

Explain common coupling, Common coupling: Common coupling is when two modu...

Common coupling: Common coupling is when two modules share the similar global data (e.g. a global variable). Changing the shared resource implies changing all the modules using it

What is the need for obtaining ISO 9000 certification, Q. What is the need ...

Q. What is the need for obtaining ISO 9000 certification? The need for obtaining ISO 9000 certification :- Confidence of customers in an organization improves when orga

What is transform mapping, What is Transform mapping? The transform map...

What is Transform mapping? The transform mapping is a set of design steps applied on the DFD in order to map the transformed flow characteristics into exact architectural style

Explain the static testing and dynamic testing, Static testing and dynamic ...

Static testing and dynamic testing Static testing is checking the application without actually running the application while dynamic testing checks the application by running i

The spiral model of software development, The spiral model of software deve...

The spiral model of software development Contains project risks evaluation during every iteration

What is pure and impure interpreter, what is interpreter explain pure and i...

what is interpreter explain pure and impure interpretion

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd