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
|
/*
* This file is part of NumptyPhysics
* Copyright (C) 2008 Tim Edmonds
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
*/
#if !defined(USE_HILDON) && !defined(WIN32)
#include "Os.h"
#include "Config.h"
#include <stdlib.h>
#include <string>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#include <sys/stat.h>
/**
* Include SDL, so that under Mac OS X it can rename my main()
* function to SDL_main (else NP *will* crash on OS X).
*
* http://www.libsdl.org/faq.php?action=listentries&category=7#55
**/
#include "SDL/SDL.h"
class OsFreeDesktop : public Os
{
public:
OsFreeDesktop()
: m_fifo(NULL),
m_cmdReady(false),
m_cmdPos(0)
{
}
virtual bool openBrowser( const char* url )
{
if ( url && strlen(url) < 200 ) {
char buf[256];
snprintf(buf,256,"xdg-open '%s'",url);
if ( system( buf ) == 0 ) {
return true;
}
}
return false;
}
virtual char* saveDialog( const char* path )
{
//TODO - gtk?
return NULL;
}
virtual void poll()
{
if ( m_fifo && !m_cmdReady ) {
int c = 0;
while ( c != EOF ) {
c = fgetc( m_fifo );
m_cmdBuffer[m_cmdPos++] = c;
if ( c == 0 ) {
m_cmdReady = false;
break;
}
}
}
}
virtual char *getLaunchFile()
{
poll();
if ( m_cmdReady ) {
m_cmdPos = 0;
m_cmdReady = false;
return m_cmdBuffer;
}
return NULL;
}
bool setupPipe( int argc, char** argv )
{
return true;
std::string fifoFile = Config::userDataDir()+Os::pathSep+".pipe";
FILE *fifo = fopen( fifoFile.c_str(), "w" );
if ( fifo ) {
for ( int i=1; i<argc; i++ ) {
fwrite( argv[i], 1, strlen(argv[i])+1, fifo );
}
fclose(fifo);
return false;
} else {
// Create the FIFO file
umask(0);
if (mknod( fifoFile.c_str(), S_IFIFO|0666, 0)) {
fprintf(stderr, "mknod() failed\n");
} else {
m_fifo = fopen( fifoFile.c_str(), "r");
}
return true;
}
}
private:
FILE *m_fifo;
char m_cmdBuffer[128];
int m_cmdPos;
bool m_cmdReady;
};
Os* Os::get()
{
static OsFreeDesktop os;
return &os;
}
const char Os::pathSep = '/';
int main(int argc, char** argv)
{
if ( ((OsFreeDesktop*)Os::get())->setupPipe(argc,argv) ) {
npmain(argc,argv);
}
}
#endif
|