Column1
stringlengths 4
8
| content
stringlengths 380
11.7k
| repo
stringlengths 10
67
| path
stringlengths 13
123
| token_length
int64 159
3.55k
| original_comment
stringlengths 17
756
| comment_type
stringclasses 2
values | detected_lang
stringclasses 1
value | prompt
stringlengths 315
11.6k
| file-tokens-Qwen/CodeQwen1.5-7B
int64 153
3.71k
| comment-tokens-Qwen/CodeQwen1.5-7B
int64 11
390
| comment_tail_length_Qwen/CodeQwen1.5-7B
int64 4
350
| file-tokens-bigcode/starcoder2-7b
int64 159
3.55k
| comment-tokens-bigcode/starcoder2-7b
int64 14
574
| comment_tail_length_bigcode/starcoder2-7b
int64 0
447
| file-tokens-google/codegemma-7b
int64 124
3.15k
| comment-tokens-google/codegemma-7b
int64 7
246
| comment_tail_length_google/codegemma-7b
int64 4
205
| file-tokens-ibm-granite/granite-8b-code-base
int64 159
3.54k
| comment-tokens-ibm-granite/granite-8b-code-base
int64 14
570
| comment_tail_length_ibm-granite/granite-8b-code-base
int64 0
443
| file-tokens-meta-llama/CodeLlama-7b-hf
int64 176
4.05k
| comment-tokens-meta-llama/CodeLlama-7b-hf
int64 16
632
| comment_tail_length_meta-llama/CodeLlama-7b-hf
int64 6
508
| excluded-based-on-tokenizer-Qwen/CodeQwen1.5-7B
bool 2
classes | excluded-based-on-tokenizer-bigcode/starcoder2-7b
bool 2
classes | excluded-based-on-tokenizer-google/codegemma-7b
bool 2
classes | excluded-based-on-tokenizer-ibm-granite/granite-8b-code-base
bool 2
classes | excluded-based-on-tokenizer-meta-llama/CodeLlama-7b-hf
bool 2
classes | include-for-inference
bool 2
classes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9063_3 | package javaproject;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.util.logging.Level;
import java.util.logging.Logger;
public class StudentFrame extends JFrame
{
private ArrayList<Student> mstudents=new ArrayList<Student>();
private JButton addButton,showButton,saveButton,loadButton,removeButton;
private JTextArea showArea;
public String removal;
int temp=0;
//Προσθέτοντας Φοιτητή
void addStudent()
{
mstudents.add(new Student());
}
//Εμφανίζοντας Μαθητή
void showStudent()
{
String text="";
for(Student x :mstudents)
{
text+=x+"\n";
}
showArea.setText(text);
}
//Αποθυκεύοντας Μαθητή
void saveStudent()
{
JFileChooser chooser=new JFileChooser();
int returnVal = chooser.showSaveDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
try {
String filename=chooser.getSelectedFile().getAbsolutePath();
FileWriter fw=null;
fw = new FileWriter(filename);
PrintWriter pw=new PrintWriter(fw);
for(Student x:mstudents)
{
pw.println(""+x);
}
fw.close();
} catch (IOException ex) {
Logger.getLogger(StudentFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
//Φορτώνοντας Μαθητή
void loadStudent()
{
JFileChooser chooser=new JFileChooser();
int returnVal = chooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
try {
String filename=chooser.getSelectedFile().getAbsolutePath();
FileReader rw=new FileReader(filename);
Scanner in=new Scanner(rw);
mstudents=new ArrayList<Student>();
while(in.hasNextLine())
{
String line=in.nextLine();
String[] parts=line.split(",");
mstudents.add(new Student(parts[0],parts[1],parts[2],Integer.parseInt(parts[3])));
}
} catch (IOException ex)
{
}
}
}
//Διαγράφωντας Μαθητή
void removeStudent(){
removal = JOptionPane.showInputDialog("Παρακαλώ δώστε ΑΜ μαθήματή");
//οσο ο μαθητής υπάρχει
boolean found =true;
while(found)
{
found=false;
for(int i=0;i<mstudents.size();i++)
{
if(temp==0){
if(mstudents.get(i).getam().equals(removal))
{
mstudents.remove(i);
found=true;
temp=1;
break;
}
}
}
}
//Συνθήκη βρέθηκε τελεστής temp=1 αληθές , 0=ψευδές
if(temp==0){
JOptionPane.showMessageDialog(null,"Ο Αριθμός Μητρώου δεν βρέθηκε!");
}
else if(temp==1){
JOptionPane.showMessageDialog(null,"Βρέθηκε ο αριθμός μητρώου, παρακαλώ πατήστε 'Εμφάνιση' ");
temp=0;
}
}
//Φτιάχνοντας τα κουμπιά
void makeButtons()
{
JPanel buttonPanel=new JPanel();
buttonPanel.setLayout(new GridLayout(1,2));
addButton=new JButton("Νεος Μαθητής");
addButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
addStudent();
}
});
buttonPanel.add(addButton);
showButton=new JButton("Εμφάνιση");
buttonPanel.add(showButton);
showButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
showStudent();
}
});
saveButton=new JButton("Αποθύκευση");
buttonPanel.add(saveButton);
saveButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
saveStudent();
}
});
loadButton=new JButton("Φόρτωση");
buttonPanel.add(loadButton);
loadButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
loadStudent();
}
});
removeButton = new JButton("Διαγραφή Μαθητή");
buttonPanel.add(removeButton);
removeButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
removeStudent();
}
});
add(buttonPanel);
}
//Φτιάχνοντας το StudentFrame
public StudentFrame(String title)
{
super(title);
setSize(750,300);
setLayout(new GridLayout(3,1));
setResizable(true);
makeButtons();
showArea=new JTextArea("");
showArea.setRows(5);
showArea.setColumns(25);
showArea.setEditable(false);
JScrollPane sp=new JScrollPane(showArea);
add(sp);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
} | AlexandrosPanag/My_Java_Projects | Lesson Enrollment Project/StudentFrame.java | 1,453 | //Φτιάχνοντας το StudentFrame
| line_comment | el | package javaproject;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.util.logging.Level;
import java.util.logging.Logger;
public class StudentFrame extends JFrame
{
private ArrayList<Student> mstudents=new ArrayList<Student>();
private JButton addButton,showButton,saveButton,loadButton,removeButton;
private JTextArea showArea;
public String removal;
int temp=0;
//Προσθέτοντας Φοιτητή
void addStudent()
{
mstudents.add(new Student());
}
//Εμφανίζοντας Μαθητή
void showStudent()
{
String text="";
for(Student x :mstudents)
{
text+=x+"\n";
}
showArea.setText(text);
}
//Αποθυκεύοντας Μαθητή
void saveStudent()
{
JFileChooser chooser=new JFileChooser();
int returnVal = chooser.showSaveDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
try {
String filename=chooser.getSelectedFile().getAbsolutePath();
FileWriter fw=null;
fw = new FileWriter(filename);
PrintWriter pw=new PrintWriter(fw);
for(Student x:mstudents)
{
pw.println(""+x);
}
fw.close();
} catch (IOException ex) {
Logger.getLogger(StudentFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
//Φορτώνοντας Μαθητή
void loadStudent()
{
JFileChooser chooser=new JFileChooser();
int returnVal = chooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
try {
String filename=chooser.getSelectedFile().getAbsolutePath();
FileReader rw=new FileReader(filename);
Scanner in=new Scanner(rw);
mstudents=new ArrayList<Student>();
while(in.hasNextLine())
{
String line=in.nextLine();
String[] parts=line.split(",");
mstudents.add(new Student(parts[0],parts[1],parts[2],Integer.parseInt(parts[3])));
}
} catch (IOException ex)
{
}
}
}
//Διαγράφωντας Μαθητή
void removeStudent(){
removal = JOptionPane.showInputDialog("Παρακαλώ δώστε ΑΜ μαθήματή");
//οσο ο μαθητής υπάρχει
boolean found =true;
while(found)
{
found=false;
for(int i=0;i<mstudents.size();i++)
{
if(temp==0){
if(mstudents.get(i).getam().equals(removal))
{
mstudents.remove(i);
found=true;
temp=1;
break;
}
}
}
}
//Συνθήκη βρέθηκε τελεστής temp=1 αληθές , 0=ψευδές
if(temp==0){
JOptionPane.showMessageDialog(null,"Ο Αριθμός Μητρώου δεν βρέθηκε!");
}
else if(temp==1){
JOptionPane.showMessageDialog(null,"Βρέθηκε ο αριθμός μητρώου, παρακαλώ πατήστε 'Εμφάνιση' ");
temp=0;
}
}
//Φτιάχνοντας τα κουμπιά
void makeButtons()
{
JPanel buttonPanel=new JPanel();
buttonPanel.setLayout(new GridLayout(1,2));
addButton=new JButton("Νεος Μαθητής");
addButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
addStudent();
}
});
buttonPanel.add(addButton);
showButton=new JButton("Εμφάνιση");
buttonPanel.add(showButton);
showButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
showStudent();
}
});
saveButton=new JButton("Αποθύκευση");
buttonPanel.add(saveButton);
saveButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
saveStudent();
}
});
loadButton=new JButton("Φόρτωση");
buttonPanel.add(loadButton);
loadButton.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent ae)
{
loadStudent();
}
});
removeButton = new JButton("Διαγραφή Μαθητή");
buttonPanel.add(removeButton);
removeButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
removeStudent();
}
});
add(buttonPanel);
}
//Φτιάχνοντας το<SUF>
public StudentFrame(String title)
{
super(title);
setSize(750,300);
setLayout(new GridLayout(3,1));
setResizable(true);
makeButtons();
showArea=new JTextArea("");
showArea.setRows(5);
showArea.setColumns(25);
showArea.setEditable(false);
JScrollPane sp=new JScrollPane(showArea);
add(sp);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
} | 1,792 | 13 | 11 | 1,453 | 18 | 14 | 1,456 | 10 | 8 | 1,451 | 18 | 14 | 1,813 | 18 | 15 | false | false | false | false | false | true |
1027_3 | package api;
import java.io.Serializable;
import java.time.LocalDate;
/**
* Η κλάση αυτή αναπαριστά μια αξιολόγηση ενός καταλύματος
* @author Anestis Zotos
*/
public class Evaluation implements Serializable {
private String txt_eval; //αξιολόγηση σε μορφή κειμένου
private double num_eval; //αξιολόγηση σε μορφή αριθμού
private LocalDate curDate; //ημερομηνία τελευταίας(πιο πρόσφατης)αξιολόγησης
//constructor
public Evaluation(String txt,double num)
{
txt_eval=txt;
num_eval=num;
curDate=LocalDate.now();
}
//empty constructor
public Evaluation(){
curDate=LocalDate.now();
txt_eval=null;
num_eval=0;
}
//getters
public String getTxt_eval(){
return txt_eval;
}
public double getNum_eval(){
return num_eval;
}
//setters
public void setTxt_eval(String s){
txt_eval=s;
curDate=LocalDate.now();
}
public void setNum_eval(double num){
num_eval=num;
curDate=LocalDate.now();
}
}
| AnestisZotos/Accommodations-rating-platform | api/Evaluation.java | 387 | //ημερομηνία τελευταίας(πιο πρόσφατης)αξιολόγησης
| line_comment | el | package api;
import java.io.Serializable;
import java.time.LocalDate;
/**
* Η κλάση αυτή αναπαριστά μια αξιολόγηση ενός καταλύματος
* @author Anestis Zotos
*/
public class Evaluation implements Serializable {
private String txt_eval; //αξιολόγηση σε μορφή κειμένου
private double num_eval; //αξιολόγηση σε μορφή αριθμού
private LocalDate curDate; //ημερομηνία τελευταίας(πιο<SUF>
//constructor
public Evaluation(String txt,double num)
{
txt_eval=txt;
num_eval=num;
curDate=LocalDate.now();
}
//empty constructor
public Evaluation(){
curDate=LocalDate.now();
txt_eval=null;
num_eval=0;
}
//getters
public String getTxt_eval(){
return txt_eval;
}
public double getNum_eval(){
return num_eval;
}
//setters
public void setTxt_eval(String s){
txt_eval=s;
curDate=LocalDate.now();
}
public void setNum_eval(double num){
num_eval=num;
curDate=LocalDate.now();
}
}
| 448 | 35 | 31 | 387 | 48 | 42 | 385 | 23 | 19 | 387 | 48 | 42 | 496 | 49 | 43 | false | false | false | false | false | true |
1073_22 | /*
Όνομα: Άγγελος Τζώρτζης
Α.Μ.: ice18390094
*/
package netprog_project;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class BankAccountDao {
public static Connection getConnection() {
Connection conn = null;
try {
// Δημιουγρούμε σύνδεση στην βάση μας ανάλογα με ποιά βάση χρησιμοποιόυμε
// και τα στοιχεία της.
Class.forName("org.mariadb.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mariadb://localhost:4306/bank", "Tzortzis", "1234");
} catch (ClassNotFoundException | SQLException ex) {
}
return conn;
}
public static int addBankAccount(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Με την χρήση PreparedStatement που είναι μία ασφαλής μέθοδος,
// περνάμε στην βάση μας τα στοιχεία που εισάγαμε απο το HTML αρχείο
// και δώσαμε τιμές στο αντικέιμενο μας
PreparedStatement ps = conn.prepareStatement("INSERT INTO bank_accounts(firstName, lastName, phoneNumber, email, accountBalance, active) VALUES (?, ?, ?, ?, ?, ?)");
ps.setString(1, bankAccount.getFirstName());
ps.setString(2, bankAccount.getLastName());
ps.setString(3, bankAccount.getPhoneNumber());
ps.setString(4, bankAccount.getEmail());
ps.setInt(5, bankAccount.getAccountBalance());
// Θεωρούμε ότι ο λογαριασμός όταν δημιουργείται είναι ενεργός.
ps.setBoolean(6, true);
// Εκτελούμε την εντολή της SQL.
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
// Επιστρέφουμε το status (ορίζει αν πέτυχε η εντολή μας η όχι).
return status;
}
public static int deposit(BankAccount bankAccount, int amount) {
int status = 0;
// Δημιουργία σύνδεσης ώστε να έχουμε πρόσβαση στην βάση μας.
Connection conn = BankAccountDao.getConnection();
// Προσθέτουμε στον λογαριασμό το ποσό που ορίσαμε με το id του λογαριασμού που ορίσαμε.
// εφόσον αυτός τηρεί της προυποθέσεις. (Είναι ενεργός και υπάρχει)
try {
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance+? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
public static int withdraw(BankAccount bankAccount, int amount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
// Αφαιρούμε από τον λογαριασμό το ποσό που ορίσαμε με το id του λογαριασμού που ορίσαμε,
// εφόσον αυτός τηρεί της προυποθέσεις. (Είναι ενεργός, υπάρχει, και έχει τα απαραίτητα χρήματα).
try {
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance-? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
public static int transfer(BankAccount bankAccountSend, BankAccount bankAccountReceive, int amount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Αρχικά αφαιρούμε το ποσό απο τον λογαριασμό που θέλουμε να στείλει τα χρήματα.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance-? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccountSend.getAccountId());
status = ps.executeUpdate();
// Εφόσον πετύχει αυτή η συναλλαγή το ποσό που αφαιρέθηκε απο τον λογαριασμό το προσθέτουμε στον άλλο.
if (status != 0) {
ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance+? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccountReceive.getAccountId());
status = ps.executeUpdate();
}
conn.close();
} catch (SQLException ex) {
}
// Εάν πετύχει αυτή η συναλλαγή θα μας επιστρέψει status = 1 η συνάρτηση.
return status;
}
// Ενεργοποίηση λογαριασμόυ.
public static int activate(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Ενεργοποιούμε μόνο αν είναι απενεργοποιημένος.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET active=true WHERE accountId=? AND active=false");
ps.setInt(1, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
// Απενεργοποίηση λογαριασμού.
public static int deactivate(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Απενεργοποιούμε μόνο άν είναι ενεργοποιημένος.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET active=false WHERE accountId=? AND active=true");
ps.setInt(1, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
// Η παρακάτω συνάρτηση δέχεται ώς όρισμα έναν αριθμό λογαριασμού
public static BankAccount getBankAccount(int accountId) {
// Δημιουργία αντικειμένου ώστε να αποθηκεύσουμε τα στοιχεία μας.
BankAccount bankAccount = new BankAccount();
Connection conn = BankAccountDao.getConnection();
try {
// Εντολή SQL για την εμφάνιση όλων των στοιχείων της εγγραφής του αριθμού λογαριασμού.
PreparedStatement ps = conn.prepareStatement("SELECT * FROM bank_accounts WHERE accountId=?");
ps.setInt(1, accountId);
ResultSet rs = ps.executeQuery();
// Περνάμε όλα τα στοιχεία της εγγραφής στο αντικείμενο που δημιουργήσαμε πιο πάνω.
if (rs.next()) {
bankAccount.setAccountId(rs.getInt(1));
bankAccount.setFirstName(rs.getString(2));
bankAccount.setLastName(rs.getString(3));
bankAccount.setPhoneNumber(rs.getString(4));
bankAccount.setEmail(rs.getString(5));
bankAccount.setAccountBalance(rs.getInt(6));
bankAccount.setActive(rs.getBoolean(7));
}
conn.close();
} catch (SQLException ex) {
}
return bankAccount;
}
// Eμφάνιση όλων των εγγραφών του πίνακα.
public static List<BankAccount> getAllAccounts() {
// Φτιάχνουμε αντικείμενο λίστα ώστε να αποθηκεύσουμε τον κάθε λογαριασμό.
List<BankAccount> accountList = new ArrayList<>();
Connection conn = BankAccountDao.getConnection();
try {
PreparedStatement ps = conn.prepareStatement("SELECT * FROM bank_accounts");
ResultSet rs = ps.executeQuery();
while (rs.next()) {
// Φτιάχνουμε αντικείμο για να περάσουμε τα στοιχεία της εγγραφής σε ένα αντικείμενο.
BankAccount bankAccount = new BankAccount();
bankAccount.setAccountId(rs.getInt(1));
bankAccount.setFirstName(rs.getString(2));
bankAccount.setLastName(rs.getString(3));
bankAccount.setPhoneNumber(rs.getString(4));
bankAccount.setEmail(rs.getString(5));
bankAccount.setAccountBalance(rs.getInt(6));
bankAccount.setActive(rs.getBoolean(7));
// Εφόσον περαστούν όλα τα στοιχεία αποθηκεύουμε το αντικείμενο στην λίστα.
accountList.add(bankAccount);
}
conn.close();
} catch (SQLException ex) {
}
return accountList;
}
public static int deleteAccount(int accountId) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Διαγραφή μίας εγγραφής της επιλογής μας.
PreparedStatement ps = conn.prepareStatement("DELETE FROM bank_accounts WHERE accountId=?");
ps.setInt(1, accountId);
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
}
| Angelos-Tzortzis/University | Netprog_Project/src/java/netprog_project/BankAccountDao.java | 3,067 | // Εντολή SQL για την εμφάνιση όλων των στοιχείων της εγγραφής του αριθμού λογαριασμού.
| line_comment | el | /*
Όνομα: Άγγελος Τζώρτζης
Α.Μ.: ice18390094
*/
package netprog_project;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class BankAccountDao {
public static Connection getConnection() {
Connection conn = null;
try {
// Δημιουγρούμε σύνδεση στην βάση μας ανάλογα με ποιά βάση χρησιμοποιόυμε
// και τα στοιχεία της.
Class.forName("org.mariadb.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mariadb://localhost:4306/bank", "Tzortzis", "1234");
} catch (ClassNotFoundException | SQLException ex) {
}
return conn;
}
public static int addBankAccount(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Με την χρήση PreparedStatement που είναι μία ασφαλής μέθοδος,
// περνάμε στην βάση μας τα στοιχεία που εισάγαμε απο το HTML αρχείο
// και δώσαμε τιμές στο αντικέιμενο μας
PreparedStatement ps = conn.prepareStatement("INSERT INTO bank_accounts(firstName, lastName, phoneNumber, email, accountBalance, active) VALUES (?, ?, ?, ?, ?, ?)");
ps.setString(1, bankAccount.getFirstName());
ps.setString(2, bankAccount.getLastName());
ps.setString(3, bankAccount.getPhoneNumber());
ps.setString(4, bankAccount.getEmail());
ps.setInt(5, bankAccount.getAccountBalance());
// Θεωρούμε ότι ο λογαριασμός όταν δημιουργείται είναι ενεργός.
ps.setBoolean(6, true);
// Εκτελούμε την εντολή της SQL.
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
// Επιστρέφουμε το status (ορίζει αν πέτυχε η εντολή μας η όχι).
return status;
}
public static int deposit(BankAccount bankAccount, int amount) {
int status = 0;
// Δημιουργία σύνδεσης ώστε να έχουμε πρόσβαση στην βάση μας.
Connection conn = BankAccountDao.getConnection();
// Προσθέτουμε στον λογαριασμό το ποσό που ορίσαμε με το id του λογαριασμού που ορίσαμε.
// εφόσον αυτός τηρεί της προυποθέσεις. (Είναι ενεργός και υπάρχει)
try {
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance+? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
public static int withdraw(BankAccount bankAccount, int amount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
// Αφαιρούμε από τον λογαριασμό το ποσό που ορίσαμε με το id του λογαριασμού που ορίσαμε,
// εφόσον αυτός τηρεί της προυποθέσεις. (Είναι ενεργός, υπάρχει, και έχει τα απαραίτητα χρήματα).
try {
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance-? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
public static int transfer(BankAccount bankAccountSend, BankAccount bankAccountReceive, int amount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Αρχικά αφαιρούμε το ποσό απο τον λογαριασμό που θέλουμε να στείλει τα χρήματα.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance-? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccountSend.getAccountId());
status = ps.executeUpdate();
// Εφόσον πετύχει αυτή η συναλλαγή το ποσό που αφαιρέθηκε απο τον λογαριασμό το προσθέτουμε στον άλλο.
if (status != 0) {
ps = conn.prepareStatement("UPDATE bank_accounts SET accountBalance=accountBalance+? WHERE accountId=? AND active = true");
ps.setInt(1, amount);
ps.setInt(2, bankAccountReceive.getAccountId());
status = ps.executeUpdate();
}
conn.close();
} catch (SQLException ex) {
}
// Εάν πετύχει αυτή η συναλλαγή θα μας επιστρέψει status = 1 η συνάρτηση.
return status;
}
// Ενεργοποίηση λογαριασμόυ.
public static int activate(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Ενεργοποιούμε μόνο αν είναι απενεργοποιημένος.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET active=true WHERE accountId=? AND active=false");
ps.setInt(1, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
// Απενεργοποίηση λογαριασμού.
public static int deactivate(BankAccount bankAccount) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Απενεργοποιούμε μόνο άν είναι ενεργοποιημένος.
PreparedStatement ps = conn.prepareStatement("UPDATE bank_accounts SET active=false WHERE accountId=? AND active=true");
ps.setInt(1, bankAccount.getAccountId());
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
// Η παρακάτω συνάρτηση δέχεται ώς όρισμα έναν αριθμό λογαριασμού
public static BankAccount getBankAccount(int accountId) {
// Δημιουργία αντικειμένου ώστε να αποθηκεύσουμε τα στοιχεία μας.
BankAccount bankAccount = new BankAccount();
Connection conn = BankAccountDao.getConnection();
try {
// Εντολή SQL<SUF>
PreparedStatement ps = conn.prepareStatement("SELECT * FROM bank_accounts WHERE accountId=?");
ps.setInt(1, accountId);
ResultSet rs = ps.executeQuery();
// Περνάμε όλα τα στοιχεία της εγγραφής στο αντικείμενο που δημιουργήσαμε πιο πάνω.
if (rs.next()) {
bankAccount.setAccountId(rs.getInt(1));
bankAccount.setFirstName(rs.getString(2));
bankAccount.setLastName(rs.getString(3));
bankAccount.setPhoneNumber(rs.getString(4));
bankAccount.setEmail(rs.getString(5));
bankAccount.setAccountBalance(rs.getInt(6));
bankAccount.setActive(rs.getBoolean(7));
}
conn.close();
} catch (SQLException ex) {
}
return bankAccount;
}
// Eμφάνιση όλων των εγγραφών του πίνακα.
public static List<BankAccount> getAllAccounts() {
// Φτιάχνουμε αντικείμενο λίστα ώστε να αποθηκεύσουμε τον κάθε λογαριασμό.
List<BankAccount> accountList = new ArrayList<>();
Connection conn = BankAccountDao.getConnection();
try {
PreparedStatement ps = conn.prepareStatement("SELECT * FROM bank_accounts");
ResultSet rs = ps.executeQuery();
while (rs.next()) {
// Φτιάχνουμε αντικείμο για να περάσουμε τα στοιχεία της εγγραφής σε ένα αντικείμενο.
BankAccount bankAccount = new BankAccount();
bankAccount.setAccountId(rs.getInt(1));
bankAccount.setFirstName(rs.getString(2));
bankAccount.setLastName(rs.getString(3));
bankAccount.setPhoneNumber(rs.getString(4));
bankAccount.setEmail(rs.getString(5));
bankAccount.setAccountBalance(rs.getInt(6));
bankAccount.setActive(rs.getBoolean(7));
// Εφόσον περαστούν όλα τα στοιχεία αποθηκεύουμε το αντικείμενο στην λίστα.
accountList.add(bankAccount);
}
conn.close();
} catch (SQLException ex) {
}
return accountList;
}
public static int deleteAccount(int accountId) {
int status = 0;
Connection conn = BankAccountDao.getConnection();
try {
// Διαγραφή μίας εγγραφής της επιλογής μας.
PreparedStatement ps = conn.prepareStatement("DELETE FROM bank_accounts WHERE accountId=?");
ps.setInt(1, accountId);
status = ps.executeUpdate();
conn.close();
} catch (SQLException ex) {
}
return status;
}
}
| 3,098 | 46 | 43 | 3,067 | 74 | 65 | 2,391 | 32 | 30 | 3,058 | 74 | 65 | 3,718 | 82 | 69 | false | false | false | false | false | true |
3664_6 | package com.RapidPharma;
import java.util.*;
import java.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
import javax.swing.*;
import java.sql.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.RapidPharma.lista_aitima;
public class Dromologhths extends xristis{
//Επιστρέφονται όλα τα αιτήματα που αφορουν το δρομολογητη
public static ObservableList<Aitima> getaitimata(String ID_DROMOLOGITI) {
private static Statement statement;
aitimata = FXCollections.observableArrayList();
try {
statement = DataConnection.getConnection("jdbc:mysql://localhost:3306/RapidPharma", "root", "root").createStatement();
ResultSet myRs = statement.executeQuery("select * from Aitima inner join xristis a on ID_dromologiti=a.id where a.id=" + ID_DROMOLOGITI + ";");
if (myRs != null)
while (myRs.next()) {
Aitima aitima_1 = new Aitima();
aitima_1.setid(myRs.getInt(1));
aitima_1.setImerominia(myRs.getInt(2));
aitima_1.setApo_Topothesia(myRs.getString(3));
aitima_1.setPros_Topothesia(myRs.getString(4));
aitima_1.setEidos_Metaforas(myRs.getString(5));
aitima_1.setRequired_Europaletes(myRs.getInt(6));
aitima_1.setstatus(myRs.getInt(7));
aitimata.add(aitima_1);
}
} catch (Exception e) {
e.printStackTrace();
}
return aitimata;
}
public static void Diaxirisi_insert(String id_aitimatos,String id_dromologiti){
Aitima aitima = new Aitima();
try {
Connection myConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/RapidPharma", "root", "root");
Statement myStmt = myConn.createStatement();
Scanner scanner = new Scanner(System.in);
System.out.println("Εισαγωγή ευροπαλετών:");
int europaletes = scanner.nextInt();
System.out.println("Εισαγωγή ημερομηνίας:");
String imerominia = scanner.nextLine();
ResultSet myRs = myStmt.executeQuery("select sunolo_paletwn from Aitima where id_aitimatos="+id_aitimatos);
anakateuthinsi_CheckBox = new javax.swing.JCheckBox();//checkbox που επιλέγει ο χρήστης ανακατατεύθυνση
boolean checked = anakateuthinsi_CheckBox.getState();
if (anakateuthinsi_CheckBox.getState()) {
System.out.println("Δώσε την περιγραφή του αιτήματος που ανακατευθύνεται:");
String Perigrafi_anakateuthinomenou = scanner.next();
if(Perigrafi_anakateuthinomenou!=null){ //εαν δηλαδή θέλω να ανακατευθύνω ένα τμήμα του αιτήματος
System.out.println("Εισαγωγή αιτιολογίας ανακατεύθυνσης:");//αυτό θα αντικατασταθεί απο το GUI
String Aitiologia = scanner.nextLine();
System.out.println("Εισαγωγή κωδικού νεου δρομολογητή:");
int allagi_kwdikou = scanner.nextInt();
ResultSet myRs_1 = myStmt.executeQuery("Update Aitima set perigrafh="+Perigrafi_anakateuthinomenou+" where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
aitima.updateRouter(allagi_kwdikou,id_aitimatos,Aitiologia,id_dromologiti);
System.out.println("Δώσε το ID του νέου αιτήματος:");
String ID_new_Aitimatos = scanner.next();
System.out.println("Δώσε την περιγραφή του αιτήματος που δρομολογείται:");
String Perigrafi_dromologimenou = scanner.next();
ResultSet myRs_2 = myStmt.executeQuery("select * from Aitima where id_aitimatos=" + id_aitimatos);
String Apo = myRs_2.getString("apo");
String Pros = myRs_2.getString("pros");
String Eidos_metaforas = myRs_2.getString("eidos_metaforas");
Date Imerominia_dhmiourgias = myRs_2.getDate("imerominia_dhmiourgias");
Date Imerominia_dromologiou = myRs_1.getDate("imerominia_dromologiou");
int Sunolo_paletwn = myRs_2.getInt("sunolo_paletwn");
int Status = myRs_2.getInt("status");
Boolean Inroute = myRs_2.getBoolean("inroute");
int Route_id = myRs_2.getInt("route_id");
String Id_dimiourgou = myRs_2.getString("ID_dimiourgou");
String Id_dromologiti = myRs_2.getString("ID_dromologiti");
//Το κομμάτι του αιτήματος που θα δρομολογεί τώρα (αυτό που μένει και δεν ανακατευθύνθηκε)
//Εδω δημιουργουμε το νεο αιτημα το οποιο έχει τα ίδια πεδία με το προηγούμενο αίτημα εκτός απο τα perigrafh(εδώ ο δρομολογητής συμπληρώνει αυτά που δεν έχουν ανακατευθυνθεί) ,id_aitimatos(το οποίο είναι
// το νέο id που θέτει ο δρομολογητής για το κομμάτι του αιτήματος που δρομολογεί τώρα)
ResultSet myRs_3 = myStmt.executeQuery("Insert into Aitima set imerominia_dromologiou="+Imerominia_dromologiou+",id_aitimatos="+ID_new_Aitimatos+",perigrafh="+Perigrafi_dromologimenou+
",apo="+Apo+",pros="+Pros+",eidos_metaforas="+Eidos_metaforas+",imerominia_dhmiourgias="+Imerominia_dhmiourgias+",sunolo_paletwn="+Sunolo_paletwn+
",status="+Status+",aitiologia="+Aitiologia+",inroute="+Inroute+",route_id="+Route_id+",ID_dimiourgou="+Id_dimiourgou+",ID_dromologiti="+Id_dromologiti);
ResultSet myRs_4 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou=" + imerominia + " where id_aitimatos=" + ID_new_Aitimatos);
aitima.Update_status(ID_new_Aitimatos,1);
}else {
System.out.println("Εισαγωγή αιτιολογίας ανακατεύθυνσης:");
String Aitiologia = scanner.nextLine();
System.out.println("Εισαγωγή κωδικού νεου δρομολογητή:");
int allagi_kwdikou = scanner.nextInt();
aitima.updateRouter(allagi_kwdikou,id_aitimatos,Aitiologia,id_dromologiti);
}
} else {
if (europaletes==myRs.getInt("sunolo_paletwn")) {
ResultSet myRs_1 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou=" + imerominia + " where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
}
if (europaletes<myRs.getInt("sunolo_paletwn")){
//Το κομμάτι του αιτήματος που δρομολογείται τωρα
System.out.println("Δώσε την περιγραφή του αιτήματος που δρομολογείται:");
String Perigrafi_old = scanner.next();
ResultSet myRs_2 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou="+imerominia+", perigrafh="+Perigrafi_old+" where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
System.out.println("Δώσε το ID του νέου αιτήματος:");
String ID_new_Aitimatos = scanner.next();
System.out.println("Δώσε την περιγραφή του νέου αιτήματος:");
String Perigrafi_new = scanner.next();
ResultSet myRs_1 = myStmt.executeQuery("select * from Aitima where id_aitimatos=" + id_aitimatos);
String Apo = myRs_1.getString("apo");
String Pros = myRs_1.getString("pros");
String Eidos_metaforas = myRs_1.getString("eidos_metaforas");
Date Imerominia_dhmiourgias = myRs_1.getDate("imerominia_dhmiourgias");
Date Imerominia_dromologiou = myRs_1.getDate("imerominia_dromologiou");
int Sunolo_paletwn = myRs_1.getInt("sunolo_paletwn");
int Status = myRs_1.getInt("status");
String Aitiologia = myRs_1.getString("aitiologia");
Boolean Inroute = myRs_1.getBoolean("inroute");
int Route_id = myRs_1.getInt("route_id");
String Id_dimiourgou = myRs_1.getString("ID_dimiourgou");
String Id_dromologiti = myRs_1.getString("ID_dromologiti");
//Το κομμάτι του αιτήματος που θα δρομολογηθεί αργότερα
//Εδω δημιουργουμε το νεο αιτημα το οποιο έχει τα ίδια πεδία με το προηγούμενο αίτημα εκτός απο τα perigrafh(εδώ ο δρομολογητής συμπληρώνει αυτά που δεν έχουν δρομολογηθεί) ,id_aitimatos(το οποίο είναι
// το νέο id που θέτει ο δρομολογητής για το κομμάτι του αιτήματος που δε δρομολογείται τώρα)
ResultSet myRs_3 = myStmt.executeQuery("Insert into Aitima set imerominia_dromologiou="+Imerominia_dromologiou+",id_aitimatos="+ID_new_Aitimatos+",perigrafh="+Perigrafi_new+
",apo="+Apo+",pros="+Pros+",eidos_metaforas="+Eidos_metaforas+",imerominia_dhmiourgias="+Imerominia_dhmiourgias+",sunolo_paletwn="+Sunolo_paletwn+
",status="+Status+",aitiologia="+Aitiologia+",inroute="+Inroute+",route_id="+Route_id+",ID_dimiourgou="+Id_dimiourgou+",ID_dromologiti="+Id_dromologiti);
aitima.Update_status(ID_new_Aitimatos,4);
}
}
}
catch(Exception exc) {
exc.printStackTrace();
}
}
}
| Asbaharoon/java-project | java_src/dromologhths.java | 3,551 | //Το κομμάτι του αιτήματος που θα δρομολογεί τώρα (αυτό που μένει και δεν ανακατευθύνθηκε)
| line_comment | el | package com.RapidPharma;
import java.util.*;
import java.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
import javax.swing.*;
import java.sql.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.RapidPharma.lista_aitima;
public class Dromologhths extends xristis{
//Επιστρέφονται όλα τα αιτήματα που αφορουν το δρομολογητη
public static ObservableList<Aitima> getaitimata(String ID_DROMOLOGITI) {
private static Statement statement;
aitimata = FXCollections.observableArrayList();
try {
statement = DataConnection.getConnection("jdbc:mysql://localhost:3306/RapidPharma", "root", "root").createStatement();
ResultSet myRs = statement.executeQuery("select * from Aitima inner join xristis a on ID_dromologiti=a.id where a.id=" + ID_DROMOLOGITI + ";");
if (myRs != null)
while (myRs.next()) {
Aitima aitima_1 = new Aitima();
aitima_1.setid(myRs.getInt(1));
aitima_1.setImerominia(myRs.getInt(2));
aitima_1.setApo_Topothesia(myRs.getString(3));
aitima_1.setPros_Topothesia(myRs.getString(4));
aitima_1.setEidos_Metaforas(myRs.getString(5));
aitima_1.setRequired_Europaletes(myRs.getInt(6));
aitima_1.setstatus(myRs.getInt(7));
aitimata.add(aitima_1);
}
} catch (Exception e) {
e.printStackTrace();
}
return aitimata;
}
public static void Diaxirisi_insert(String id_aitimatos,String id_dromologiti){
Aitima aitima = new Aitima();
try {
Connection myConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/RapidPharma", "root", "root");
Statement myStmt = myConn.createStatement();
Scanner scanner = new Scanner(System.in);
System.out.println("Εισαγωγή ευροπαλετών:");
int europaletes = scanner.nextInt();
System.out.println("Εισαγωγή ημερομηνίας:");
String imerominia = scanner.nextLine();
ResultSet myRs = myStmt.executeQuery("select sunolo_paletwn from Aitima where id_aitimatos="+id_aitimatos);
anakateuthinsi_CheckBox = new javax.swing.JCheckBox();//checkbox που επιλέγει ο χρήστης ανακατατεύθυνση
boolean checked = anakateuthinsi_CheckBox.getState();
if (anakateuthinsi_CheckBox.getState()) {
System.out.println("Δώσε την περιγραφή του αιτήματος που ανακατευθύνεται:");
String Perigrafi_anakateuthinomenou = scanner.next();
if(Perigrafi_anakateuthinomenou!=null){ //εαν δηλαδή θέλω να ανακατευθύνω ένα τμήμα του αιτήματος
System.out.println("Εισαγωγή αιτιολογίας ανακατεύθυνσης:");//αυτό θα αντικατασταθεί απο το GUI
String Aitiologia = scanner.nextLine();
System.out.println("Εισαγωγή κωδικού νεου δρομολογητή:");
int allagi_kwdikou = scanner.nextInt();
ResultSet myRs_1 = myStmt.executeQuery("Update Aitima set perigrafh="+Perigrafi_anakateuthinomenou+" where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
aitima.updateRouter(allagi_kwdikou,id_aitimatos,Aitiologia,id_dromologiti);
System.out.println("Δώσε το ID του νέου αιτήματος:");
String ID_new_Aitimatos = scanner.next();
System.out.println("Δώσε την περιγραφή του αιτήματος που δρομολογείται:");
String Perigrafi_dromologimenou = scanner.next();
ResultSet myRs_2 = myStmt.executeQuery("select * from Aitima where id_aitimatos=" + id_aitimatos);
String Apo = myRs_2.getString("apo");
String Pros = myRs_2.getString("pros");
String Eidos_metaforas = myRs_2.getString("eidos_metaforas");
Date Imerominia_dhmiourgias = myRs_2.getDate("imerominia_dhmiourgias");
Date Imerominia_dromologiou = myRs_1.getDate("imerominia_dromologiou");
int Sunolo_paletwn = myRs_2.getInt("sunolo_paletwn");
int Status = myRs_2.getInt("status");
Boolean Inroute = myRs_2.getBoolean("inroute");
int Route_id = myRs_2.getInt("route_id");
String Id_dimiourgou = myRs_2.getString("ID_dimiourgou");
String Id_dromologiti = myRs_2.getString("ID_dromologiti");
//Το κομμάτι<SUF>
//Εδω δημιουργουμε το νεο αιτημα το οποιο έχει τα ίδια πεδία με το προηγούμενο αίτημα εκτός απο τα perigrafh(εδώ ο δρομολογητής συμπληρώνει αυτά που δεν έχουν ανακατευθυνθεί) ,id_aitimatos(το οποίο είναι
// το νέο id που θέτει ο δρομολογητής για το κομμάτι του αιτήματος που δρομολογεί τώρα)
ResultSet myRs_3 = myStmt.executeQuery("Insert into Aitima set imerominia_dromologiou="+Imerominia_dromologiou+",id_aitimatos="+ID_new_Aitimatos+",perigrafh="+Perigrafi_dromologimenou+
",apo="+Apo+",pros="+Pros+",eidos_metaforas="+Eidos_metaforas+",imerominia_dhmiourgias="+Imerominia_dhmiourgias+",sunolo_paletwn="+Sunolo_paletwn+
",status="+Status+",aitiologia="+Aitiologia+",inroute="+Inroute+",route_id="+Route_id+",ID_dimiourgou="+Id_dimiourgou+",ID_dromologiti="+Id_dromologiti);
ResultSet myRs_4 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou=" + imerominia + " where id_aitimatos=" + ID_new_Aitimatos);
aitima.Update_status(ID_new_Aitimatos,1);
}else {
System.out.println("Εισαγωγή αιτιολογίας ανακατεύθυνσης:");
String Aitiologia = scanner.nextLine();
System.out.println("Εισαγωγή κωδικού νεου δρομολογητή:");
int allagi_kwdikou = scanner.nextInt();
aitima.updateRouter(allagi_kwdikou,id_aitimatos,Aitiologia,id_dromologiti);
}
} else {
if (europaletes==myRs.getInt("sunolo_paletwn")) {
ResultSet myRs_1 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou=" + imerominia + " where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
}
if (europaletes<myRs.getInt("sunolo_paletwn")){
//Το κομμάτι του αιτήματος που δρομολογείται τωρα
System.out.println("Δώσε την περιγραφή του αιτήματος που δρομολογείται:");
String Perigrafi_old = scanner.next();
ResultSet myRs_2 = myStmt.executeQuery("Update Aitima set imerominia_dromologiou="+imerominia+", perigrafh="+Perigrafi_old+" where id_aitimatos=" + id_aitimatos);
aitima.Update_status(id_aitimatos,1);
System.out.println("Δώσε το ID του νέου αιτήματος:");
String ID_new_Aitimatos = scanner.next();
System.out.println("Δώσε την περιγραφή του νέου αιτήματος:");
String Perigrafi_new = scanner.next();
ResultSet myRs_1 = myStmt.executeQuery("select * from Aitima where id_aitimatos=" + id_aitimatos);
String Apo = myRs_1.getString("apo");
String Pros = myRs_1.getString("pros");
String Eidos_metaforas = myRs_1.getString("eidos_metaforas");
Date Imerominia_dhmiourgias = myRs_1.getDate("imerominia_dhmiourgias");
Date Imerominia_dromologiou = myRs_1.getDate("imerominia_dromologiou");
int Sunolo_paletwn = myRs_1.getInt("sunolo_paletwn");
int Status = myRs_1.getInt("status");
String Aitiologia = myRs_1.getString("aitiologia");
Boolean Inroute = myRs_1.getBoolean("inroute");
int Route_id = myRs_1.getInt("route_id");
String Id_dimiourgou = myRs_1.getString("ID_dimiourgou");
String Id_dromologiti = myRs_1.getString("ID_dromologiti");
//Το κομμάτι του αιτήματος που θα δρομολογηθεί αργότερα
//Εδω δημιουργουμε το νεο αιτημα το οποιο έχει τα ίδια πεδία με το προηγούμενο αίτημα εκτός απο τα perigrafh(εδώ ο δρομολογητής συμπληρώνει αυτά που δεν έχουν δρομολογηθεί) ,id_aitimatos(το οποίο είναι
// το νέο id που θέτει ο δρομολογητής για το κομμάτι του αιτήματος που δε δρομολογείται τώρα)
ResultSet myRs_3 = myStmt.executeQuery("Insert into Aitima set imerominia_dromologiou="+Imerominia_dromologiou+",id_aitimatos="+ID_new_Aitimatos+",perigrafh="+Perigrafi_new+
",apo="+Apo+",pros="+Pros+",eidos_metaforas="+Eidos_metaforas+",imerominia_dhmiourgias="+Imerominia_dhmiourgias+",sunolo_paletwn="+Sunolo_paletwn+
",status="+Status+",aitiologia="+Aitiologia+",inroute="+Inroute+",route_id="+Route_id+",ID_dimiourgou="+Id_dimiourgou+",ID_dromologiti="+Id_dromologiti);
aitima.Update_status(ID_new_Aitimatos,4);
}
}
}
catch(Exception exc) {
exc.printStackTrace();
}
}
}
| 3,714 | 53 | 50 | 3,551 | 78 | 64 | 2,909 | 34 | 31 | 3,541 | 77 | 63 | 4,053 | 85 | 72 | false | false | false | false | false | true |
46342_6 | package gr.aueb.dmst.pijavaparty.proderp.dao;
import gr.aueb.dmst.pijavaparty.proderp.entity.COrderItem;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* COrderItemDao.java - a class for interacting and modifying the fields of a
* customer's items.
*
* @author Athina P.
* @see COrderItem
*/
public class COrderItemDao extends Dao implements CompositeEntityI<COrderItem> {
private static final String GETALL = "SELECT * FROM C_order_items";
private static final String GETBYIDS = "SELECT * FROM C_order_items WHERE c_order_id = ? AND product_id = ?";
private static final String GETITEMSPERCORDER = "SELECT * FROM C_order_items WHERE c_order_id = ?";
private static final String INSERT = "INSERT INTO C_order_items VALUES (?, ?, ?)";
private static final String DELETE = "DELETE FROM C_order_items WHERE c_order_id = ? AND product_id = ?";
private COrderDao co = new COrderDao();
private ProductDao pr = new ProductDao();
/**
* Retrieve customer order items from database
*
* @return A COrderItem data type List.
*/
@Override
public List<COrderItem> getAll() {
List<COrderItem> corders = new ArrayList();
Statement st = null;
ResultSet rs = null;
try {
st = getConnection().createStatement();
rs = st.executeQuery(GETALL);
while (rs.next()) {
corders.add(new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3)));//δεν υπαρχει η getById στην COrdrDao
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, st);
}
return corders;
}
/**
* Get a customer's order item with a specific id.
*
* @param coid COrder's id.
* @param prid Product's id.
* @return A COrderItem data type object.
*/
public COrderItem getByIds(int coid, int prid) {
PreparedStatement pst = null;
ResultSet rs = null;
try {
pst = getConnection().prepareStatement(GETBYIDS);
pst.setInt(1, coid);
pst.setInt(2, prid);
rs = pst.executeQuery();
if (rs.next()) {
return new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3));
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, pst);
}
return null;
}
/**
* Get items of a specific COrder.
*
* @param coid COrder's id.
* @return A COrderItem data type List.
*/
public List<COrderItem> getItemsPerCOrder(int coid) {
List<COrderItem> coi = new ArrayList();
PreparedStatement pst = null;
ResultSet rs = null;
try {
pst = getConnection().prepareStatement(GETITEMSPERCORDER);
pst.setInt(1, coid);
rs = pst.executeQuery();
while (rs.next()) {
coi.add(new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3)));
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, pst);
}
return coi;
}
/**
* Insert a new customer's item.
*
* @param coi An object of type COrderItem.
*/
@Override
public void insert(COrderItem coi) {
PreparedStatement pst = null;
try {
pst = getConnection().prepareStatement(INSERT);
pst.setInt(1, coi.getCorder().getId());
pst.setInt(2, coi.getProduct().getId());
pst.setInt(3, coi.getQuantity());
pst.execute();
} catch (SQLException ex) {
Logger.getLogger(ProductRawMaterialDao.class.getName()).log(Level.SEVERE, null, ex);//εδω τι θα μπει;
} finally {
closeStatementAndResultSet(pst);
}
}
/**
* Delete a customer's item with a specific id.
*
* @param cordId COrder's id.
* @param pId Product's id.
*/
@Override
public void delete(int cordId, int pId) {
PreparedStatement pst = null;
try {
pst = getConnection().prepareStatement(DELETE);
pst.setInt(1, cordId);
pst.setInt(2, pId);
pst.execute();
closeStatementAndResultSet(pst);
} catch (SQLException ex) {
Logger.getLogger(ProductRawMaterialDao.class.getName()).log(Level.SEVERE, null, ex);//εδω τι θα μπει;
} finally {
closeStatementAndResultSet(pst);
}
}
}
| AthinaDavari/JavaAssignment | proderp/src/main/java/gr/aueb/dmst/pijavaparty/proderp/dao/COrderItemDao.java | 1,340 | //εδω τι θα μπει; | line_comment | el | package gr.aueb.dmst.pijavaparty.proderp.dao;
import gr.aueb.dmst.pijavaparty.proderp.entity.COrderItem;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* COrderItemDao.java - a class for interacting and modifying the fields of a
* customer's items.
*
* @author Athina P.
* @see COrderItem
*/
public class COrderItemDao extends Dao implements CompositeEntityI<COrderItem> {
private static final String GETALL = "SELECT * FROM C_order_items";
private static final String GETBYIDS = "SELECT * FROM C_order_items WHERE c_order_id = ? AND product_id = ?";
private static final String GETITEMSPERCORDER = "SELECT * FROM C_order_items WHERE c_order_id = ?";
private static final String INSERT = "INSERT INTO C_order_items VALUES (?, ?, ?)";
private static final String DELETE = "DELETE FROM C_order_items WHERE c_order_id = ? AND product_id = ?";
private COrderDao co = new COrderDao();
private ProductDao pr = new ProductDao();
/**
* Retrieve customer order items from database
*
* @return A COrderItem data type List.
*/
@Override
public List<COrderItem> getAll() {
List<COrderItem> corders = new ArrayList();
Statement st = null;
ResultSet rs = null;
try {
st = getConnection().createStatement();
rs = st.executeQuery(GETALL);
while (rs.next()) {
corders.add(new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3)));//δεν υπαρχει η getById στην COrdrDao
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, st);
}
return corders;
}
/**
* Get a customer's order item with a specific id.
*
* @param coid COrder's id.
* @param prid Product's id.
* @return A COrderItem data type object.
*/
public COrderItem getByIds(int coid, int prid) {
PreparedStatement pst = null;
ResultSet rs = null;
try {
pst = getConnection().prepareStatement(GETBYIDS);
pst.setInt(1, coid);
pst.setInt(2, prid);
rs = pst.executeQuery();
if (rs.next()) {
return new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3));
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, pst);
}
return null;
}
/**
* Get items of a specific COrder.
*
* @param coid COrder's id.
* @return A COrderItem data type List.
*/
public List<COrderItem> getItemsPerCOrder(int coid) {
List<COrderItem> coi = new ArrayList();
PreparedStatement pst = null;
ResultSet rs = null;
try {
pst = getConnection().prepareStatement(GETITEMSPERCORDER);
pst.setInt(1, coid);
rs = pst.executeQuery();
while (rs.next()) {
coi.add(new COrderItem(co.getById(rs.getInt(1)), pr.getById(rs.getInt(2)), rs.getInt(3)));
}
} catch (SQLException ex) {
Logger.getLogger(CustomerDao.class.getName()).log(Level.SEVERE, null, ex);
} finally {
closeStatementAndResultSet(rs, pst);
}
return coi;
}
/**
* Insert a new customer's item.
*
* @param coi An object of type COrderItem.
*/
@Override
public void insert(COrderItem coi) {
PreparedStatement pst = null;
try {
pst = getConnection().prepareStatement(INSERT);
pst.setInt(1, coi.getCorder().getId());
pst.setInt(2, coi.getProduct().getId());
pst.setInt(3, coi.getQuantity());
pst.execute();
} catch (SQLException ex) {
Logger.getLogger(ProductRawMaterialDao.class.getName()).log(Level.SEVERE, null, ex);//εδω τι<SUF>
} finally {
closeStatementAndResultSet(pst);
}
}
/**
* Delete a customer's item with a specific id.
*
* @param cordId COrder's id.
* @param pId Product's id.
*/
@Override
public void delete(int cordId, int pId) {
PreparedStatement pst = null;
try {
pst = getConnection().prepareStatement(DELETE);
pst.setInt(1, cordId);
pst.setInt(2, pId);
pst.execute();
closeStatementAndResultSet(pst);
} catch (SQLException ex) {
Logger.getLogger(ProductRawMaterialDao.class.getName()).log(Level.SEVERE, null, ex);//εδω τι θα μπει;
} finally {
closeStatementAndResultSet(pst);
}
}
}
| 1,631 | 12 | 10 | 1,340 | 14 | 10 | 1,398 | 8 | 6 | 1,340 | 14 | 10 | 1,608 | 16 | 11 | false | false | false | false | false | true |
5767_2 | import java.util.Scanner;
public class friday13 {
public static void main(String[] args) {
Scanner input =new Scanner(System.in);
System.out.println("Single or Multiple year input ?");
System.out.println("For single year input press (s)");
System.out.println("For multiple year input press (m)");
while (true) {
char selector = input.next().charAt(0);
//Selection Zone //
if (selector=='s') {
System.out.println("Enter the desired year:");
int year = input.nextInt();
int diff = year-2012;
int k = 0;
int extraday;
if(diff >= 0) {
if(diff%4 != 0) {
k = 1;
}
extraday = (diff/4)*5 + (diff%4 + k) ;
extraday = extraday - ((diff+11)/100); // αφαιρει τα δισεκτα που μπηκαν λαθος πριν
extraday = extraday + ((diff+11)/400); // προσθετη αυτα που εβγαλε λαθος η προηγουμενη εντολη
extraday = extraday % 7 ; // αφου τελειωσει με τις πραξεις κανει το % 7 για να βρει την εξτρα μερα
}
else {
if(diff%4 != 3) {
k = -1;
}
extraday = ((diff/4)*5)+(diff%4 + k) ;
extraday = extraday + ((diff-77)/100); // -77 ωστε η διαφορα να γινει - 100
extraday = extraday - ((diff-377)/400); // -377 διοτι πρεπει να μετραει το 2000 σαν δισεκτο
extraday = extraday % 7;
extraday = 8 + extraday ;
}
int month = 1;
int feb = 1;
if (year%4!=0 || ( year%100==0 & year%400!=0 ) ) {
feb = 0;
}
System.out.println("Stay in your bed at the following dates :");
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year );
}
month++;
extraday += 3 ;
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year);
}
month++;
extraday += feb;
int c = 3 ;
for(int i= 3; i<=9 ; i++) {
if (extraday%7 ==0 ) {
System.out.println("13/" + month + "/" + year);
}
extraday = extraday + 3*(i%2) - 2 * ((i%2)-1) ;
month++;
c++ ;
if (c==8) {
i = 4;
}
}
break;
}
else if (selector == 'm') {
System.out.println("Enter the desired years:");
int year = input.nextInt(), year2 = input.nextInt();
int diff ;
int distance = year2 - year ;
System.out.println("Stay in your bed at the following dates :");
for (int i=0 ; i<=distance-1 ; i++) {
diff = year-2012;
int k = 0;
int extraday;
if(diff >= 0) {
if(diff%4 != 0) {
k = 1;
}
extraday = (diff/4)*5 + (diff%4 + k) ;
extraday = extraday - ((diff+11)/100); // αφαιρει τα δισεκτα που μπηκαν λαθος πριν
extraday = extraday + ((diff+11)/400); // προσθετη αυτα που εβγαλε λαθος η προηγουμενη εντολη
extraday = extraday % 7 ; // αφου τελειωσει με τις πραξεις κανει το % 7 για να βρει την εξτρα μερα
}
else {
if(diff%4 != 3) {
k = -1;
}
extraday = ((diff/4)*5)+(diff%4 + k) ;
extraday = extraday + ((diff-77)/100); // -77 ωστε η διαφορα να γινει - 100
extraday = extraday - ((diff-377)/400); // -377 διοτι πρεπει να μετραει το 2000 σαν δισεκτο
extraday = extraday % 7;
extraday = 8 + extraday ;
}
int month = 1;
int feb = 1;
if (year%4!=0 || ( year%100==0 & year%400!=0 ) ) {
feb = 0;
}
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year );
}
month++;
extraday += 3 ;
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year);
}
month++;
extraday += feb;
int c = 3 ;
for (int j =3 ;j<=9 ; j++) {
if (extraday%7 ==0 ) {
System.out.println("13/" + month + "/" + year);
}
extraday = extraday + 3*(j%2) - 2 * ((j%2)-1) ;
month++;
c++ ;
if (c==8) {
j = 4;
}
}
year += 1 ;
}
break;
}
else {
System.out.println("Try again you dumb fuck !");
continue;
}
}
}
}
| Bilkouristas/Friday13th | Friday13finder/src/friday13.java | 1,761 | // προσθετη αυτα που εβγαλε λαθος η προηγουμενη εντολη
| line_comment | el | import java.util.Scanner;
public class friday13 {
public static void main(String[] args) {
Scanner input =new Scanner(System.in);
System.out.println("Single or Multiple year input ?");
System.out.println("For single year input press (s)");
System.out.println("For multiple year input press (m)");
while (true) {
char selector = input.next().charAt(0);
//Selection Zone //
if (selector=='s') {
System.out.println("Enter the desired year:");
int year = input.nextInt();
int diff = year-2012;
int k = 0;
int extraday;
if(diff >= 0) {
if(diff%4 != 0) {
k = 1;
}
extraday = (diff/4)*5 + (diff%4 + k) ;
extraday = extraday - ((diff+11)/100); // αφαιρει τα δισεκτα που μπηκαν λαθος πριν
extraday = extraday + ((diff+11)/400); // προσθετη αυτα<SUF>
extraday = extraday % 7 ; // αφου τελειωσει με τις πραξεις κανει το % 7 για να βρει την εξτρα μερα
}
else {
if(diff%4 != 3) {
k = -1;
}
extraday = ((diff/4)*5)+(diff%4 + k) ;
extraday = extraday + ((diff-77)/100); // -77 ωστε η διαφορα να γινει - 100
extraday = extraday - ((diff-377)/400); // -377 διοτι πρεπει να μετραει το 2000 σαν δισεκτο
extraday = extraday % 7;
extraday = 8 + extraday ;
}
int month = 1;
int feb = 1;
if (year%4!=0 || ( year%100==0 & year%400!=0 ) ) {
feb = 0;
}
System.out.println("Stay in your bed at the following dates :");
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year );
}
month++;
extraday += 3 ;
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year);
}
month++;
extraday += feb;
int c = 3 ;
for(int i= 3; i<=9 ; i++) {
if (extraday%7 ==0 ) {
System.out.println("13/" + month + "/" + year);
}
extraday = extraday + 3*(i%2) - 2 * ((i%2)-1) ;
month++;
c++ ;
if (c==8) {
i = 4;
}
}
break;
}
else if (selector == 'm') {
System.out.println("Enter the desired years:");
int year = input.nextInt(), year2 = input.nextInt();
int diff ;
int distance = year2 - year ;
System.out.println("Stay in your bed at the following dates :");
for (int i=0 ; i<=distance-1 ; i++) {
diff = year-2012;
int k = 0;
int extraday;
if(diff >= 0) {
if(diff%4 != 0) {
k = 1;
}
extraday = (diff/4)*5 + (diff%4 + k) ;
extraday = extraday - ((diff+11)/100); // αφαιρει τα δισεκτα που μπηκαν λαθος πριν
extraday = extraday + ((diff+11)/400); // προσθετη αυτα που εβγαλε λαθος η προηγουμενη εντολη
extraday = extraday % 7 ; // αφου τελειωσει με τις πραξεις κανει το % 7 για να βρει την εξτρα μερα
}
else {
if(diff%4 != 3) {
k = -1;
}
extraday = ((diff/4)*5)+(diff%4 + k) ;
extraday = extraday + ((diff-77)/100); // -77 ωστε η διαφορα να γινει - 100
extraday = extraday - ((diff-377)/400); // -377 διοτι πρεπει να μετραει το 2000 σαν δισεκτο
extraday = extraday % 7;
extraday = 8 + extraday ;
}
int month = 1;
int feb = 1;
if (year%4!=0 || ( year%100==0 & year%400!=0 ) ) {
feb = 0;
}
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year );
}
month++;
extraday += 3 ;
if (extraday%7 == 0 ) {
System.out.println("13/" + month + "/" + year);
}
month++;
extraday += feb;
int c = 3 ;
for (int j =3 ;j<=9 ; j++) {
if (extraday%7 ==0 ) {
System.out.println("13/" + month + "/" + year);
}
extraday = extraday + 3*(j%2) - 2 * ((j%2)-1) ;
month++;
c++ ;
if (c==8) {
j = 4;
}
}
year += 1 ;
}
break;
}
else {
System.out.println("Try again you dumb fuck !");
continue;
}
}
}
}
| 1,750 | 32 | 29 | 1,761 | 45 | 41 | 1,597 | 22 | 20 | 1,759 | 45 | 41 | 2,221 | 52 | 43 | false | false | false | false | false | true |
5147_8 | /*
* This file is part of CoAnSys project.
* Copyright (c) 2012-2015 ICM-UW
*
* CoAnSys is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* CoAnSys is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with CoAnSys. If not, see <http://www.gnu.org/licenses/>.
*/
package pl.edu.icm.coansys.similarity.pig.udf;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.apache.pig.EvalFunc;
import org.apache.pig.data.DataBag;
import org.apache.pig.data.DataType;
import org.apache.pig.data.DefaultDataBag;
import org.apache.pig.data.Tuple;
import org.apache.pig.data.TupleFactory;
import org.apache.pig.impl.logicalLayer.schema.Schema;
import pl.edu.icm.coansys.commons.java.DiacriticsRemover;
import pl.edu.icm.coansys.commons.java.PorterStemmer;
import pl.edu.icm.coansys.commons.java.StackTraceExtractor;
public class ExtendedStemmedPairs extends EvalFunc<DataBag> {
@Override
public Schema outputSchema(Schema input) {
try {
Schema termSchema = new Schema(new Schema.FieldSchema("term",
new Schema(new Schema.FieldSchema("value",
DataType.CHARARRAY)), DataType.TUPLE));
return new Schema(new Schema.FieldSchema(getSchemaName(this
.getClass().getName().toLowerCase(), input), termSchema,
DataType.BAG));
} catch (Exception e) {
log.error("Error in the output Schema creation", e);
log.error(StackTraceExtractor.getStackTrace(e));
return null;
}
}
private String TYPE_OF_REMOVAL = "latin";
private static final String SPACE = " ";
private AllLangStopWordFilter stowordsFilter = null;
public ExtendedStemmedPairs() throws IOException {
stowordsFilter = new AllLangStopWordFilter();
}
public ExtendedStemmedPairs(String params) throws IOException {
TYPE_OF_REMOVAL = params;
stowordsFilter = new AllLangStopWordFilter();
}
public List<String> getStemmedPairs(final String text) throws IOException {
String tmp = text.toLowerCase();
tmp = tmp.replaceAll("[_]+", "_");
tmp = tmp.replaceAll("[-]+", "-");
if(!"latin".equals(TYPE_OF_REMOVAL)){
tmp = tmp.replaceAll("([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s'])+", SPACE);
}
tmp = tmp.replaceAll("\\s+", SPACE);
tmp = tmp.trim();
List<String> strings = new ArrayList<String>();
if (tmp.length() == 0) {
return strings;
}
PorterStemmer ps = new PorterStemmer();
for (String s : StringUtils.split(tmp, SPACE)) {
s = s.replaceAll("^[/\\-]+", "");
s = s.replaceAll("[\\-/]+$", "");
if("latin".equals(TYPE_OF_REMOVAL)){
s = s.replaceAll("[^a-z\\d\\-_/ ]+", SPACE);
}
if (s.length() <= 3) {
continue;
}
if (!stowordsFilter.isInAllStopwords(s)) {
s = DiacriticsRemover.removeDiacritics(s);
ps.add(s.toCharArray(), s.length());
ps.stem();
strings.add(ps.toString());
}
}
return strings;
}
@Override
public DataBag exec(Tuple input) throws IOException {
if (input == null || input.size() == 0 || input.get(0) == null) {
return null;
}
try {
List<Tuple> tuples = new ArrayList<Tuple>();
String terms = (String) input.get(0);
for (String s : getStemmedPairs(terms)) {
tuples.add(TupleFactory.getInstance().newTuple(s));
}
return new DefaultDataBag(tuples);
} catch (Exception e) {
throw new IOException("Caught exception processing input row ", e);
}
}
public static void main(String[] args) {
String text = "100688";
System.out.println("PartA: "+DiacriticsRemover.removeDiacritics(text));
// PorterStemmer ps = new PorterStemmer();
// for (String s : text.split(SPACE)) {
// System.out.println("PartB1: "+s);
// s = s.replaceAll("^[/\\-]+", "");
// System.out.println("PartB2: "+s);
// s = s.replaceAll("[\\-/]+$", "");
// System.out.println("PartB3: "+s);
// s = s.replaceAll("^[/\\-_0-9]+$", "");
// System.out.println("PartB4: "+s);
// if (s.length() <= 3) {
// continue;
// }
// s = DiacriticsRemover.removeDiacritics(s);
// System.out.println("PartC: "+s);
// ps.add(s.toCharArray(), s.length());
// ps.stem();
// System.out.println("PartD: "+ps.toString());
// }
// String text = "Μεταφορά τεχνολογίας : " + "παράγων αναπτύξεως ή μέσον "
// + "αποδιαρθρώσεως των οικονομικών " + "του τρίτου κόσμου "
// + "ó Techn,ology Techn, ology";
// System.out.println("--------------");
// System.out.println(DiacriticsRemover.removeDiacritics(text));
// System.out.println("--------------");
// System.out.println(text.replaceAll(
// "([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s])+", ""));
// System.out.println("--------------");
// text = text.replaceAll("([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s])+", "");
// text = text.replaceAll("\\s+", " ");
//
// PorterStemmer ps = new PorterStemmer();
// for (String s : text.split(SPACE)) {
// s = s.replaceAll("^[/\\-]+", "");
// s = s.replaceAll("[\\-/]+$", "");
// s = s.replaceAll("^[/\\-_0-9]+$", "");
// if (s.length() <= 2) {
// continue;
// }
// s = DiacriticsRemover.removeDiacritics(s);
// ps.add(s.toCharArray(), s.length());
// ps.stem();
// System.out.println(ps.toString());
// }
}
}
| CeON/CoAnSys | document-similarity/document-similarity-logic/src/main/java/pl/edu/icm/coansys/similarity/pig/udf/ExtendedStemmedPairs.java | 1,966 | // String text = "Μεταφορά τεχνολογίας : " + "παράγων αναπτύξεως ή μέσον " | line_comment | el | /*
* This file is part of CoAnSys project.
* Copyright (c) 2012-2015 ICM-UW
*
* CoAnSys is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* CoAnSys is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with CoAnSys. If not, see <http://www.gnu.org/licenses/>.
*/
package pl.edu.icm.coansys.similarity.pig.udf;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.apache.pig.EvalFunc;
import org.apache.pig.data.DataBag;
import org.apache.pig.data.DataType;
import org.apache.pig.data.DefaultDataBag;
import org.apache.pig.data.Tuple;
import org.apache.pig.data.TupleFactory;
import org.apache.pig.impl.logicalLayer.schema.Schema;
import pl.edu.icm.coansys.commons.java.DiacriticsRemover;
import pl.edu.icm.coansys.commons.java.PorterStemmer;
import pl.edu.icm.coansys.commons.java.StackTraceExtractor;
public class ExtendedStemmedPairs extends EvalFunc<DataBag> {
@Override
public Schema outputSchema(Schema input) {
try {
Schema termSchema = new Schema(new Schema.FieldSchema("term",
new Schema(new Schema.FieldSchema("value",
DataType.CHARARRAY)), DataType.TUPLE));
return new Schema(new Schema.FieldSchema(getSchemaName(this
.getClass().getName().toLowerCase(), input), termSchema,
DataType.BAG));
} catch (Exception e) {
log.error("Error in the output Schema creation", e);
log.error(StackTraceExtractor.getStackTrace(e));
return null;
}
}
private String TYPE_OF_REMOVAL = "latin";
private static final String SPACE = " ";
private AllLangStopWordFilter stowordsFilter = null;
public ExtendedStemmedPairs() throws IOException {
stowordsFilter = new AllLangStopWordFilter();
}
public ExtendedStemmedPairs(String params) throws IOException {
TYPE_OF_REMOVAL = params;
stowordsFilter = new AllLangStopWordFilter();
}
public List<String> getStemmedPairs(final String text) throws IOException {
String tmp = text.toLowerCase();
tmp = tmp.replaceAll("[_]+", "_");
tmp = tmp.replaceAll("[-]+", "-");
if(!"latin".equals(TYPE_OF_REMOVAL)){
tmp = tmp.replaceAll("([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s'])+", SPACE);
}
tmp = tmp.replaceAll("\\s+", SPACE);
tmp = tmp.trim();
List<String> strings = new ArrayList<String>();
if (tmp.length() == 0) {
return strings;
}
PorterStemmer ps = new PorterStemmer();
for (String s : StringUtils.split(tmp, SPACE)) {
s = s.replaceAll("^[/\\-]+", "");
s = s.replaceAll("[\\-/]+$", "");
if("latin".equals(TYPE_OF_REMOVAL)){
s = s.replaceAll("[^a-z\\d\\-_/ ]+", SPACE);
}
if (s.length() <= 3) {
continue;
}
if (!stowordsFilter.isInAllStopwords(s)) {
s = DiacriticsRemover.removeDiacritics(s);
ps.add(s.toCharArray(), s.length());
ps.stem();
strings.add(ps.toString());
}
}
return strings;
}
@Override
public DataBag exec(Tuple input) throws IOException {
if (input == null || input.size() == 0 || input.get(0) == null) {
return null;
}
try {
List<Tuple> tuples = new ArrayList<Tuple>();
String terms = (String) input.get(0);
for (String s : getStemmedPairs(terms)) {
tuples.add(TupleFactory.getInstance().newTuple(s));
}
return new DefaultDataBag(tuples);
} catch (Exception e) {
throw new IOException("Caught exception processing input row ", e);
}
}
public static void main(String[] args) {
String text = "100688";
System.out.println("PartA: "+DiacriticsRemover.removeDiacritics(text));
// PorterStemmer ps = new PorterStemmer();
// for (String s : text.split(SPACE)) {
// System.out.println("PartB1: "+s);
// s = s.replaceAll("^[/\\-]+", "");
// System.out.println("PartB2: "+s);
// s = s.replaceAll("[\\-/]+$", "");
// System.out.println("PartB3: "+s);
// s = s.replaceAll("^[/\\-_0-9]+$", "");
// System.out.println("PartB4: "+s);
// if (s.length() <= 3) {
// continue;
// }
// s = DiacriticsRemover.removeDiacritics(s);
// System.out.println("PartC: "+s);
// ps.add(s.toCharArray(), s.length());
// ps.stem();
// System.out.println("PartD: "+ps.toString());
// }
// String text<SUF>
// + "αποδιαρθρώσεως των οικονομικών " + "του τρίτου κόσμου "
// + "ó Techn,ology Techn, ology";
// System.out.println("--------------");
// System.out.println(DiacriticsRemover.removeDiacritics(text));
// System.out.println("--------------");
// System.out.println(text.replaceAll(
// "([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s])+", ""));
// System.out.println("--------------");
// text = text.replaceAll("([^\\u0080-\\uFFFF a-zA-Z_\\-\\d\\s])+", "");
// text = text.replaceAll("\\s+", " ");
//
// PorterStemmer ps = new PorterStemmer();
// for (String s : text.split(SPACE)) {
// s = s.replaceAll("^[/\\-]+", "");
// s = s.replaceAll("[\\-/]+$", "");
// s = s.replaceAll("^[/\\-_0-9]+$", "");
// if (s.length() <= 2) {
// continue;
// }
// s = DiacriticsRemover.removeDiacritics(s);
// ps.add(s.toCharArray(), s.length());
// ps.stem();
// System.out.println(ps.toString());
// }
}
}
| 2,078 | 42 | 33 | 1,966 | 57 | 41 | 1,851 | 31 | 22 | 1,966 | 57 | 41 | 2,342 | 57 | 44 | false | false | false | false | false | true |
2751_2 | import java.util.concurrent.Semaphore;
public class Buffer{
private int[] contents;
private final int unlimited;
private int front, back;
private int counter = 0;
private Semaphore mutexPut = new Semaphore(1);
private Semaphore mutexGet = new Semaphore(0);
// Constructor
public Buffer(int s) {
this.unlimited = s;
contents = new int[unlimited];
for (int i=0; i<unlimited; i++)
contents[i] = 0;
this.front = 0;
this.back = -1;
}
// Put an item into buffer
public void put(int data) {
try {
mutexPut.acquire();// δεν αφηνει αλλους παραγωγους να μπουν
} catch (InterruptedException e) { }
back = (back + 1);
contents[back] = data;
counter++;
System.out.println("Prod " + Thread.currentThread().getName() + " No "+ data + " Loc " + back + " Count = " + counter);
mutexGet.release(); //δινει σημα σε καταναλωτες οτι εχει αντικειμενο να παρουν
mutexPut.release(); // τελιώνει ο παραγωγός μπορει τωρα να μπει ο επομενος
}
// Get an item from bufffer
public int get() {
int data = 0;
try {
mutexGet.acquire();
try {
mutexPut.acquire(); // κλειδωμα buffer ωστε να μην μπου αλλοι καταναλωτες
} catch (InterruptedException e) { }
} catch (InterruptedException e) { }
data = contents[front];
System.out.println(" Cons " + Thread.currentThread().getName() + " No "+ data + " Loc " + front + " Count = " + (counter-1));
front = (front + 1);
counter--;
return data;
}
} | ChristosPts/University-of-Macedonia | Parallel and Distributed Computing/Lab7/SemBufferUnlimited/Buffer.java | 579 | //δινει σημα σε καταναλωτες οτι εχει αντικειμενο να παρουν
| line_comment | el | import java.util.concurrent.Semaphore;
public class Buffer{
private int[] contents;
private final int unlimited;
private int front, back;
private int counter = 0;
private Semaphore mutexPut = new Semaphore(1);
private Semaphore mutexGet = new Semaphore(0);
// Constructor
public Buffer(int s) {
this.unlimited = s;
contents = new int[unlimited];
for (int i=0; i<unlimited; i++)
contents[i] = 0;
this.front = 0;
this.back = -1;
}
// Put an item into buffer
public void put(int data) {
try {
mutexPut.acquire();// δεν αφηνει αλλους παραγωγους να μπουν
} catch (InterruptedException e) { }
back = (back + 1);
contents[back] = data;
counter++;
System.out.println("Prod " + Thread.currentThread().getName() + " No "+ data + " Loc " + back + " Count = " + counter);
mutexGet.release(); //δινει σημα<SUF>
mutexPut.release(); // τελιώνει ο παραγωγός μπορει τωρα να μπει ο επομενος
}
// Get an item from bufffer
public int get() {
int data = 0;
try {
mutexGet.acquire();
try {
mutexPut.acquire(); // κλειδωμα buffer ωστε να μην μπου αλλοι καταναλωτες
} catch (InterruptedException e) { }
} catch (InterruptedException e) { }
data = contents[front];
System.out.println(" Cons " + Thread.currentThread().getName() + " No "+ data + " Loc " + front + " Count = " + (counter-1));
front = (front + 1);
counter--;
return data;
}
} | 582 | 32 | 30 | 579 | 51 | 45 | 508 | 25 | 23 | 576 | 50 | 44 | 684 | 57 | 48 | false | false | false | false | false | true |
3485_9 | package application;
import javafx.scene.control.ListView;
import javafx.scene.layout.VBox;
import java.util.List;
import com.example.Country;
import com.example.CountryLibrary;
public class CountriesResult extends VBox {
public CountriesResult(int option, String SearchTerm) {
// Δημιουργία της λίστας για την εμφάνιση των χωρών
ListView<String> countryListView = new ListView<>();
List<Country> countries;
try {
CountryLibrary countryLibrary = new CountryLibrary();
if (option == 1) {
// Καλώ την μέθοδο της βιβλιοθήκης getAllCountries και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getAllCountries();
// Προσθέτω την κάθε χώρα στο listView
for (Country country : countries) {
countryListView.getItems().add(country.toString());
}
}else if (option == 2) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountryByName και αποθηκεύω τα αποτελέσματα στο country
Country country = countryLibrary.getCountryByName(SearchTerm);
// Προσθέτω την χώρα στο listView
countryListView.getItems().add(country.toString());
} else if (option == 3) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountriesByLanguage και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getCountriesByLanguage(SearchTerm);
for (Country country : countries) {
// Προσθέτω την κάθε χώρα στο listView
countryListView.getItems().add(country.toString());
}
} else if (option == 4) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountriesByCurrency και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getCountriesByCurrency(SearchTerm);
for (Country country : countries) {
// Προσθέτω την κάθε χώρα στο listView
countryListView.getItems().add(country.toString());
}
}else {
// Εδώ δεν υλοποιώ κάτι για την 5η επιλογή καθώς η υλοποίηση της είναι στη Main
}
} catch (Exception e) {
e.printStackTrace();
}
// Προσθήκη της λίστας στο layout
getChildren().addAll(countryListView);
}
}
| DimitrisManolopoulos/Countries-App | src/application/CountriesResult.java | 827 | // Εδώ δεν υλοποιώ κάτι για την 5η επιλογή καθώς η υλοποίηση της είναι στη Main | line_comment | el | package application;
import javafx.scene.control.ListView;
import javafx.scene.layout.VBox;
import java.util.List;
import com.example.Country;
import com.example.CountryLibrary;
public class CountriesResult extends VBox {
public CountriesResult(int option, String SearchTerm) {
// Δημιουργία της λίστας για την εμφάνιση των χωρών
ListView<String> countryListView = new ListView<>();
List<Country> countries;
try {
CountryLibrary countryLibrary = new CountryLibrary();
if (option == 1) {
// Καλώ την μέθοδο της βιβλιοθήκης getAllCountries και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getAllCountries();
// Προσθέτω την κάθε χώρα στο listView
for (Country country : countries) {
countryListView.getItems().add(country.toString());
}
}else if (option == 2) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountryByName και αποθηκεύω τα αποτελέσματα στο country
Country country = countryLibrary.getCountryByName(SearchTerm);
// Προσθέτω την χώρα στο listView
countryListView.getItems().add(country.toString());
} else if (option == 3) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountriesByLanguage και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getCountriesByLanguage(SearchTerm);
for (Country country : countries) {
// Προσθέτω την κάθε χώρα στο listView
countryListView.getItems().add(country.toString());
}
} else if (option == 4) {
// Καλώ την μέθοδο της βιβλιοθήκης getCountriesByCurrency και αποθηκεύω τα αποτελέσματα στο countries
countries = countryLibrary.getCountriesByCurrency(SearchTerm);
for (Country country : countries) {
// Προσθέτω την κάθε χώρα στο listView
countryListView.getItems().add(country.toString());
}
}else {
// Εδώ δεν<SUF>
}
} catch (Exception e) {
e.printStackTrace();
}
// Προσθήκη της λίστας στο layout
getChildren().addAll(countryListView);
}
}
| 767 | 43 | 39 | 827 | 70 | 48 | 580 | 29 | 25 | 822 | 70 | 48 | 944 | 74 | 58 | false | false | false | false | false | true |
23225_3 | import java.util.Scanner;
public class DNAPalindrome {
public static StringDoubleEndedQueueImpl CreateQ(String DNAseq){
StringDoubleEndedQueueImpl s = new StringDoubleEndedQueueImpl();
char[] charArray = DNAseq.toCharArray();
for (int i = 0; i < charArray.length; i++) {
s.addLast(String.valueOf(charArray[i]));
}
return s;
}
public static boolean isValidDNASequence(String sequence) {
// Ελέγχουμε αν το String είναι null.
if (sequence == null) {
return false;
}
// Ελέγχουμε αν το String είναι κενό.
if (sequence.isEmpty()) {
return true;
}
// Ελέγχουμε κάθε χαρακτήρα του String για εγκυρότητα.
for (char nucleotide : sequence.toCharArray()) {
if (!isValidNucleotide(nucleotide)) {
return false;
}
}
return true;
}
private static boolean isValidNucleotide(char nucleotide) {
// Ελέγχουμε αν ο χαρακτήρας είναι ένα από τα έγκυρα A, T, C, G (πεζά γράμματα).
return (nucleotide == 'A' || nucleotide == 'T' || nucleotide == 'C' || nucleotide == 'G');
}
public static boolean isWatson( StringDoubleEndedQueueImpl q1){
while(!q1.isEmpty()){
if((q1.getFirst().equals("A") && q1.getLast().equals("T")) ||
(q1.getFirst().equals("T") && q1.getLast().equals("A")) ||
(q1.getFirst().equals("C") && q1.getLast().equals("G")) ||
(q1.getFirst().equals("G") &&q1.getLast().equals("C"))){
q1.removeFirst();
q1.removeLast();
q1.printQueue(System.out);
System.out.println("this is queue");
}else{
return false;
}
}
return true;
}
public static void main(String[] args) {
try (Scanner in = new Scanner(System.in)) {
System.out.println("Give me a Dna sequence");
String DNAseq=in.nextLine();
while(!isValidDNASequence(DNAseq)){
System.out.println("Give me a Dna sequence");
DNAseq=in.nextLine();
}
StringDoubleEndedQueueImpl q1=CreateQ(DNAseq);
if (isWatson(q1)) {
System.out.println(DNAseq+" is watson");
}else{
System.out.println(DNAseq+" is not watson");
}
}
}
} | FANISPAP123/Data-Structure | DS23-project1/DNAPalindrome.java | 715 | // Ελέγχουμε αν ο χαρακτήρας είναι ένα από τα έγκυρα A, T, C, G (πεζά γράμματα).
| line_comment | el | import java.util.Scanner;
public class DNAPalindrome {
public static StringDoubleEndedQueueImpl CreateQ(String DNAseq){
StringDoubleEndedQueueImpl s = new StringDoubleEndedQueueImpl();
char[] charArray = DNAseq.toCharArray();
for (int i = 0; i < charArray.length; i++) {
s.addLast(String.valueOf(charArray[i]));
}
return s;
}
public static boolean isValidDNASequence(String sequence) {
// Ελέγχουμε αν το String είναι null.
if (sequence == null) {
return false;
}
// Ελέγχουμε αν το String είναι κενό.
if (sequence.isEmpty()) {
return true;
}
// Ελέγχουμε κάθε χαρακτήρα του String για εγκυρότητα.
for (char nucleotide : sequence.toCharArray()) {
if (!isValidNucleotide(nucleotide)) {
return false;
}
}
return true;
}
private static boolean isValidNucleotide(char nucleotide) {
// Ελέγχουμε αν<SUF>
return (nucleotide == 'A' || nucleotide == 'T' || nucleotide == 'C' || nucleotide == 'G');
}
public static boolean isWatson( StringDoubleEndedQueueImpl q1){
while(!q1.isEmpty()){
if((q1.getFirst().equals("A") && q1.getLast().equals("T")) ||
(q1.getFirst().equals("T") && q1.getLast().equals("A")) ||
(q1.getFirst().equals("C") && q1.getLast().equals("G")) ||
(q1.getFirst().equals("G") &&q1.getLast().equals("C"))){
q1.removeFirst();
q1.removeLast();
q1.printQueue(System.out);
System.out.println("this is queue");
}else{
return false;
}
}
return true;
}
public static void main(String[] args) {
try (Scanner in = new Scanner(System.in)) {
System.out.println("Give me a Dna sequence");
String DNAseq=in.nextLine();
while(!isValidDNASequence(DNAseq)){
System.out.println("Give me a Dna sequence");
DNAseq=in.nextLine();
}
StringDoubleEndedQueueImpl q1=CreateQ(DNAseq);
if (isWatson(q1)) {
System.out.println(DNAseq+" is watson");
}else{
System.out.println(DNAseq+" is not watson");
}
}
}
} | 891 | 50 | 44 | 715 | 69 | 48 | 776 | 34 | 28 | 715 | 69 | 48 | 943 | 72 | 57 | false | false | false | false | false | true |
19290_16 | package org.example;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class Main {
public static void main(String[] args) {
//Create arraylist of doctors
ArrayList<Doctor> doctors = new ArrayList<>();
Doctor doc1 = new Doctor("maria", "k", "8754");
Doctor doc2 = new Doctor("kwstas", "k", "8753");
Doctor doc3 = new Doctor("dimitra", "k", "98674");
Doctor doc4 = new Doctor("giwrgos", "k", "8764");
//create arraylist of timeslots for VacCenter1
ArrayList<Timeslot> timeslots1 = new ArrayList<>();
timeslots1.add(new Timeslot(10, 4, 2024, 9, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 10, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 11, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 12, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 13, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 14, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 15, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 16, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 17, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 18, 0,
10, 30, doc2));
//create arraylist of timeslots for VacCenter2
ArrayList<Timeslot> timeslots2 = new ArrayList<>();
timeslots2.add(new Timeslot(10, 4, 2024, 9, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 10, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 11, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 12, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 13, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 14, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 15, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 16, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 17, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 18, 0,
10, 30, doc4));
//create arraylist of VacCenters
ArrayList<VaccinationCenter> vaccinationCenters = new ArrayList<>();
vaccinationCenters.add(new VaccinationCenter("123", "casterly rock", timeslots1));
vaccinationCenters.add(new VaccinationCenter("456", "storm's end", timeslots2));
//Set vaccination center to doctors
doc1.setVaccinationCenter(vaccinationCenters.get(0));
doc2.setVaccinationCenter(vaccinationCenters.get(0));
doc3.setVaccinationCenter(vaccinationCenters.get(1));
doc4.setVaccinationCenter(vaccinationCenters.get(1));
//add timeslots to doctors
for(int i=0;i<10;i++){
if(i<5){
doc1.addTimeslot(timeslots1.get(i));
doc3.addTimeslot(timeslots2.get(i));
}
else{
doc2.addTimeslot(timeslots2.get(i));
doc4.addTimeslot(timeslots2.get(i));
}
}
//create arraylist of insures people
ArrayList<Insured> insuredpeople = new ArrayList<>();
insuredpeople.add(new Insured("Petyr", "Baelish", "128975439", "petyr@gmail.com",
"673537", "11/03/1935"));
insuredpeople.add(new Insured("Lord", "Varys", "373598", "lord@gmail.com",
"846338", "17/03/1972"));
insuredpeople.add(new Insured("Theon", "Greyjoy", "83635", "theon@gmail.com",
"83625", "7/08/1945"));
insuredpeople.add(new Insured("Sandor", "Clegane", "823627", "sandor@gmail.com",
"927156", "5/12/1988"));
insuredpeople.add(new Insured("Brienne", "of Tarth", "987534", "brienne@gmail.com",
"82615", "15/12/1999"));
insuredpeople.add(new Insured("Arya", "Stark", "765439", "arya@gmail.com",
"76754", "10/1/2010"));
insuredpeople.add(new Insured("Sansa", "Stark", "6535978", "sansa@gmail.com",
"787530", "8/11/2011"));
insuredpeople.add(new Insured("Jon", "Snow", "898674", "jon@gmail.com",
"876430", "18/4/1980"));
insuredpeople.add(new Insured("Daenerys", "Targaryen", "875643", "daeneys@gmail.com",
"998764", "1/5/1989"));
insuredpeople.add(new Insured("Tyrion", "Lannister", "7635234", "tyrion@gmail.com",
"926254", "10/7/1970"));
insuredpeople.add(new Insured("Cersei", "Lannister", "87632", "cersei@gmail.com",
"9864309", "1/4/1943"));
insuredpeople.add(new Insured("Ned", "Stark", "875318", "ned@gmail.com",
"986752", "19/9/1969"));
// Shuffle the list to get random ordering
Collections.shuffle(insuredpeople);
//make reservation for 8 insured people
//prepei na ftiaxtei o elegxos gia to an apo randoms select vaccCenter na min dialegete panta 1.
for (int i = 0; i < 8; i++){
Reservation reservation = insuredpeople.get(i).makeReservation(vaccinationCenters);
VaccinationCenter VacCenter = reservation.getVaccinationCenter();
VacCenter.addReservation(reservation);
Doctor doctor = reservation.findDoctor(doctors);
doctor.addReservation(reservation);
}
int count = 0;
//Make vaccination
//Na min 3exaso avrio na valo oti emvoliazontai oi 6 apo tous 8
for (Doctor doctor:doctors){
for (Reservation res:doctor.getReservations()){
//den xreiazetai mallon na epistrefei
Vaccination VaccObj =res.getInsured().getVaccinated(res,doctor);
doctor.addVaccination(VaccObj);
count=count+1;
if (count >=6) {
break; // Breaks out of the inner loop
}
}
if (count >= 6) {
break; // Breaks out of the outer loop
}
}
//Επικείμενα ραντεβου για κάθε εμβολιαστικό
for(VaccinationCenter vacCenter:vaccinationCenters){
vacCenter.printUpcomingReservations();
}
//Ελέυθερες χρονικές θυρίδες κάθε εμβολιαστικού
vaccinationCenters.get(0).printFreeTimeslot(timeslots1);
vaccinationCenters.get(1).printFreeTimeslot(timeslots2);
//Εμβολιασμούς κάθε γιατρός για όλους τους γιατρούς
for (Doctor doctor:doctors){
doctor.printVaccinations();
}
/*//Ασφαλισμένοι >60 που δεν έχουν κλείσει ραντεβού
for(VaccinationCenter vaccCenter:vaccinationCenters){
vaccCenter.printInsuredWithoutReservation(insuredpeople);
}*/
/*//create second Arraylist of appointments na to sizitisoume
ArrayList<Reservation> reservations = new ArrayList<>();
reservations.add(new Reservation(insuredpeople.get(0), timeslots1.get(1)));
reservations.add(new Reservation(insuredpeople.get(3), timeslots2.get(4)));
reservations.add(new Reservation(insuredpeople.get(4), timeslots1.get(7)));
reservations.add(new Reservation(insuredpeople.get(6), timeslots2.get(8)));
reservations.add(new Reservation(insuredpeople.get(7), timeslots1.get(2)));
reservations.add(new Reservation(insuredpeople.get(10), timeslots2.get(3)));
reservations.add(new Reservation(insuredpeople.get(11), timeslots1.get(9)));
reservations.add(new Reservation(insuredpeople.get(9), timeslots2.get(1)));
printToFile(reservations);*/
}
private static void printToFile(List<Reservation> reservations) {
File file = new File("vaccination-results.txt");
try (PrintWriter pw = new PrintWriter(file)) {
pw.println("The first center has the appointments: ");
for (var elem : reservations) {
if (elem.getVaccinationCenter().getCode().equals("123")) {
pw.println(elem.getTimeslot());
}
}
pw.println("The second center has the appointments: ");
for (var elem : reservations) {
if (elem.getVaccinationCenter().getCode().equals("456")) {
pw.println(elem.getTimeslot());
}
}
} catch (IOException e) {
System.out.println(e);
}
}
}
| GTGH-accenture-uom-2/Team4-part1 | src/main/java/org/example/Main.java | 3,081 | //Εμβολιασμούς κάθε γιατρός για όλους τους γιατρούς | line_comment | el | package org.example;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class Main {
public static void main(String[] args) {
//Create arraylist of doctors
ArrayList<Doctor> doctors = new ArrayList<>();
Doctor doc1 = new Doctor("maria", "k", "8754");
Doctor doc2 = new Doctor("kwstas", "k", "8753");
Doctor doc3 = new Doctor("dimitra", "k", "98674");
Doctor doc4 = new Doctor("giwrgos", "k", "8764");
//create arraylist of timeslots for VacCenter1
ArrayList<Timeslot> timeslots1 = new ArrayList<>();
timeslots1.add(new Timeslot(10, 4, 2024, 9, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 10, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 11, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 12, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 13, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 14, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 15, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 16, 0,
10, 30, doc2));
timeslots1.add(new Timeslot(10, 4, 2024, 17, 0,
9, 30, doc1));
timeslots1.add(new Timeslot(10, 4, 2024, 18, 0,
10, 30, doc2));
//create arraylist of timeslots for VacCenter2
ArrayList<Timeslot> timeslots2 = new ArrayList<>();
timeslots2.add(new Timeslot(10, 4, 2024, 9, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 10, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 11, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 12, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 13, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 14, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 15, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 16, 0,
10, 30, doc4));
timeslots2.add(new Timeslot(10, 4, 2024, 17, 0,
9, 30, doc3));
timeslots2.add(new Timeslot(10, 4, 2024, 18, 0,
10, 30, doc4));
//create arraylist of VacCenters
ArrayList<VaccinationCenter> vaccinationCenters = new ArrayList<>();
vaccinationCenters.add(new VaccinationCenter("123", "casterly rock", timeslots1));
vaccinationCenters.add(new VaccinationCenter("456", "storm's end", timeslots2));
//Set vaccination center to doctors
doc1.setVaccinationCenter(vaccinationCenters.get(0));
doc2.setVaccinationCenter(vaccinationCenters.get(0));
doc3.setVaccinationCenter(vaccinationCenters.get(1));
doc4.setVaccinationCenter(vaccinationCenters.get(1));
//add timeslots to doctors
for(int i=0;i<10;i++){
if(i<5){
doc1.addTimeslot(timeslots1.get(i));
doc3.addTimeslot(timeslots2.get(i));
}
else{
doc2.addTimeslot(timeslots2.get(i));
doc4.addTimeslot(timeslots2.get(i));
}
}
//create arraylist of insures people
ArrayList<Insured> insuredpeople = new ArrayList<>();
insuredpeople.add(new Insured("Petyr", "Baelish", "128975439", "petyr@gmail.com",
"673537", "11/03/1935"));
insuredpeople.add(new Insured("Lord", "Varys", "373598", "lord@gmail.com",
"846338", "17/03/1972"));
insuredpeople.add(new Insured("Theon", "Greyjoy", "83635", "theon@gmail.com",
"83625", "7/08/1945"));
insuredpeople.add(new Insured("Sandor", "Clegane", "823627", "sandor@gmail.com",
"927156", "5/12/1988"));
insuredpeople.add(new Insured("Brienne", "of Tarth", "987534", "brienne@gmail.com",
"82615", "15/12/1999"));
insuredpeople.add(new Insured("Arya", "Stark", "765439", "arya@gmail.com",
"76754", "10/1/2010"));
insuredpeople.add(new Insured("Sansa", "Stark", "6535978", "sansa@gmail.com",
"787530", "8/11/2011"));
insuredpeople.add(new Insured("Jon", "Snow", "898674", "jon@gmail.com",
"876430", "18/4/1980"));
insuredpeople.add(new Insured("Daenerys", "Targaryen", "875643", "daeneys@gmail.com",
"998764", "1/5/1989"));
insuredpeople.add(new Insured("Tyrion", "Lannister", "7635234", "tyrion@gmail.com",
"926254", "10/7/1970"));
insuredpeople.add(new Insured("Cersei", "Lannister", "87632", "cersei@gmail.com",
"9864309", "1/4/1943"));
insuredpeople.add(new Insured("Ned", "Stark", "875318", "ned@gmail.com",
"986752", "19/9/1969"));
// Shuffle the list to get random ordering
Collections.shuffle(insuredpeople);
//make reservation for 8 insured people
//prepei na ftiaxtei o elegxos gia to an apo randoms select vaccCenter na min dialegete panta 1.
for (int i = 0; i < 8; i++){
Reservation reservation = insuredpeople.get(i).makeReservation(vaccinationCenters);
VaccinationCenter VacCenter = reservation.getVaccinationCenter();
VacCenter.addReservation(reservation);
Doctor doctor = reservation.findDoctor(doctors);
doctor.addReservation(reservation);
}
int count = 0;
//Make vaccination
//Na min 3exaso avrio na valo oti emvoliazontai oi 6 apo tous 8
for (Doctor doctor:doctors){
for (Reservation res:doctor.getReservations()){
//den xreiazetai mallon na epistrefei
Vaccination VaccObj =res.getInsured().getVaccinated(res,doctor);
doctor.addVaccination(VaccObj);
count=count+1;
if (count >=6) {
break; // Breaks out of the inner loop
}
}
if (count >= 6) {
break; // Breaks out of the outer loop
}
}
//Επικείμενα ραντεβου για κάθε εμβολιαστικό
for(VaccinationCenter vacCenter:vaccinationCenters){
vacCenter.printUpcomingReservations();
}
//Ελέυθερες χρονικές θυρίδες κάθε εμβολιαστικού
vaccinationCenters.get(0).printFreeTimeslot(timeslots1);
vaccinationCenters.get(1).printFreeTimeslot(timeslots2);
//Εμβολιασμούς κάθε<SUF>
for (Doctor doctor:doctors){
doctor.printVaccinations();
}
/*//Ασφαλισμένοι >60 που δεν έχουν κλείσει ραντεβού
for(VaccinationCenter vaccCenter:vaccinationCenters){
vaccCenter.printInsuredWithoutReservation(insuredpeople);
}*/
/*//create second Arraylist of appointments na to sizitisoume
ArrayList<Reservation> reservations = new ArrayList<>();
reservations.add(new Reservation(insuredpeople.get(0), timeslots1.get(1)));
reservations.add(new Reservation(insuredpeople.get(3), timeslots2.get(4)));
reservations.add(new Reservation(insuredpeople.get(4), timeslots1.get(7)));
reservations.add(new Reservation(insuredpeople.get(6), timeslots2.get(8)));
reservations.add(new Reservation(insuredpeople.get(7), timeslots1.get(2)));
reservations.add(new Reservation(insuredpeople.get(10), timeslots2.get(3)));
reservations.add(new Reservation(insuredpeople.get(11), timeslots1.get(9)));
reservations.add(new Reservation(insuredpeople.get(9), timeslots2.get(1)));
printToFile(reservations);*/
}
private static void printToFile(List<Reservation> reservations) {
File file = new File("vaccination-results.txt");
try (PrintWriter pw = new PrintWriter(file)) {
pw.println("The first center has the appointments: ");
for (var elem : reservations) {
if (elem.getVaccinationCenter().getCode().equals("123")) {
pw.println(elem.getTimeslot());
}
}
pw.println("The second center has the appointments: ");
for (var elem : reservations) {
if (elem.getVaccinationCenter().getCode().equals("456")) {
pw.println(elem.getTimeslot());
}
}
} catch (IOException e) {
System.out.println(e);
}
}
}
| 3,049 | 29 | 28 | 3,081 | 47 | 36 | 2,945 | 20 | 19 | 3,050 | 47 | 36 | 3,370 | 50 | 43 | false | false | false | false | false | true |
20353_5 | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package SoftwareEngineering;
import java.time.LocalDateTime;
import java.util.ArrayList;
/**
*
* @author DeRed
*/
public class Schedule {
private ArrayList<Appointment> appointment_list;
public Schedule(){
this.appointment_list = new ArrayList<Appointment>();
}
public boolean AddAppointment(int doctorID, Patient p, LocalDateTime d){
// ΔΗΜΙΟΥΡΓΙΑ ΕΝΟΣ TMP APPOINTMENT
Appointment tmp = new Appointment(p,d,doctorID);
// ΕΛΕΓΧΟΣ ΕΑΝ ΜΠΟΡΕΙ ΝΑ ΜΠΕΙ ΣΤΟ ΠΡΟΓΡΑΜΜΑ
for ( Appointment booking : this.appointment_list ){
if (booking.getDate() == tmp.getDate())
return false; //ΥΠΑΡΧΕΙ ΗΔΗ ΚΑΠΟΙΟ ΡΑΝΤΕΒΟΥ
}
// ΕΙΣΑΓΩΓΗ ΤΟΥ ΡΑΝΤΕΒΟΥ ΕΦΟΣΟΝ ΓΙΝΕΤΕ
this.appointment_list.add(tmp);
return true;
}
}
| GiannisP97/Medical_office_2018 | Medical_office/src/SoftwareEngineering/Schedule.java | 411 | // ΕΙΣΑΓΩΓΗ ΤΟΥ ΡΑΝΤΕΒΟΥ ΕΦΟΣΟΝ ΓΙΝΕΤΕ
| line_comment | el | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package SoftwareEngineering;
import java.time.LocalDateTime;
import java.util.ArrayList;
/**
*
* @author DeRed
*/
public class Schedule {
private ArrayList<Appointment> appointment_list;
public Schedule(){
this.appointment_list = new ArrayList<Appointment>();
}
public boolean AddAppointment(int doctorID, Patient p, LocalDateTime d){
// ΔΗΜΙΟΥΡΓΙΑ ΕΝΟΣ TMP APPOINTMENT
Appointment tmp = new Appointment(p,d,doctorID);
// ΕΛΕΓΧΟΣ ΕΑΝ ΜΠΟΡΕΙ ΝΑ ΜΠΕΙ ΣΤΟ ΠΡΟΓΡΑΜΜΑ
for ( Appointment booking : this.appointment_list ){
if (booking.getDate() == tmp.getDate())
return false; //ΥΠΑΡΧΕΙ ΗΔΗ ΚΑΠΟΙΟ ΡΑΝΤΕΒΟΥ
}
// ΕΙΣΑΓΩΓΗ ΤΟΥ<SUF>
this.appointment_list.add(tmp);
return true;
}
}
| 390 | 34 | 31 | 411 | 64 | 0 | 321 | 24 | 22 | 410 | 64 | 0 | 408 | 38 | 31 | false | false | false | false | false | true |
2320_1 | package thesis;
import java.io.File;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Scanner;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
/**
* @author Nektarios Gkouvousis
* @author ice18390193
*
* Η κλάση Definitions είναι υπεύθυνη για την διαχείριση και την αποθήκευση πληροφοριών
* που αφορούν διαδρομές (paths) αρχείων ή φακέλων του προγράμματος. Επιπλέον, περιλαμβάνει
* τις ονομασίες των αρχείων και των φύλλων του excel που θα χρησιμοποιηθούν.
* Τέλος, κληρονομεί από την κλάση JFrame μεθόδους ώστε να γίνει η πρώτη αρχικοποίηση
* στο μονοπάτι του προγράμματος (εάν χρειάζεται).
*/
public class Definitions extends JFrame{
private static String folderPath = "";
private static String settingsFile = "config.txt";
private static String genericFile = "1) General.xlsx";
private static String professorsAvailabilityFile = "TEST2.xlsx";
private static String classroomsAvailabilityFile = "TEST3.xlsx";
private static String examScheduleFile = "ΠΡΟΓΡΑΜΜΑ.xlsx";
private static String sheet1 = "PROFESSORS";
private static String sheet2 = "TIMESLOTS";
private static String sheet3 = "DATES";
private static String sheet4 = "CLASSROOMS";
private static String sheet5 = "COURSES";
private static String sheet6 = "COURSES_PROFESSORS";
private static String sheet7 = "ΠΡΟΓΡΑΜΜΑ ΕΞΕΤΑΣΤΙΚΗΣ";
private static String sheet8 = "ΠΡΟΓΡΑΜΜΑ ΑΙΘΟΥΣΩΝ";
public void Definitions(){
}
/**
* Έναρξη της διαδικασίας εκκίνησης του προγράμματος. Ελέγχεται εάν το αρχείο
* ρυθμίσεων υπάρχει και εκκινεί την εφαρμογή ανάλογα με την ύπαρξή του. Σε
* περίπτωση που δεν υπάρχει, το πρόγραμμα θα καλωσορίσει τον χρήστη στην εφαρμογή
* και θα τον παροτρύνει να ορίσει έναν φάκελο ως workind directory.
*/
public void startProcess(){
if (!configFileExists()){
if (JOptionPane.NO_OPTION == JOptionPane.showConfirmDialog(this, "Καλωσήρθατε στο βοήθημα για την παραγωγή του προγράμματος εξετάσεων!"
+ " Παρακαλώ επιλέξτε τον φάκελο στον οποίο θα γίνεται η επεξεργασία των αρχείων εισόδου/εξόδου.", "Μήνυμα Εφαρμογής", JOptionPane.OK_OPTION))
{
System.exit(0);
}else{
promptUserForFolder();
}
}else{
loadWorkingDirectory();
}
}
public void Definitions(String x){
this.folderPath = x;
}
public void setSettingsFile(String tmp){
settingsFile = tmp;
}
public String getSettingsFile(){
return settingsFile;
}
public void setFolderPath(String tmp){
folderPath = tmp;
}
public String getFolderPath(){
return folderPath;
}
public void setGenericFile(String tmp){
genericFile = tmp;
}
public String getGenericFile(){
return genericFile;
}
public void setConfigFile(String tmp){
settingsFile = tmp;
}
public String getConfigFile(){
return settingsFile;
}
public String getProfessorsAvailabilityFile(){
return professorsAvailabilityFile;
}
public String getClassroomsAvailabilityFile(){
return classroomsAvailabilityFile;
}
public void setExamScheduleFile(String x){
examScheduleFile = x;
}
public String getExamScheduleFile(){
return examScheduleFile;
}
public String getSheet1() {
return sheet1;
}
public static void setSheet1(String sheet1) {
Definitions.sheet1 = sheet1;
}
public String getSheet2() {
return sheet2;
}
public static void setSheet2(String sheet2) {
Definitions.sheet2 = sheet2;
}
public String getSheet3() {
return sheet3;
}
public static void setSheet3(String sheet3) {
Definitions.sheet3 = sheet3;
}
public String getSheet4() {
return sheet4;
}
public static void setSheet4(String sheet4) {
Definitions.sheet4 = sheet4;
}
public String getSheet5() {
return sheet5;
}
public static void setSheet5(String sheet5) {
Definitions.sheet5 = sheet5;
}
public String getSheet6() {
return sheet6;
}
public static void setSheet6(String sheet6) {
Definitions.sheet6 = sheet6;
}
public String getSheet7() {
return sheet7;
}
public static void setSheet7(String sheet7) {
Definitions.sheet7 = sheet7;
}
public String getSheet8() {
return sheet8;
}
public static void setSheet8(String sheet8) {
Definitions.sheet8 = sheet8;
}
/**
* Ελέγχει εάν το αρχείο ρυθμίσεων υπάρχει.
*
* @return true αν το αρχείο ρυθμίσεων υπάρχει, αλλιώς false (boolean)
*/
private static boolean configFileExists(){
return Files.exists(Paths.get(settingsFile));
}
/**
* Ελέγχει εάν το αρχείο προγράμματος εξετάσεων υπάρχει στον τρέχοντα φάκελο.
*
* @return true αν το αρχείο προγράμματος εξετάσεων υπάρχει, αλλιώς false (boolean).
*/
public boolean examScheduleFileExists(){
return Files.exists(Paths.get(folderPath + "\\" + examScheduleFile ));
}
/**
* Επιστρέφει τον τρέχοντα κατάλογο της εφαρμογής.
*
* @return Ο τρέχοντας κατάλογος.
*/
public String CurrentDirectory(){
return System.getProperty("user.dir");
}
/**
* Ζητά από τον χρήστη να επιλέξει έναν φάκελο για αποθήκευση.
*/
public void promptUserForFolder() {
try{
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int result = fileChooser.showOpenDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
File selectedFolder = fileChooser.getSelectedFile();
folderPath = selectedFolder.toString();
saveConfigFile();
}
}catch (Exception ex){
JOptionPane.showMessageDialog(this, "Πρόβλημα κατά την διαδικασία ενημέρωσης του workind directory.", "Μήνυμα Εφαρμογής", JOptionPane.OK_OPTION);
}
}
/**
* Αποθηκεύει τον επιλεγμένο φάκελο στο αρχείο ρυθμίσεων.
*/
public void saveConfigFile() {
if(folderPath != null){
try (PrintWriter out = new PrintWriter(settingsFile)) {
out.println(folderPath);
} catch (Exception e) {
return;
}
}else{
System.out.println("Cannot save a null folder path");
}
}
/**
* Φορτώνει τον τρέχοντα κατάλογο από το αρχείο ρυθμίσεων διαβάζοντας το αρχείο
* ρυθμίσεων.
*/
public void loadWorkingDirectory() {
try (Scanner scanner = new Scanner(new File(settingsFile))) {
if (scanner.hasNextLine()) {
folderPath = Paths.get(scanner.nextLine()).toString();
}
} catch (Exception e) {
folderPath = null;
}
}
} | Gouvo7/Exam-Schedule-Creator | src/thesis/Definitions.java | 2,645 | /**
* Έναρξη της διαδικασίας εκκίνησης του προγράμματος. Ελέγχεται εάν το αρχείο
* ρυθμίσεων υπάρχει και εκκινεί την εφαρμογή ανάλογα με την ύπαρξή του. Σε
* περίπτωση που δεν υπάρχει, το πρόγραμμα θα καλωσορίσει τον χρήστη στην εφαρμογή
* και θα τον παροτρύνει να ορίσει έναν φάκελο ως workind directory.
*/ | block_comment | el | package thesis;
import java.io.File;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Scanner;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
/**
* @author Nektarios Gkouvousis
* @author ice18390193
*
* Η κλάση Definitions είναι υπεύθυνη για την διαχείριση και την αποθήκευση πληροφοριών
* που αφορούν διαδρομές (paths) αρχείων ή φακέλων του προγράμματος. Επιπλέον, περιλαμβάνει
* τις ονομασίες των αρχείων και των φύλλων του excel που θα χρησιμοποιηθούν.
* Τέλος, κληρονομεί από την κλάση JFrame μεθόδους ώστε να γίνει η πρώτη αρχικοποίηση
* στο μονοπάτι του προγράμματος (εάν χρειάζεται).
*/
public class Definitions extends JFrame{
private static String folderPath = "";
private static String settingsFile = "config.txt";
private static String genericFile = "1) General.xlsx";
private static String professorsAvailabilityFile = "TEST2.xlsx";
private static String classroomsAvailabilityFile = "TEST3.xlsx";
private static String examScheduleFile = "ΠΡΟΓΡΑΜΜΑ.xlsx";
private static String sheet1 = "PROFESSORS";
private static String sheet2 = "TIMESLOTS";
private static String sheet3 = "DATES";
private static String sheet4 = "CLASSROOMS";
private static String sheet5 = "COURSES";
private static String sheet6 = "COURSES_PROFESSORS";
private static String sheet7 = "ΠΡΟΓΡΑΜΜΑ ΕΞΕΤΑΣΤΙΚΗΣ";
private static String sheet8 = "ΠΡΟΓΡΑΜΜΑ ΑΙΘΟΥΣΩΝ";
public void Definitions(){
}
/**
* Έναρξη της διαδικασίας<SUF>*/
public void startProcess(){
if (!configFileExists()){
if (JOptionPane.NO_OPTION == JOptionPane.showConfirmDialog(this, "Καλωσήρθατε στο βοήθημα για την παραγωγή του προγράμματος εξετάσεων!"
+ " Παρακαλώ επιλέξτε τον φάκελο στον οποίο θα γίνεται η επεξεργασία των αρχείων εισόδου/εξόδου.", "Μήνυμα Εφαρμογής", JOptionPane.OK_OPTION))
{
System.exit(0);
}else{
promptUserForFolder();
}
}else{
loadWorkingDirectory();
}
}
public void Definitions(String x){
this.folderPath = x;
}
public void setSettingsFile(String tmp){
settingsFile = tmp;
}
public String getSettingsFile(){
return settingsFile;
}
public void setFolderPath(String tmp){
folderPath = tmp;
}
public String getFolderPath(){
return folderPath;
}
public void setGenericFile(String tmp){
genericFile = tmp;
}
public String getGenericFile(){
return genericFile;
}
public void setConfigFile(String tmp){
settingsFile = tmp;
}
public String getConfigFile(){
return settingsFile;
}
public String getProfessorsAvailabilityFile(){
return professorsAvailabilityFile;
}
public String getClassroomsAvailabilityFile(){
return classroomsAvailabilityFile;
}
public void setExamScheduleFile(String x){
examScheduleFile = x;
}
public String getExamScheduleFile(){
return examScheduleFile;
}
public String getSheet1() {
return sheet1;
}
public static void setSheet1(String sheet1) {
Definitions.sheet1 = sheet1;
}
public String getSheet2() {
return sheet2;
}
public static void setSheet2(String sheet2) {
Definitions.sheet2 = sheet2;
}
public String getSheet3() {
return sheet3;
}
public static void setSheet3(String sheet3) {
Definitions.sheet3 = sheet3;
}
public String getSheet4() {
return sheet4;
}
public static void setSheet4(String sheet4) {
Definitions.sheet4 = sheet4;
}
public String getSheet5() {
return sheet5;
}
public static void setSheet5(String sheet5) {
Definitions.sheet5 = sheet5;
}
public String getSheet6() {
return sheet6;
}
public static void setSheet6(String sheet6) {
Definitions.sheet6 = sheet6;
}
public String getSheet7() {
return sheet7;
}
public static void setSheet7(String sheet7) {
Definitions.sheet7 = sheet7;
}
public String getSheet8() {
return sheet8;
}
public static void setSheet8(String sheet8) {
Definitions.sheet8 = sheet8;
}
/**
* Ελέγχει εάν το αρχείο ρυθμίσεων υπάρχει.
*
* @return true αν το αρχείο ρυθμίσεων υπάρχει, αλλιώς false (boolean)
*/
private static boolean configFileExists(){
return Files.exists(Paths.get(settingsFile));
}
/**
* Ελέγχει εάν το αρχείο προγράμματος εξετάσεων υπάρχει στον τρέχοντα φάκελο.
*
* @return true αν το αρχείο προγράμματος εξετάσεων υπάρχει, αλλιώς false (boolean).
*/
public boolean examScheduleFileExists(){
return Files.exists(Paths.get(folderPath + "\\" + examScheduleFile ));
}
/**
* Επιστρέφει τον τρέχοντα κατάλογο της εφαρμογής.
*
* @return Ο τρέχοντας κατάλογος.
*/
public String CurrentDirectory(){
return System.getProperty("user.dir");
}
/**
* Ζητά από τον χρήστη να επιλέξει έναν φάκελο για αποθήκευση.
*/
public void promptUserForFolder() {
try{
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int result = fileChooser.showOpenDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
File selectedFolder = fileChooser.getSelectedFile();
folderPath = selectedFolder.toString();
saveConfigFile();
}
}catch (Exception ex){
JOptionPane.showMessageDialog(this, "Πρόβλημα κατά την διαδικασία ενημέρωσης του workind directory.", "Μήνυμα Εφαρμογής", JOptionPane.OK_OPTION);
}
}
/**
* Αποθηκεύει τον επιλεγμένο φάκελο στο αρχείο ρυθμίσεων.
*/
public void saveConfigFile() {
if(folderPath != null){
try (PrintWriter out = new PrintWriter(settingsFile)) {
out.println(folderPath);
} catch (Exception e) {
return;
}
}else{
System.out.println("Cannot save a null folder path");
}
}
/**
* Φορτώνει τον τρέχοντα κατάλογο από το αρχείο ρυθμίσεων διαβάζοντας το αρχείο
* ρυθμίσεων.
*/
public void loadWorkingDirectory() {
try (Scanner scanner = new Scanner(new File(settingsFile))) {
if (scanner.hasNextLine()) {
folderPath = Paths.get(scanner.nextLine()).toString();
}
} catch (Exception e) {
folderPath = null;
}
}
} | 2,561 | 179 | 154 | 2,645 | 260 | 207 | 2,102 | 118 | 96 | 2,642 | 260 | 207 | 3,067 | 293 | 231 | false | false | false | false | false | true |
44559_1 | /*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Servlet.java to edit this template
*/
package Asteras;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Ηλίας
*/
@WebServlet(name = "CosSim", urlPatterns = {"/CosSim"})
public class CosSim extends HttpServlet {
/**
* Processes requests for both HTTP <code>GET</code> and <code>POST</code>
* methods.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
String query = request.getParameter("query");
query = query.toLowerCase();
String k = request.getParameter("k");
if ( k.equals("")){
k = "5";
}
LuceneTester tester = new LuceneTester();
String[] parts = query.split(" ");
String result = "";
ArrayList<Author> scores = null;
if (parts.length > 1) {
result += tester.getCosineSimilarity(parts[0], parts[1]);
} else if (parts.length == 1) {
scores = tester.getCosineSimilarity(parts[0]);
}
out.println("<!DOCTYPE html>\n"
+ "<!--\n"
+ "Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license\n"
+ "Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Html.html to edit this template\n"
+ "-->\n"
+ "<html>\n"
+ " <link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css\" integrity=\"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T\" crossorigin=\"anonymous\">\n"
+ " <head>\n"
+ " <title>CosSim</title>\n"
+ " <meta charset=\"UTF-8\">\n"
+ " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n"
+ " </head>\n"
+ "\n"
+ "\n"
+ " <body>\n"
+ " <div class=\"container\">\n"
+ " <div class=\"ibox-content\">\n"
+ " <br>\n"
+ " <a href=\"http://localhost:8080/Asteras/\" class=\"btn btn-primary\">Home</a><br><br>\n"
+ " <label for=\"k_results\">Top k results: </label>\n"
+ " <input type=\"text\" id=\"k_results\" name=\"k_results\" required><br>\n"
+ " <input name =\"submit_btn\" id = \"submit_btn\" type=\"submit\" value=\"Submit\">\n"
+ " <br>\n"
+ " </div>\n"
+ " \n"
+ " </div>\n"
+ " \n"
+ " <table class=\"table\">\n"
+ " <thead>\n"
+ " <tr>\n"
+ " <th scope=\"col\">#</th>\n"
+ " <th scope=\"col\">Author 1</th>\n"
+ " <th scope=\"col\">Author 2</th>\n"
+ " <th scope=\"col\">Score(cos sim)</th>\n"
+ " </tr>\n"
+ " </thead>\n"
+ " <tbody>");
if (scores == null) {
out.println("<tr>\n"
+ " <th scope=\"row\">1</th>\n"
+ " <td>" + parts[0] + "</td>\n"
+ " <td>" + parts[1] + "</td>\n"
+ " <td>" + result + "</td>\n"
+ " </tr>");
} else {
int i = 1;
for (Author score : scores) {
out.println("<tr>\n"
+ " <th scope=\"row\">" + i + "</th>\n"
+ " <td>" + parts[0] + "</td>\n"
+ " <td>" + score.getName() + "</td>\n"
+ " <td>" + score.getScore() + "</td>\n"
+ " </tr>");
i++;
if (i > Integer.parseInt(k)) {
break;
}
}
}
out.println("</tbody>\n"
+ " </table>\n"
+ " </body>\n"
+ "</html>");
out.println("<script>\n"
+ " function refreshK() {\n"
+ " window.location.href = 'http://localhost:8080/Asteras/CosSim?query=" + query + "'" + " +' &k=' + document.getElementById(\"k_results\").value;\n"
+ " }\n"
+ "\n"
+ " document.getElementById(\"submit_btn\").addEventListener(\"click\", refreshK);\n"
+ "\n"
+ "</script> ");
}
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Handles the HTTP <code>POST</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
| IliasAlex/Asteras | src/java/Asteras/CosSim.java | 1,709 | /**
*
* @author Ηλίας
*/ | block_comment | el | /*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Servlet.java to edit this template
*/
package Asteras;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Ηλίας
<SUF>*/
@WebServlet(name = "CosSim", urlPatterns = {"/CosSim"})
public class CosSim extends HttpServlet {
/**
* Processes requests for both HTTP <code>GET</code> and <code>POST</code>
* methods.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
String query = request.getParameter("query");
query = query.toLowerCase();
String k = request.getParameter("k");
if ( k.equals("")){
k = "5";
}
LuceneTester tester = new LuceneTester();
String[] parts = query.split(" ");
String result = "";
ArrayList<Author> scores = null;
if (parts.length > 1) {
result += tester.getCosineSimilarity(parts[0], parts[1]);
} else if (parts.length == 1) {
scores = tester.getCosineSimilarity(parts[0]);
}
out.println("<!DOCTYPE html>\n"
+ "<!--\n"
+ "Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license\n"
+ "Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Html.html to edit this template\n"
+ "-->\n"
+ "<html>\n"
+ " <link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css\" integrity=\"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T\" crossorigin=\"anonymous\">\n"
+ " <head>\n"
+ " <title>CosSim</title>\n"
+ " <meta charset=\"UTF-8\">\n"
+ " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n"
+ " </head>\n"
+ "\n"
+ "\n"
+ " <body>\n"
+ " <div class=\"container\">\n"
+ " <div class=\"ibox-content\">\n"
+ " <br>\n"
+ " <a href=\"http://localhost:8080/Asteras/\" class=\"btn btn-primary\">Home</a><br><br>\n"
+ " <label for=\"k_results\">Top k results: </label>\n"
+ " <input type=\"text\" id=\"k_results\" name=\"k_results\" required><br>\n"
+ " <input name =\"submit_btn\" id = \"submit_btn\" type=\"submit\" value=\"Submit\">\n"
+ " <br>\n"
+ " </div>\n"
+ " \n"
+ " </div>\n"
+ " \n"
+ " <table class=\"table\">\n"
+ " <thead>\n"
+ " <tr>\n"
+ " <th scope=\"col\">#</th>\n"
+ " <th scope=\"col\">Author 1</th>\n"
+ " <th scope=\"col\">Author 2</th>\n"
+ " <th scope=\"col\">Score(cos sim)</th>\n"
+ " </tr>\n"
+ " </thead>\n"
+ " <tbody>");
if (scores == null) {
out.println("<tr>\n"
+ " <th scope=\"row\">1</th>\n"
+ " <td>" + parts[0] + "</td>\n"
+ " <td>" + parts[1] + "</td>\n"
+ " <td>" + result + "</td>\n"
+ " </tr>");
} else {
int i = 1;
for (Author score : scores) {
out.println("<tr>\n"
+ " <th scope=\"row\">" + i + "</th>\n"
+ " <td>" + parts[0] + "</td>\n"
+ " <td>" + score.getName() + "</td>\n"
+ " <td>" + score.getScore() + "</td>\n"
+ " </tr>");
i++;
if (i > Integer.parseInt(k)) {
break;
}
}
}
out.println("</tbody>\n"
+ " </table>\n"
+ " </body>\n"
+ "</html>");
out.println("<script>\n"
+ " function refreshK() {\n"
+ " window.location.href = 'http://localhost:8080/Asteras/CosSim?query=" + query + "'" + " +' &k=' + document.getElementById(\"k_results\").value;\n"
+ " }\n"
+ "\n"
+ " document.getElementById(\"submit_btn\").addEventListener(\"click\", refreshK);\n"
+ "\n"
+ "</script> ");
}
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Handles the HTTP <code>POST</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
| 2,118 | 16 | 4 | 1,709 | 15 | 5 | 1,848 | 13 | 4 | 1,709 | 15 | 5 | 2,104 | 18 | 6 | false | false | false | false | false | true |
End of preview. Expand
in Dataset Viewer.
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 17