适用于计算机学院同学的作业目录管理系统

2024-04-22 12:08

本文主要是介绍适用于计算机学院同学的作业目录管理系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

摘要

对于计算机学院的同学(或其它院的同学),完成各种涉及程序设计的实验、作业、大作业、课程论文等可能已经是习以为常的事了。为每项作业建立目录、打包等工作虽然简单,但本着尽量将重复性劳动自动化以降低错误率和节省时间的原则,本文介绍了一种方法,通过充分利用构建工具 Apache Ant,实现作业目录的自动化管理。

基本作业目录结构

作业目录树的根目录名在本文中被称作${aid},其中 aid 是 assignment ID 的缩写,本人在使用此管理工具时常令根目录名为数字,表示第几次实验或作业。

通常一个作业目录树中包含以下几项文件或文件夹:

  • 报告文件夹(包含需要提交的实验报告、课程论文等)
  • 代码文件夹(包含作业中涉及的源代码,例如把整个 Eclipse 工程目录放在这里供老师参考)
  • 图片文件夹(包含程序截图、硬件连接图例、照片等)

对应于本实现中的目录名为:

  • report
  • project
  • pic

除此以外,可能还会包含参考资料文件夹等,不过个人觉得以上三个文件夹是通常而言必不可少的基本目录结构。

目录管理需要实现的功能

作为一个实用的作业目录管理工具,需要实现以下功能:

  • 创建基本目录结构(创建如上所述的基本目录结构,避免一个个手动建文件夹)
  • 发布用于交作业的压缩包(包含必要的运行前检查,如报告是否存在;以及自动按正确命名格式生成压缩包)
  • 清除发布与备份(将已存在的压缩包转为备份格式,并清除所有中间文件)
  • 导出作业目录(将作业目录整个复制到可移动存储介质上,例如用于放到学校机房电脑上完成作业)
  • 导入作业目录(将作业目录从可移动存储介质上导入或更新到本地,例如用于在机房完成作业后迁移或本地磁盘的过程)

对应于本实现中的功能名为:

  • make
  • dist
  • clean-dist
  • export
  • import

本实现中所需要的外部属性

为增强目录管理功能的通用性,本实现中将基本功能放到根构建文件中,而把需要定制的部分放到其它构建文件,并在那里调用根构建文件。根构建文件需要一些外部属性(property)以实现其可定制性。

  • aid:根目录名,必需的外部属性
  • report.name:报告名(包含扩展名),管理工具需要知道报告名以在发布前检查报告文件夹中是否存在以此命名的文件;在做发布清除发布 操作时需要用到
  • dist.arc.name:交作业压缩包名,需要以 .zip 为扩展名,因为本实现使用 zip 格式进行压缩;在做发布清除发布 操作时需要用到
  • ext.dir:可移动存储介质路径,在做导入导出 操作时需要用到

这些外部属性可以在构建文件中调用根构建文件前通过 property 任务指定,也可在命令行中通过 -D 选项指定。例如:

ant -Daid=2 make

创建了一个根目录名为“2”的作业目录(如果重名文件夹不存在),此处指定外部属性 aid 值为“2”。

根构建文件使用方法

<ant antfile="${root-buildfile}" target="${target-to-invoke}" />

调用了所处路径为 ${root-buildfile} 的根构建文件中名为 ${target-to-invoke} 目标。

运行效果

假设根构建文件的全路径被 root-buildfile 属性指定,假设所有被管理的作业文件夹所处的目录(被称作“作业库”)中除它们自己外有且只有可定制的构建文件 build.xml。在此处以根目录名为“3”的作业文件夹为例。

作业库初始状态

init.jpg

创建基本目录

ant -Daid=3 make

after-make_1.jpg

这是作业库的样子。

after-make_2.jpg

这是作业目录“3”内部的样子。

完成作业

模拟了插入截图和写完报告的过程,源代码部分未模拟。

before-dist_1.jpg

这是pic目录中的内容。

before-dist_2.jpg

这是report目录中的内容。

发布

ant -Daid=3 dist

after-dist_1.jpg

这是发布后作业目录“3”内部的样子,其中dist目录是临时文件夹,包含压缩包中的内容,如果不删除,那么修改后再次发布时用时会更短一些。压缩包的名字需要在定制的构建文件中指定。

after-dist_2.jpg

这是压缩包内部的样子,因为没有往project(代码文件夹)中放东西,所以没有将其包含在压缩包内。如果在发布时没有往report(报告文件夹)中放入名为“Lab3 Report.docx”的报告(此名称需要在定制的构建文件中指定),那么会报错“report not found”。

after-dist_3.jpg

这是压缩包中pic文件夹内部的样子。

清除发布

ant -Daid=3 clean-dist

after-clean-dist.jpg

这是作业目录“3”内部的样子,dist文件夹被删除了,而且压缩包被加了bak后缀转成了备份文件的形式,该文件会在下一次发布前删除。

导入导出 功能就不展示了,没什么直观效果。


附录

附录中记录了构建文件代码,使用的是 Apache Ant 1.9.7。

根构建文件

<project name="assignment-mgmt"><!-- External property: name="aid", type="int" required="true" --><!-- External property: name="report.name" type="str" required="true for target dist" --><!-- External property: name="dist.arc.name" type="str" required="true for target dist" --><!-- External property: name="ext.dir" type="location" required="true for target export, import" --><description>Simplify the assignment file management.The directory template for each assignment directory is such:root directory| report             [DIRECTORY]| project            [DIRECTORY]| pic                [DIRECTORY]| dist               [DIRECTORY]| ${dist.arc.name}   [FILE]wherereport        - directory for reportsproject       - directory for source codespic           - directory for snapshots, photos, etcdist          - temporary directory for holding submission files;appear only after target &quot;dist&quot;${dist.arc.name} - an archive file for submissionThe &quot;dist&quot; folder as well as the final archive contain thefollowing contents:* project directory unless it's empty* pic directory unless it's empty* the report file specified in external properties under the reportdirectoryExternal properties required:aid           - assignment_id, required by all targetsreport.name   - report name, required by target &quot;dist&quot;dist.arc.name - the name of zip archive, required by target&quot;dist&quot;ext.dir       - external directory, esp portable device, to temporarilyaccommodate the assignment directory, required bytarget &quot;import&quot; and &quot;export&quot;</description><!-- main directory names --><property name="report.dir.name" value="report" /><property name="proj.dir.name" value="project" /><property name="pic.dir.name" value="pic" /><!-- directory locations --> <property name="dist.dir" location="${aid}/dist" /><!-- temporary --><property name="report.dir" location="${aid}/${report.dir.name}" /><property name="proj.dir" location="${aid}/${proj.dir.name}" /><property name="pic.dir" location="${aid}/${pic.dir.name}" /><!--Public targets--><target name="make" depends="-extvar-check" description="make &quot;${aid}&quot; assignment directories"><mkdir dir="${aid}" /><mkdir dir="${report.dir}" /><mkdir dir="${proj.dir}" /><mkdir dir="${pic.dir}" /></target><target name="dist" depends="-extvar-check-dist,-check-report-availability" description="distribute the assignment under directory &quot;${aid}&quot; before removing the backup version of previous build if any"><delete file="${aid}/${dist.arc.name}.bak" failonerror="false" /><mkdir dir="${dist.dir}" /><copy todir="${dist.dir}" includeemptydirs="false"><fileset dir="${report.dir}"><include name="${report.name}" /></fileset><fileset dir="${aid}"><include name="${pic.dir.name}/**" /><include name="${proj.dir.name}/**" /></fileset></copy><zip destfile="${aid}/${dist.arc.name}" basedir="${dist.dir}" update="true" /></target><target name="clean-dist" depends="-extvar-check-dist" description="clean distribution of assignment under directory &quot;${aid}&quot; but leave a backup version of original distributed archive intact"><delete dir="${dist.dir}" /><move file="${aid}/${dist.arc.name}" tofile="${aid}/${dist.arc.name}.bak" /></target><target name="export" depends="-extvar-check-export" description="export assignment directory &quot;${aid}&quot; to directory specified by property &quot;ext.dir&quot;"><mkdir dir="${ext.dir}/${aid}" /><copy todir="${ext.dir}/${aid}"><fileset dir="${aid}" /></copy></target><target name="import" depends="-extvar-check-import" description="import/update assignment directory &quot;${aid}&quot; from directory &quot;${ext.dir}/${aid}&quot; specified by property &quot;ext.dir&quot;"><copy todir="${aid}"><fileset dir="${ext.dir}/${aid}" /></copy></target><!--Auxilliary targets--><!-- ensure all basic external properties necessary are available, and fail the build otherwise --><target name="-extvar-check"><!-- condition on external property "aid" --><condition property="aid.available"><isset property="aid" /></condition><fail unless="aid.available">external property "aid" required yet not found</fail></target><!-- ensure all external properties required by target &quot;dist&quot; are available, and fail the build otherwise --><target name="-extvar-check-dist" depends="-extvar-check"><!-- condition on external property "report.name" --><condition property="report.name.available"><isset property="report.name" /></condition><fail unless="report.name.available">external property "report.name" required yet not found</fail><!-- condition on external property "dist.arc.name" --><condition property="dist.arc.name.available"><isset property="dist.arc.name" /></condition><fail unless="dist.arc.name.available">external property "dist.arc.name" required yet not found</fail></target><!-- ensure report file is available before distribution --><target name="-check-report-availability"><!-- condition on the availability of the report file --><available property="report.available" file="${report.dir}/${report.name}" type="file" /><fail unless="report.available">report "${report.name}" not found under "${report.dir}"</fail></target><!-- ensure all external properties required by target &quot;import&quot; and &quot;export&quot; are available, and fail the build otherwise --><target name="-extvar-check-import-export" depends="-extvar-check"><!-- condition on external property "ext.dir" --><condition property="ext.dir.available"><isset property="ext.dir" /></condition><fail unless="ext.dir.available">external property "ext.dir" required yet not found</fail></target><!-- ensure all external properties required by target &quot;import&quot; are available and valid, and fail the build otherwise --><target name="-extvar-check-import" depends="-extvar-check-import-export"><!-- condition on the existence of import source directory --><available property="import.srcdir.available" file="${ext.dir}/${aid}" type="dir" /><fail unless="import.srcdir.available">the directory &quot;${ext.dir}/${aid}&quot; from which to import the assignment cannot be found</fail></target><!-- ensure all external properties required by target &quot;export&quot; are available and valid, and fail the build otherwise --><target name="-extvar-check-export" depends="-extvar-check-import-export"><!-- condition on the existence of export target directory --><available property="export.destdir.available" file="${ext.dir}" type="dir" /><fail unless="export.destdir.available">the directory &quot;${ext.dir}&quot; to which to export the assignment cannot be found</fail></target></project>

 定制的构建文件示例

对应于正文中的运行效果范例。

<project name="cloud-computing-assignment-mgmt" basedir="."><description>Simplify the assignment file management.The directory template for each assignment directory is such:root directory| report             [DIRECTORY]| project            [DIRECTORY]| pic                [DIRECTORY]| dist               [DIRECTORY]| ${dist.arc.name}   [FILE]wherereport        - directory for reportsproject       - directory for source codespic           - directory for snapshots, photos, etcdist          - temporary directory for holding submission files;appear only after target &quot;dist&quot;${dist.arc.name} - an archive file for submissionThe &quot;dist&quot; folder as well as the final archive contain thefollowing contents:* project directory unless it's empty* pic directory unless it's empty* the report file specified in external properties under the reportdirectoryExternal properties required:aid           - assignment_id, required by ALL targetsext.dir       - external directory, esp portable device, to temporarilyaccommodate the assignment directory, required bytarget &quot;import&quot; and &quot;export&quot;</description><property name="root_antfile" location="../../../build.xml" /><!-- 此处指定了压缩包名和报告名 --><property name="dist.arc.name" value="Lab${aid}.zip" /><property name="report.name" value="Lab${aid} Report.docx" /><!-- 如果在调用了根构建文件的相应任务后还有其它定制任务需要完成,直接加在<ant>调用之后即可 --><target name="make" description="make &quot;${aid}&quot; assignment directories"><ant antfile="${root_antfile}" target="make" /><!-- 这里写其它定制操作(虽然本例中不需要),下同 --></target><target name="dist" description="distribute the assignment under directory &quot;${aid}&quot; before removing the backup version of previous build if any"><ant antfile="${root_antfile}" target="dist" /></target><target name="clean-dist" description="clean distribution of assignment under directory &quot;${aid}&quot; but leave a backup version of original distributed archive intact"><ant antfile="${root_antfile}" target="clean-dist" /></target><target name="export" description="export assignment directory &quot;${aid}&quot; to directory specified by property &quot;ext.dir&quot;"><ant antfile="${root_antfile}" target="export" /></target><target name="import" description="import/update assignment directory &quot;${aid}&quot; from directory &quot;${ext.dir}/${aid}&quot; specified by property &quot;ext.dir&quot;"><ant antfile="${root_antfile}" target="import" /></target></project>

这篇关于适用于计算机学院同学的作业目录管理系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/925735

相关文章

Linux修改pip临时目录方法的详解

《Linux修改pip临时目录方法的详解》在Linux系统中,pip在安装Python包时会使用临时目录(TMPDIR),但默认的临时目录可能会受到存储空间不足或权限问题的影响,所以本文将详细介绍如何... 目录引言一、为什么要修改 pip 的临时目录?1. 解决存储空间不足的问题2. 解决权限问题3. 提

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

更改docker默认数据目录的方法步骤

《更改docker默认数据目录的方法步骤》本文主要介绍了更改docker默认数据目录的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1.查看docker是否存在并停止该服务2.挂载镜像并安装rsync便于备份3.取消挂载备份和迁

mysql重置root密码的完整步骤(适用于5.7和8.0)

《mysql重置root密码的完整步骤(适用于5.7和8.0)》:本文主要介绍mysql重置root密码的完整步骤,文中描述了如何停止MySQL服务、以管理员身份打开命令行、替换配置文件路径、修改... 目录第一步:先停止mysql服务,一定要停止!方式一:通过命令行关闭mysql服务方式二:通过服务项关闭

如何测试计算机的内存是否存在问题? 判断电脑内存故障的多种方法

《如何测试计算机的内存是否存在问题?判断电脑内存故障的多种方法》内存是电脑中非常重要的组件之一,如果内存出现故障,可能会导致电脑出现各种问题,如蓝屏、死机、程序崩溃等,如何判断内存是否出现故障呢?下... 如果你的电脑是崩溃、冻结还是不稳定,那么它的内存可能有问题。要进行检查,你可以使用Windows 11

python获取当前文件和目录路径的方法详解

《python获取当前文件和目录路径的方法详解》:本文主要介绍Python中获取当前文件路径和目录的方法,包括使用__file__关键字、os.path.abspath、os.path.realp... 目录1、获取当前文件路径2、获取当前文件所在目录3、os.path.abspath和os.path.re

作业提交过程之HDFSMapReduce

作业提交全过程详解 (1)作业提交 第1步:Client调用job.waitForCompletion方法,向整个集群提交MapReduce作业。 第2步:Client向RM申请一个作业id。 第3步:RM给Client返回该job资源的提交路径和作业id。 第4步:Client提交jar包、切片信息和配置文件到指定的资源提交路径。 第5步:Client提交完资源后,向RM申请运行MrAp

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧

工厂ERP管理系统实现源码(JAVA)

工厂进销存管理系统是一个集采购管理、仓库管理、生产管理和销售管理于一体的综合解决方案。该系统旨在帮助企业优化流程、提高效率、降低成本,并实时掌握各环节的运营状况。 在采购管理方面,系统能够处理采购订单、供应商管理和采购入库等流程,确保采购过程的透明和高效。仓库管理方面,实现库存的精准管理,包括入库、出库、盘点等操作,确保库存数据的准确性和实时性。 生产管理模块则涵盖了生产计划制定、物料需求计划、