summaryrefslogtreecommitdiff
path: root/src/main/Analyzor.java
blob: c84f6cdaf2732bdd90e269cc1157a93c1e13e736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
 * 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 main;

import database.ConnectionBuilder;
import database.NamedPreparedStatement;
import database.QueryUtils;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Scanner;

/**
 * The sentiment analysis class that rates tweets based on a unigram and
 * bigram set of weights.
 */
public class Analyzor {

    /**
     * The map that matches single words to their weights.
     */
    private final HashMap<String, Double> unimap = new HashMap();
    
    /**
     * The map that matches word pairs to their weights.
     */
    private final HashMap<String, Double> bimap = new HashMap();

    /**
     * The results of the query (can be null)
     */
    private ResultSet data = null;
    
    /**
     * The connection to the database.
     */
    private Connection connection;

    /**
     * The connection builder to initialize the connection.
     */
    private ConnectionBuilder builder;

    public Analyzor(ConnectionBuilder builder) {
        this.builder = builder;
    }

    //reads the lexicons
    private void readLexicon() throws FileNotFoundException {
        //TODO: fix? hardcoded filenames.
        Scanner uniScanner = new Scanner(new File("unigrams-pmilexicon.txt"));
        Scanner biScanner = new Scanner(new File("bigrams-pmilexicon.txt"));

        //Fill the map of unigrams
        while (uniScanner.hasNext()) {
            unimap.put(uniScanner.next(), Double.parseDouble(uniScanner.next()));
            if (uniScanner.hasNextLine()) {
                uniScanner.nextLine();
            }
            // NumberFormatException is not handled.
        }

        //fill the map of bigrams
        while (biScanner.hasNext()) {
            bimap.put(biScanner.next() + " " + biScanner.next(), Double.parseDouble(biScanner.next()));
            if (biScanner.hasNextLine()) {
                biScanner.nextLine();
            }
            // NumberFormatException is not handled.
        }
    }

    /**
     * Executes a query that the analyzer can analyze.
     * 
     * @param query The query string to execute.
     * @throws SQLException When database connection isn't available.
     */
    void Query(String query) throws SQLException {

        PreparedStatement statement;
        //make a connection to the database and execute the query
        connection = builder.create();
        statement = connection.prepareStatement(query);
        data = statement.executeQuery();
    }

    /**
     * Run a sentiment analysis and fill the database with the output.
     * 
     * @throws SQLException
     * @throws IOException 
     */
    public void sentimentAnalysis() throws SQLException, IOException {
        //read the lexicons
        readLexicon();

        //go to the start of te dataset
        if (data == null) {
            System.err.println("data is empty, try querying first");
            return;
        }
        data.beforeFirst();

        Double value;
        String text;

        //for all tuples
        while (data.next()) {
            //get the text
            text = data.getString("text");
            text = replacePunct(text);
            // test is the tweet text you are going to analyze
            String[] words = text.split("\\s+"); // text splitted into separate words
            double positiverate = 0; // positive rating

            // Rate the text with unigrams
            for (String word : words) {
                value = unimap.get(word);
                if (value != null) {
                    positiverate += unimap.get(word);
                }
            }
            // Rate the text with bigrams
            for (int i = 0; i < words.length - 1; i++) {
                String pair = words[i] + " " + words[i + 1];
                value = bimap.get(pair);
                if (value != null) {
                    positiverate += bimap.get(pair);
                }
            }
            //insert the rating into the database
            NamedPreparedStatement m_insertRating;
            m_insertRating = new NamedPreparedStatement(connection, QueryUtils.insertRating);
            QueryUtils.setInsertParams(m_insertRating, data.getLong("tweetid"), data.getString("brand"), (int) (positiverate * 10));
            m_insertRating.executeUpdate();
            //don't print the rate
            //System.out.println(text + ": " + (int) (positiverate * 10));
        }
    }

    //makes a wordcloud of the tweets in the ResultSet data
    private void makeWordCloud() throws SQLException {
        //go to the start of the ResultSet data
        if (data == null) {
            System.err.println("data is empty, try querying first");
            return;
        }
        
        //make the hashmap with the words and their frequency
        HashMap<String, Integer> wordcloud = new HashMap<>();

        //set the pointer at the start of the ResultSet
        data.beforeFirst();
        
        while(data.next()){
            //get the text
            
        }
    }

    //replaces punctuation so it will be splitted
    private String replacePunct(String text) {
        text = text.replaceAll("https?://\\S*", "");
        text = text.replaceAll("[!?):;\"']", " $0");
        text = text.replaceAll("[.,-](\\s|$)", " $0");
        text = text.replaceAll("\\s[(\"']", "$0 ");
        return text;
    }
}