1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #include "asciidoc.h"
- #include <fstream>
- #include <signal.h>
- #include <stdlib.h>
- #include <string.h>
- #include <boost/scoped_array.hpp>
- #include "Wt/WString"
- using namespace Wt;
- namespace {
- std::string tempFileName()
- {
- #ifndef WT_WIN32
- char spool[20];
- strcpy(spool, "/tmp/wtXXXXXX");
- int i = mkstemp(spool);
- close(i);
- #else
- char spool[2 * L_tmpnam];
- tmpnam(spool);
- #endif
- return std::string(spool);
- }
- std::string readFileToString(const std::string& fileName)
- {
- std::fstream file (fileName.c_str(), std::ios::in | std::ios::binary);
- file.seekg(0, std::ios::end);
- int length = file.tellg();
- file.seekg(0, std::ios::beg);
- boost::scoped_array<char> buf(new char[length]);
- file.read(buf.get(), length);
- file.close();
- return std::string(buf.get(), length);
- }
- }
- WString asciidoc(const Wt::WString& src)
- {
- std::string srcFileName = tempFileName();
- std::string htmlFileName = tempFileName();
- {
- std::ofstream srcFile(srcFileName.c_str(), std::ios::out);
- std::string ssrc = src.toUTF8();
- srcFile.write(ssrc.c_str(), (std::streamsize)ssrc.length());
- srcFile.close();
- }
- #if defined(ASCIIDOC_EXECUTABLE)
- #define xstr(s) str(s)
- #define str(s) #s
- std::string cmd = xstr(ASCIIDOC_EXECUTABLE);
- #else
- std::string cmd = "asciidoc";
- #endif
- std::string command = cmd + " -o " + htmlFileName + " -s " + srcFileName;
- #ifndef WT_WIN32
- /*
- * So, asciidoc apparently sends a SIGINT which is caught by its parent
- * process.. So we have to temporarily ignore it.
- */
- struct sigaction newAction, oldAction;
- newAction.sa_handler = SIG_IGN;
- newAction.sa_flags = 0;
- sigemptyset(&newAction.sa_mask);
- sigaction(SIGINT, &newAction, &oldAction);
- #endif
- bool ok = system(command.c_str()) == 0;
- #ifndef WT_WIN32
- sigaction(SIGINT, &oldAction, 0);
- #endif
- WString result;
- if (ok) {
- result = WString::fromUTF8(readFileToString(htmlFileName));
- } else
- result = WString::fromUTF8("<i>Could not execute asciidoc</i>");
- unlink(srcFileName.c_str());
- unlink(htmlFileName.c_str());
- return result;
- }
|