Created
October 19, 2010 15:30
-
-
Save sfentress/634383 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if($_REQUEST['qucs'] || $_REQUEST['spice']) { | |
//if (false) { | |
$path = '/usr/local/bin'; | |
if ($_REQUEST['qucs']) { | |
$data = str_replace('\\', '', $_REQUEST['qucs']) . "\n"; | |
$command = $path . '/qucsator'; | |
} else if ($_REQUEST['spice']){ | |
$data = $_REQUEST['spice']; | |
$command = $path . '/qucsconv -if spice -of qucs | ' . $path . '/qucsator'; | |
} | |
$qucsator = proc_open($command, array(array('pipe', 'r'),array('pipe','w'),array('pipe','w')), $pipes); | |
fwrite($pipes[0], $data); | |
fclose($pipes[0]); | |
$analysis = stream_get_contents($pipes[1]); | |
$err = stream_get_contents($pipes[2]); | |
if (proc_close($qucsator) == 0) { | |
$result = $analysis; | |
} else { | |
$result = $err; | |
} | |
if ($_REQUEST['callback']) { | |
header('Content-type: text/javascript'); | |
echo($_REQUEST['callback'] . "({'result':'" . json_encode($result) . "'})"); | |
} else { | |
header('Content-type: text/plain'); | |
echo $result; | |
} | |
} else { ?> | |
<pre><?echo print_r($_REQUEST); ?> | |
<style> | |
textarea{ | |
display: block; | |
width: 100%; | |
height: 200px; | |
} | |
</style> | |
<form action="" method="post"> | |
Upload a qucs netlist:<br /> | |
<textarea name="qucs"></textarea><br /> | |
Or a spice netlist:<br /> | |
<textarea name="spice"></textarea> | |
<input type="text" name="callback"></input> | |
<input type="submit"></input> | |
</form> | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment