JSON Dir

Finish it in 50hrs.

2/23/2021 CS 265 — Assignment – JSON Dir

Don't use plagiarized sources. Get Your Custom Essay on
JSON Dir
Just from $13/Page
Order Essay

https://www.cs.drexel.edu/~kschmidt/CS265/Assignments/Bash-Dir2Json/ 1/4

Assignment — JSON Dir
CS 265 Advanced Programming Techniques

Introduction

The purpose of this assignment is for students to become writing Bash scripts, traversing the filesystem, and
using Unix filters, pipes, and redirection to solve a text processing problem. The student will also write custom
filters in Awk.

Problem

For this assignment, you will write a Bash script that visits every subdirectory in a folder (provided via
command line argument). In each folder (including the top-level folder), you will create a JSON file called
dir.json that contains some data extracted from a README file that may or may not be present in that directory.
You will use Awk to parse this README file.

Input — Sample Directory

See tux:/home/kschmidt/public_html/Files/Dir2 . Here is what a sample directory might look like:

README

The README may have two entries, each on its own line. Fields are separated by colons. Neither entry is required.
The two possible entries are:

index: A single file, the top-level HTML page for this directory.
required; A list of files that should be in this directory.

You must use Awk to parse this file.

dir.json

In each subdirectory (including the top-level directory on which the script was called), you will create a file
called dir.json. If it already exists, simply overwrite it. Do not include it as one of the files listed in the keys
described below.

dir.json should contain three top-level keys:

A key called index that contains a single filename representing the top-level HTML page for this
directory. This will be extracted from the README (if present). If no index entry is found in the README, this
should be an empty string.
A key called required that contains an object with two keys. The first key is files, which contains a
(possibly empty) list of all files marked as required in the README. The second key is directories, which
contains a (possibly empty) list of all directories marked as required in the README.
A key called other that has the same format as required, only it will contain a list of all files and a list of
all directories that are not in the index or required keys.

Here is an example JSON file:

2/23/2021 CS 265 — Assignment – JSON Dir

https://www.cs.drexel.edu/~kschmidt/CS265/Assignments/Bash-Dir2Json/ 2/4

dir.json

{
“index” : “index.html”,
“required” : {
“files”: [ “file2.1”, “file2.2” ],
“directories” : []
},
“other” : {
“files”: [ “other1”, “other4”, “other5”, “README” ],
“directories” : [ “Data” ]
}
}

Other Requirements

You must use Awk to parse the README file.
The rest of your script must be written in Bash.

You may use common utilities we’ve already covered (e.g., ls)
In particular, you may not use jq

Each dir.json file your script creates must be valid JSON. See the JSON section below if you’ve never
worked with JSON.
Your top-level script must be named a1-top (that’s a one, not an “ell”).
Your top-level script must take an optional command line argument of the directory we want to process.

If

no directory is provided, your script should use the current directory.
We’ll run your top-level script directly, so get the sha-bangs right.

Otherwise, the details are left to you.

JSON Description

If you’re unfamiliar with the JSON file format, see this Mozilla Developer Network tutorial about it. Your
dir.json files must be valid JSON. For example:

All strings must be surrounded in double quotes, not single quotes.
Keys are strings and thus must also be quoted.
Trailing commas are not allowed.
Whitespace is not required.

Example

Say a folder named myfolder contained this directory structure:

Your script will create a dir.json file inside every subdirectory. If myfolder/folder2/folder3/README looked like
this:

index:top.html
required:test1:testa

Then myfolder/folder2/folder3/dir.json> should contain:

{
“index”: “top.html”,

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON

2/23/2021 CS 265 — Assignment – JSON Dir

https://www.cs.drexel.edu/~kschmidt/CS265/Assignments/Bash-Dir2Json/ 3/4

myfolder/
├── folder1
│ ├── a
│ ├── b
│ ├── c
│ ├── index.html
│ └── README
├── folder2
│ ├── emptyfolder
│ ├── file1
│ ├── file2
│ ├── file3
│ ├── folder3
│ │ ├── README
│ │ ├── test1
│ │ ├── test2
│ │ ├── testa
│ │ ├── testb
│ │ └── top.html
│ └── README
└── folder4
├── afile
└── afolder
└── onefile

“required”: {
“files”: [“test1”, “testa”],
“directories”: []
},
“other”: {
“files”: [“test2”, “testb”],
“directories”: []
}
}

If

myfolder/folder2/README looked like this:

required:file2

Then myfolder/folder2/dir.json should contain these contents:

{
“index”: “”,
“required”: {
“files”: [“file2”],
“directories”: []
},
“other”: {
“files”: [“file1”, “file3”],
“directories”: [“folder3”, “emptyfolder”]
}
}

Since myfolder/folder4 doesn’t have a README, its dir.json should contain:

{
“index”: “”,
“required”: {
“files”: [],
“directories”: []
},
“other”: {
“files”: [“afile”],
“directories”: [“afolder”]
}
}

Tips

2/23/2021 CS 265 — Assignment – JSON Dir

https://www.cs.drexel.edu/~kschmidt/CS265/Assignments/Bash-Dir2Json/ 4/4

Make sure you understand the problem before you begin to code. It’s very difficult to solve a problem
that you don’t even understand.
Plan out your code before you write it. For example, if you plan on cding into every directory, upon
reflection, you’ll realize that you’ll need to figure out how to cd back out to the directory you were in
previously to keep exploring. (Hint: use pushd/popd or don’t cd at all).
Create your own test directory that you can test your script on as you write it. Your test should contain all
of the edge cases you can think of (missing READMEs, missing index/required entries, empty folders,
etc.).
Write a little bit at a time, then test, then write a little bit more. As a rough guide, you shouldn’t write more
than three lines of code without stopping to test what you’ve written. If you write 20 lines of code and then
run your script for the first time, it’ll contain a dozen errors and you’ll have no idea where they are.

So, process a single directory
Then, simply verify that you visit each directory. Maybe ls
Now put them together

Separate your code into functions to make it easier to test. See
~kschmidt/public_html/CS265/Labs/Bash/func.bash for some usage examples.
You may want to use Bash arrays to create the lists of files/directories in the other key; see
~kschmidt/public_html/CS265/Labs/Bash/arrays.bash for some usage examples.

Submission

Do not submit temporary files, nor your test data. Only submit the required scripts, and any helper files you
wrote.

What to hand in

a1-top — your top-level script, the entry point, the script we will call with the directory to be processed
All the rest of your source code
README (optional) — anything you want to tell us before we grade.

What Will You Get?

We provide professional writing services to help you score straight A’s by submitting custom written assignments that mirror your guidelines.

Premium Quality

Get result-oriented writing and never worry about grades anymore. We follow the highest quality standards to make sure that you get perfect assignments.

Experienced Writers

Our writers have experience in dealing with papers of every educational level. You can surely rely on the expertise of our qualified professionals.

On-Time Delivery

Your deadline is our threshold for success and we take it very seriously. We make sure you receive your papers before your predefined time.

24/7 Customer Support

Someone from our customer support team is always here to respond to your questions. So, hit us up if you have got any ambiguity or concern.

Complete Confidentiality

Sit back and relax while we help you out with writing your papers. We have an ultimate policy for keeping your personal and order-related details a secret.

Authentic Sources

We assure you that your document will be thoroughly checked for plagiarism and grammatical errors as we use highly authentic and licit sources.

Moneyback Guarantee

Still reluctant about placing an order? Our 100% Moneyback Guarantee backs you up on rare occasions where you aren’t satisfied with the writing.

Order Tracking

You don’t have to wait for an update for hours; you can track the progress of your order any time you want. We share the status after each step.

image

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

image

Trusted Partner of 9650+ Students for Writing

From brainstorming your paper's outline to perfecting its grammar, we perform every step carefully to make your paper worthy of A grade.

Preferred Writer

Hire your preferred writer anytime. Simply specify if you want your preferred expert to write your paper and we’ll make that happen.

Grammar Check Report

Get an elaborate and authentic grammar check report with your work to have the grammar goodness sealed in your document.

One Page Summary

You can purchase this feature if you want our writers to sum up your paper in the form of a concise and well-articulated summary.

Plagiarism Report

You don’t have to worry about plagiarism anymore. Get a plagiarism report to certify the uniqueness of your work.

Free Features $66FREE

  • Most Qualified Writer $10FREE
  • Plagiarism Scan Report $10FREE
  • Unlimited Revisions $08FREE
  • Paper Formatting $05FREE
  • Cover Page $05FREE
  • Referencing & Bibliography $10FREE
  • Dedicated User Area $08FREE
  • 24/7 Order Tracking $05FREE
  • Periodic Email Alerts $05FREE
image

Our Services

Join us for the best experience while seeking writing assistance in your college life. A good grade is all you need to boost up your academic excellence and we are all about it.

  • On-time Delivery
  • 24/7 Order Tracking
  • Access to Authentic Sources
Academic Writing

We create perfect papers according to the guidelines.

Professional Editing

We seamlessly edit out errors from your papers.

Thorough Proofreading

We thoroughly read your final draft to identify errors.

image

Delegate Your Challenging Writing Tasks to Experienced Professionals

Work with ultimate peace of mind because we ensure that your academic work is our responsibility and your grades are a top concern for us!

Check Out Our Sample Work

Dedication. Quality. Commitment. Punctuality

Categories
All samples
Essay (any type)
Essay (any type)
The Value of a Nursing Degree
Undergrad. (yrs 3-4)
Nursing
2
View this sample

It May Not Be Much, but It’s Honest Work!

Here is what we have achieved so far. These numbers are evidence that we go the extra mile to make your college journey successful.

0+

Happy Clients

0+

Words Written This Week

0+

Ongoing Orders

0%

Customer Satisfaction Rate
image

Process as Fine as Brewed Coffee

We have the most intuitive and minimalistic process so that you can easily place an order. Just follow a few steps to unlock success.

See How We Helped 9000+ Students Achieve Success

image

We Analyze Your Problem and Offer Customized Writing

We understand your guidelines first before delivering any writing service. You can discuss your writing needs and we will have them evaluated by our dedicated team.

  • Clear elicitation of your requirements.
  • Customized writing as per your needs.

We Mirror Your Guidelines to Deliver Quality Services

We write your papers in a standardized way. We complete your work in such a way that it turns out to be a perfect description of your guidelines.

  • Proactive analysis of your writing.
  • Active communication to understand requirements.
image
image

We Handle Your Writing Tasks to Ensure Excellent Grades

We promise you excellent grades and academic excellence that you always longed for. Our writers stay in touch with you via email.

  • Thorough research and analysis for every order.
  • Deliverance of reliable writing service to improve your grades.
Place an Order Start Chat Now
image

Order your essay today and save 30% with the discount code Happy