1. Homepage
  2. Programming
  3. ECS 034: Software Development in UNIX & C++ - Project 2: CDSVReader and CDSVWriter

ECS 034: Software Development in UNIX & C++ - Project 2: CDSVReader and CDSVWriter

Engage in a Conversation
UCDavisECS 034ECS34Software Development in UNIX & C++C++CDSVReaderCDSVWriter

ECS34 WQ25 CourseNana.COM

Project 2 CourseNana.COM

You will be working with a partner for this project. This specification is subject to change at any time for additional clarification. CourseNana.COM

Desired Outcomes CourseNana.COM

  • ●  Exposure to GoogleTest CourseNana.COM

  • ●  Exposure to Expat XML library CourseNana.COM

  • ●  Use of git repository CourseNana.COM

  • ●  Exposure to documenting code in Markdown CourseNana.COM

  • ●  An understanding of how to develop Makefiles that build and execute unit tests CourseNana.COM

  • ●  An understanding of delimiter-separated-value files CourseNana.COM

  • ●  An understanding of XML files CourseNana.COM

  • ●  An understanding of how to integrate a third-party C library in C++ CourseNana.COM

    Project Description CourseNana.COM

    You will be implementing and documenting several C++ classes to generate and parse both delimiter-separated-value (DSV) and XML files. To guide your development and to provide exposure to Test Driven Development, you will be developing GoogleTest tests to test your classes. You will also be developing a Makefile to compile and run your tests. You must use good coding practice by developing this project in a git repository. DSV is a way of exchanging information, you can read more here. Some of the most common forms are comma-separated-value (CSV) and tab-separated-value (TSV) files. You will be implementing two classes CDSVReader and CDSVWriter that have simple interfaces for parsing and generating DSV respectively. CourseNana.COM

    // Constructor for DSV reader, src specifies the data source and delimiter // specifies the delimiting character
    CDSVReader(std::shared_ptr< CDataSource > src,
    char delimiter); CourseNana.COM

    // Destructor for DSV reader ~CDSVReader(); CourseNana.COM

    // Returns true if all rows have been read from the DSV bool End() const; CourseNana.COM

    // Returns true if the row is successfully read, one string will be put in // the row per column
    bool ReadRow(std::vector< std::string > &row); CourseNana.COM

    // Constructor for DSV writer, sink specifies the data destination, delimiter // specifies the delimiting character, and quoteall specifies if all values // should be quoted or only those that contain the delimiter, a double quote, // or a newline CourseNana.COM

    CDSVWriter(std::shared_ptr< CDataSink > sink, char delimiter, CourseNana.COM

    Project 2 1 of 6 CourseNana.COM

ECS34 WQ25 February 4, 2025 CourseNana.COM

bool quoteall = false); // Destructor for DSV writer CourseNana.COM

~CDSVWriter(); CourseNana.COM

// Returns true if the row is successfully written, one string per column // should be put in the row vector
bool WriteRow(const std::vector< std::string > &row); CourseNana.COM

Some nuances to keep in mind when developing the functions. CourseNana.COM

  • ●  Values that have either the delimiter, double quote character ‘"’, or newline must be quoted with double quotes. CourseNana.COM

  • ●  Double quote characters in the cell must be replaced with two double quotes. CourseNana.COM

  • ●  An empty line is a valid row where there are no values. CourseNana.COM

  • ●  A double quote specified as a delimiter is interpreted as a comma ‘,’. CourseNana.COM

    You will be implementing two classes CXMLReader and CXMLWriter that have simple interfaces for parsing and generating XML respectively. The SXMLEntity struct is used by CourseNana.COM

    both classes and has been provided. Complete XML parsing is complicated and beyond the scope of a single assignment; therefore, you will be utilizing the Expat library, a commonly used library for parsing XML. To link the Expat library (libexpat) with your project, use the -lexpat as a linker option. CourseNana.COM

    SXMLEntity{
    EType DType; // Type of entity start/end/complete element std::string DNameData;
    std::vector< TAttribute > DAttributes;
    CourseNana.COM

    }
    // returns true if the attribute name is in the DAttributes
    CourseNana.COM

    bool AttributeExists(const std::string &name) const; CourseNana.COM

    // returns the value of the attribute, or empty string if // doesn't exist
    std::string AttributeValue(
    const std::string &name) const; CourseNana.COM

    // Sets the attribute name to the value
    bool SetAttribute(const std::string &name, const std::string &value); CourseNana.COM

    // Constructor for XML reader, src specifies the data source CXMLReader(std::shared_ptr< CDataSource > src); CourseNana.COM

    // Destructor for XML reader ~CXMLReader(); CourseNana.COM

    // Returns true if all entities have been read from the XML bool End() const; CourseNana.COM

    // Returns true if the entity is successfully read if skipcdata // is true only element type entities will be returned
    bool ReadEntity(SXMLEntity &entity, bool skipcdata = false); CourseNana.COM

    Project 2 2 of 6 CourseNana.COM

ECS34 WQ25 February 4, 2025 CourseNana.COM

// Constructor for XML writer, sink specifies the data destination CXMLWriter(std::shared_ptr< CDataSink > sink); CourseNana.COM

// Destructor for XML writer ~CXMLWriter(); CourseNana.COM

// Outputs all end elements for those that have been started bool Flush(); CourseNana.COM

// Writes out the entity to the output stream bool WriteEntity(const SXMLEntity &entity); CourseNana.COM

To abstract the data input/output for the DSV and XML classes, two simple abstract classes CDataSource and CDataSink have been provided for input and output respectively. String implementations of CDataSource and CDataSink, CStringDataSource and CStringDataSink respectively have been provided with associated GoogleTest tests. CourseNana.COM

The Makefile you develop needs to implement the following: CourseNana.COM

  • ●  Must create obj directory for object files (if doesn’t exist) CourseNana.COM

  • ●  Must create bin directory for binary files (if doesn’t exist) CourseNana.COM

  • ●  Must compile cpp files using C++17 CourseNana.COM

  • ●  Must link string utils and string utils tests object files to make teststrutils CourseNana.COM

    executable CourseNana.COM

  • ●  Must link StringDataSource and StringDataSourceTest object files to make CourseNana.COM

    teststrdatasource executable CourseNana.COM

  • ●  Must link StringDataSink and StringDataSinkTest object files to make CourseNana.COM

    teststrdatasink executable CourseNana.COM

  • ●  Must link DSV reader/writer and DSV tests object files to make testdsv executable CourseNana.COM

  • ●  Must link XML reader/writer and XML tests object files to make testxml executable CourseNana.COM

  • ●  Must execute the teststrutils, teststrdatasource, teststrdatasink, CourseNana.COM

    testdsv, and testxml executables CourseNana.COM

  • ●  Must provide a clean that will remove the obj and bin directories CourseNana.COM

    You must have a docs directory that contains Markdown (.md) files that document the CDSVReader, CDSVWriter, CXMLReader, and CXMLWriter classes and their use. The documentation of each class and function should be consistent. Code examples are excellent for documenting the use of the developed classes. CourseNana.COM

    You can unzip the given zip file with utilities on your local machine, or if you upload the file to the CSIF, you can unzip it with the command:
    unzip proj2given.zip CourseNana.COM

    You must submit the source file(s), your Makefile, README.md file, and.git directory in a zip archive. Do a make clean prior to zipping up your files so the size will be smaller. You CourseNana.COM

    can zip a directory with the command: CourseNana.COM

    zip -r archive-name.zip directory-name
    

    Project 2 3 of 6 CourseNana.COM

ECS34 WQ25 February 4, 2025 CourseNana.COM

You should avoid using existing source code as a primer that is currently available on the Internet. You MUST specify in your README.md file any sources of code that you have viewed to help you complete this project. You MUST properly document ALL uses of Generative AI following the guidelines outlined in the Generative AI Restrictions. All class projects will be submitted to MOSS to determine if students have excessively collaborated. Excessive collaboration, or failure to list external code sources will result in the matter being referred to Student Judicial Affairs. CourseNana.COM

Recommended Approach CourseNana.COM

The recommended approach is as follows: CourseNana.COM

  1. Create a git repository and add your project 1 and provided files. CourseNana.COM

  2. Update your project 1 Makefile to meet the specified requirements. The order of the tests CourseNana.COM

    to be run should be teststrutils, teststrdatasource, teststrdatasink, CourseNana.COM

    testdsv, and then testxml CourseNana.COM

  3. Verify that your string utils, string data source, and string data sink tests all compile, run CourseNana.COM

    and pass. CourseNana.COM

  4. Create the docs directory, and begin documenting the classes and functions. CourseNana.COM

  5. Create the files and skeleton functions for DSVReader.cpp, DSVWriter.cpp, CourseNana.COM

    XMLReader.cpp, XMLWriter.cpp, DSVTest.cpp, and XMLTest.cpp. CourseNana.COM

  6. Write tests for the DSV and XML classes. Each test you write should fail, make sure to CourseNana.COM

    have sufficient coverage of the possible input parameters. CourseNana.COM

  7. Once tests have been written that fail with the initial skeleton functions, begin writing CourseNana.COM

    your DSV functions. You may want to start with the writer, this may allow the use of the CourseNana.COM

    writer in testing the reader. CourseNana.COM

  8. Once the DSV classes are complete, begin writing your XML functions. Like the DSV CourseNana.COM

    functions, you may want to start with the writer, this may allow the use of the writer in testing the reader. CourseNana.COM

Get in Touch with Our Experts

WeChat (微信) WeChat (微信)
Whatsapp WhatsApp
UCDavis代写,ECS 034代写,ECS34代写,Software Development in UNIX & C++代写,C++代写,CDSVReader代写,CDSVWriter代写,UCDavis代编,ECS 034代编,ECS34代编,Software Development in UNIX & C++代编,C++代编,CDSVReader代编,CDSVWriter代编,UCDavis代考,ECS 034代考,ECS34代考,Software Development in UNIX & C++代考,C++代考,CDSVReader代考,CDSVWriter代考,UCDavishelp,ECS 034help,ECS34help,Software Development in UNIX & C++help,C++help,CDSVReaderhelp,CDSVWriterhelp,UCDavis作业代写,ECS 034作业代写,ECS34作业代写,Software Development in UNIX & C++作业代写,C++作业代写,CDSVReader作业代写,CDSVWriter作业代写,UCDavis编程代写,ECS 034编程代写,ECS34编程代写,Software Development in UNIX & C++编程代写,C++编程代写,CDSVReader编程代写,CDSVWriter编程代写,UCDavisprogramming help,ECS 034programming help,ECS34programming help,Software Development in UNIX & C++programming help,C++programming help,CDSVReaderprogramming help,CDSVWriterprogramming help,UCDavisassignment help,ECS 034assignment help,ECS34assignment help,Software Development in UNIX & C++assignment help,C++assignment help,CDSVReaderassignment help,CDSVWriterassignment help,UCDavissolution,ECS 034solution,ECS34solution,Software Development in UNIX & C++solution,C++solution,CDSVReadersolution,CDSVWritersolution,