GithubHelp home page GithubHelp logo

moji's Introduction

MOJI

MOJI is an unofficial Java client for the Moss plagiarism detection service. It has the following key features:

  • Pure Java implementation with few dependencies
  • Cross-platform support

Requirements

  • Java 6 or better
  • Apache Commons IO 2.3

Installation

Either

  • download the JAR or
  • build it yourself using Maven.

Then include it in your Java project.

Quick Start

1. Preparation

MOJI requires some kind of Moss-compatible directory structure to distinguish between different students.

To achieve this, copy all student source codes to a directory where each subdirectory contains the source code of a single student.

A valid directory containing student solutions might look like this:

solution_directory
|- student1
   |- classA.java
   |- ...
|- student2
   |- ...
|_ student3
   |- ...

2. Download the JAR (or build it yourself) and include it in your project.

3. Create a new socket client object to communicate with the Moss server.

Example code

import java.io.File;
import java.util.Collection;
import java.net.URL;
import org.apache.commons.io.FileUtils;
import it.zielke.moji.SocketClient;

public class QuickStart {
	public static void main(String[] args) throws Exception {
		// a list of students' source code files located in the prepared
		// directory.
		Collection<File> files = FileUtils.listFiles(new File(
			"C:\\temp\\solution_directory"), new String[] { "java" }, true);

		// a list of base files that was given to the students for this
		// assignment.
		Collection<File> baseFiles = FileUtils.listFiles(new File(
			"C:\\temp\\base_directory"), new String[] { "java" }, true);
		
		//get a new socket client to communicate with the Moss server
		//and set its parameters.
		SocketClient socketClient = new SocketClient();
		
		//set your Moss user ID
		socketClient.setUserID("123456789");
		//socketClient.setOpt...
		
		//set the programming language of all student source codes
		socketClient.setLanguage("java");
		
		//initialize connection and send parameters
		socketClient.run();
		
		// upload all base files
		for (File f : baseFiles) {
			socketClient.uploadBaseFile(f);
		}
		
		//upload all source files of students
		for (File f : files) {
			socketClient.uploadFile(f);
		}
		
		//finished uploading, tell server to check files
		socketClient.sendQuery();
		
		//get URL with Moss results and do something with it
		URL results = socketClient.getResultURL();
		System.out.println("Results available at " + results.toString());
	}
}

Tests

To execute all tests, simply run

mvn test

Documentation

http://www.zielke.it/moji/

Attribution

This software communicates with Moss by Alex Aiken of Stanford University. MOJI is not in any way affiliated with Moss.

License

MOJI is under MIT License. Please see the corresponding license files.

moji's People

Contributors

pyq avatar blangel avatar rahulkhanna89 avatar nordicway avatar

Watchers

James Cloos avatar JQ Men avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.