-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
txtdeodt.cpp
57 lines (47 loc) · 1.42 KB
/
txtdeodt.cpp
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
// vim: set expandtab tabstop=8 shiftwidth=8 foldmethod=marker:
/** @file txtdeodt.cpp
* Extrae texto de un archivo en formato odt de Open Document Format
*
* @package Mt77
* @author Vladimir Támara Patiño. vtamara@pasosdeJesus.org
* Dominio público. 2009. Sin garantías
* http://creativecommons.org/licenses/publicdomain/
* @version $Id: txtdeodt.cpp,v 1.5 2010/01/06 10:09:30 vtamara Exp $
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <err.h>
#include <string>
#include <iostream>
#include <fstream>
using namespace std;
#include "leeODT.hpp"
void muestra(string t)
{
fstream is(t.c_str(), ios_base::in);
while (!is.eof()) {
cout << (char)is.get() ;
}
is.close();
}
int main(int argc, char *argv[])
{
if (argc != 2) {
cerr << "Se esperaban un argumento, el nombre del archivo odt"
<<endl;
exit(1);
}
string dt = prepara(string(argv[1]));
string ns = dt + string("/salida.txt");
aplicaXSLT(dt, dt + "/content.xml", ns);
muestra(dt + "/salida.txt");
unlink(string(dt + "/mimetype").c_str());
unlink(string(dt + "/content.xml").c_str());
unlink(string(dt + "/salida.txt").c_str());
unlink(string(dt + "/convierte.xslt").c_str());
rmdir(dt.c_str());
return 0;
}