blob: d36b3e48f90a1379afe96b7575418c64a8ba26b9 (
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
|
/***************************************************************************
copyright : (C) 2005-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#include "ooohandler.h"
#include "interface.h"
#include <iostream>
extern "C" {
Tellico::Cite::Handler* handler() {
return new Tellico::Cite::OOOHandler();
}
}
using Tellico::Cite::OOOHandler;
Tellico::Cite::Map OOOHandler::s_fieldsMap;
/*
TQString OOOHandler::OUString2Q(const rtl::OUString& str) {
const uint len = str.getLength();
TQChar* uni = new TQChar[len + 1];
const sal_Unicode* ouPtr = str.getStr();
const sal_Unicode* ouEnd = ouPtr + len;
TQChar* qPtr = uni;
while (ouPtr != ouEnd) {
*(qPtr++) = *(ouPtr++);
}
*qPtr = 0;
TQString ret(uni, len);
delete[] uni;
return ret;
}
rtl::OUString OOOHandler::TQString2OU(const TQString& str) {
const uint len = str.length();
sal_Unicode* uni = new sal_Unicode[len + 1];
const TQChar* qPtr = str.tqunicode();
const TQChar* qEnd = qPtr + len;
sal_Unicode* uPtr = uni;
while (qPtr != qEnd) {
*(uPtr++) = (*(qPtr++)).tqunicode();
}
*uPtr = 0;
rtl::OUString ret(uni, len);
delete[] uni;
return ret;
}
*/
void OOOHandler::buildFieldsMap() {
// s_fieldsMap["entry-type"] = "BibliographicType";
s_fieldsMap["entry-type"] = "BibiliographicType"; // typo in OpenOffice
s_fieldsMap["key"] = "Identifier";
s_fieldsMap["title"] = "Title";
s_fieldsMap["author"] = "Author";
s_fieldsMap["booktitle"] = "Booktitle";
s_fieldsMap["address"] = "Address";
s_fieldsMap["chapter"] = "Chapter";
s_fieldsMap["edition"] = "Edition";
s_fieldsMap["editor"] = "Editor";
s_fieldsMap["organization"] = "Organizations"; // OOO has an 's'
s_fieldsMap["publisher"] = "Publisher";
s_fieldsMap["pages"] = "Pages";
s_fieldsMap["howpublished"] = "Howpublished";
s_fieldsMap["institution"] = "Institution";
s_fieldsMap["journal"] = "Journal";
s_fieldsMap["month"] = "Month";
s_fieldsMap["number"] = "Number";
s_fieldsMap["note"] = "Note";
s_fieldsMap["annote"] = "Annote";
s_fieldsMap["series"] = "Series";
s_fieldsMap["volume"] = "Volume";
s_fieldsMap["year"] = "Year";
s_fieldsMap["url"] = "URL";
s_fieldsMap["isbn"] = "ISBN";
}
OOOHandler::OOOHandler() : Handler(), m_interface(0), m_state(NoConnection) {
}
Tellico::Cite::State OOOHandler::state() const {
// possibly the write got closed underneath us
if(m_state != NoConnection && m_interface && !m_interface->isConnected()) {
m_state = NoConnection;
}
return m_state;
}
bool OOOHandler::connect() {
if(!m_interface) {
m_interface = new Interface();
}
if(!m_interface->connect(host(), port(), pipe())) {
return false;
}
if(!m_interface->createDocument()) {
m_state = NoDocument;
return false;
}
m_state = NoCitation;
return true;
}
bool OOOHandler::cite(Map& fields) {
if(!m_interface && !connect()) {
return false;
}
Cite::Map newFields = convertFields(fields);
// the ooo interface can insert records in the database, but the citations in the
// document ARE NOT linked to them, meaning they aren't updated by changing the database
// the user has to manually edit each entry
bool success = m_interface->insertCitations(newFields) && m_interface->updateBibliography();
// bool success = m_interface->insertRecords(newFields);
if(success) {
m_state = Success;
// m_interface->disconnect();
// m_state = NoConnection;
}
return success;
}
Tellico::Cite::Map OOOHandler::convertFields(Cite::Map& fields) {
if(s_fieldsMap.empty()) {
buildFieldsMap();
}
Cite::Map values;
for(Cite::Map::iterator it = s_fieldsMap.begin(); it != s_fieldsMap.end(); ++it) {
std::string value = fields[it->first];
if(!value.empty()) {
values[it->second] = value;
}
}
return values;
}
|