mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-25 02:44:18 +00:00
push
This commit is contained in:
parent
5411bd91bd
commit
54f3036d89
@ -47,15 +47,44 @@ def corpus_analysis(message):
|
|||||||
room=request.sid)
|
room=request.sid)
|
||||||
return
|
return
|
||||||
""" Prepare and execute a query """
|
""" Prepare and execute a query """
|
||||||
logger.warning('Payload: {}'.format(message))
|
corpus = 'CORPUS'
|
||||||
corpus_name = 'CORPUS'
|
query = (message['query'])
|
||||||
query = message['query']
|
query_subcorpus = 'Results'
|
||||||
client.select_corpus(corpus_name)
|
client.cqp_query(corpus, query_subcorpus, query)
|
||||||
client.query_subcorpus(query)
|
|
||||||
results = client.show_query_results(
|
data = {'matches': [], 'cpos_lookup': {}, 'text_loopup': {}}
|
||||||
result_len=int(message['hits_per_page']),
|
|
||||||
context_len=int(message['context']))
|
""" Evaluate query results """
|
||||||
socketio.emit('corpus_analysis', results, room=request.sid)
|
match_corpus = '{}:{}'.format(corpus, query_subcorpus)
|
||||||
|
match_num = min(int(message['hits_per_page']), client.cqp_subcorpus_size(match_corpus))
|
||||||
|
match_boundaries = zip(client.cqp_dump_subcorpus(match_corpus,
|
||||||
|
0x10,
|
||||||
|
0, match_num - 1),
|
||||||
|
client.cqp_dump_subcorpus(match_corpus,
|
||||||
|
0x11,
|
||||||
|
0, match_num - 1))
|
||||||
|
context = 15
|
||||||
|
corpus_len = 10000
|
||||||
|
for match_start, match_end in match_boundaries:
|
||||||
|
data['matches'].append({'lc': list(range(max(0, match_start - int(message['context'])), match_start)),
|
||||||
|
'hit': list(range(match_start, match_end + 1)),
|
||||||
|
'rc': list(range(match_end + 1, min(corpus_len, match_end + 1 + int(message['context']))))})
|
||||||
|
cpos_list = []
|
||||||
|
for match in data['matches']:
|
||||||
|
cpos_list += match['lc'] + match['hit'] + match['rc']
|
||||||
|
cpos_list = list(set(cpos_list))
|
||||||
|
pos_list = client.cl_cpos2str('{}.pos'.format(corpus), cpos_list)
|
||||||
|
simple_pos_list = client.cl_cpos2str('{}.simple_pos'.format(corpus), cpos_list)
|
||||||
|
text_id_list = client.cl_cpos2struc('{}.text_title'.format(corpus), cpos_list)
|
||||||
|
word_list = client.cl_cpos2str('{}.word'.format(corpus), cpos_list)
|
||||||
|
for cpos, pos, simple_pos, text_id, word in zip(cpos_list, pos_list, simple_pos_list, text_id_list, word_list):
|
||||||
|
data['cpos_lookup'][cpos] = {'pos': pos, 'simple_pos': simple_pos, 'text_id': text_id, 'word': word}
|
||||||
|
text_author_list = client.cl_struc2str('{}.text_author'.format(corpus), text_id_list)
|
||||||
|
text_publishing_year_list = client.cl_struc2str('{}.text_publishing_year'.format(corpus), text_id_list)
|
||||||
|
text_title_list = client.cl_struc2str('{}.text_title'.format(corpus), text_id_list)
|
||||||
|
for text_id, text_author, text_publishing_year, text_title in zip(text_id_list, text_author_list, text_publishing_year_list, text_title_list):
|
||||||
|
data['text_loopup'][text_id] = {'author': text_author, 'publishing_year': text_publishing_year, 'title': text_title}
|
||||||
|
socketio.emit('corpus_analysis', data, room=request.sid)
|
||||||
|
|
||||||
|
|
||||||
def corpus_analysis_session_handler(app, corpus_id, session_id):
|
def corpus_analysis_session_handler(app, corpus_id, session_id):
|
||||||
|
@ -42,6 +42,7 @@
|
|||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
|
<span class="card-title">Query Link</span>
|
||||||
<form id="download-form" method="POST">
|
<form id="download-form" method="POST">
|
||||||
{{ query_download_form.hidden_tag() }}
|
{{ query_download_form.hidden_tag() }}
|
||||||
<span class="card-title">Download Results</span>
|
<span class="card-title">Download Results</span>
|
||||||
@ -124,39 +125,55 @@
|
|||||||
let queryData = {"context": formData.get("context"),
|
let queryData = {"context": formData.get("context"),
|
||||||
"hits_per_page": formData.get("hits_per_page"),
|
"hits_per_page": formData.get("hits_per_page"),
|
||||||
"query": formData.get("query")};
|
"query": formData.get("query")};
|
||||||
socket.emit('corpus_analysis', queryData);
|
socket.emit("corpus_analysis", queryData);
|
||||||
M.toast({html: 'Query has been sent!'});
|
M.toast({html: "Query has been sent!"});
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on('corpus_analysis', function(result) {
|
socket.on("corpus_analysis", function(result) {
|
||||||
console.log(result['matches']);
|
console.log(result);
|
||||||
|
var htmlString = "";
|
||||||
var htmlString;
|
|
||||||
var token;
|
var token;
|
||||||
|
|
||||||
|
if (result['matches'].length === 0) {
|
||||||
|
M.toast({html: 'No results!'});
|
||||||
|
}
|
||||||
|
|
||||||
for (let match of result['matches']) {
|
for (let match of result['matches']) {
|
||||||
htmlString = `<tr class="match">`;
|
htmlString += `<tr class="match">`;
|
||||||
|
htmlString += `<td class="title"></td>`
|
||||||
htmlString += `<td class="left-context">`;
|
htmlString += `<td class="left-context">`;
|
||||||
for (cpos of match['lc']) {
|
for (cpos of match["lc"]) {
|
||||||
token = result['cpos_lookup'][cpos];
|
token = result["cpos_lookup"][cpos];
|
||||||
htmlString += `<span data-cpos="${cpos}">${token['word']}</span>`;
|
htmlString += token["simple_pos"] != "PUNCT" ? " " : "";
|
||||||
|
htmlString += `<span class="token" data-cpos="${cpos}">${token["word"]}</span>`;
|
||||||
}
|
}
|
||||||
htmlString += `</td>`;
|
htmlString += `</td>`;
|
||||||
htmlString += `<td class="hit">`;
|
htmlString += `<td class="hit">`;
|
||||||
for (cpos of match["hit"]) {
|
for (cpos of match["hit"]) {
|
||||||
token = result['cpos_lookup'][cpos];
|
token = result["cpos_lookup"][cpos];
|
||||||
htmlString += `<span data-cpos="${cpos}">${token['word']}</span>`;
|
htmlString += token["simple_pos"] != "PUNCT" ? " " : "";
|
||||||
|
htmlString += `<span class="token" data-cpos="${cpos}">${token["word"]}</span>`;
|
||||||
}
|
}
|
||||||
htmlString += `</td>`;
|
htmlString += `</td>`;
|
||||||
htmlString += `<td class="right-context">`;
|
htmlString += `<td class="right-context">`;
|
||||||
for (cpos of match['rc']) {
|
for (cpos of match["rc"]) {
|
||||||
token = result['cpos_lookup'][cpos];
|
token = result["cpos_lookup"][cpos];
|
||||||
htmlString += `<span data-cpos="${cpos}">${token['word']}</span>`;
|
htmlString += token["simple_pos"] != "PUNCT" ? " " : "";
|
||||||
|
htmlString += `<span class="token" data-cpos="${cpos}">${token["word"]}</span>`;
|
||||||
}
|
}
|
||||||
htmlString += `</td>`;
|
htmlString += `</td>`;
|
||||||
htmlString += `</tr>`;
|
htmlString += `</tr>`;
|
||||||
queryResultsElement.insertAdjacentHTML("beforeend", htmlString);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
queryResultsElement.innerHTML = htmlString;
|
||||||
|
|
||||||
|
queryResultsElement.querySelectorAll(".token").forEach(function(tokenElement) {
|
||||||
|
tokenElement.addEventListener("click", function(event) {
|
||||||
|
let token = result["cpos_lookup"][tokenElement.dataset.cpos];
|
||||||
|
let text = result["text_loopup"][token["text_id"]];
|
||||||
|
alert(`${token["word"]} // ${token["pos"]} // ${token["simple_pos"]} // ${text["title"]}`);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user