File: gda-setup.php

package info (click to toggle)
libgda5 5.2.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,168 kB
  • sloc: ansic: 495,319; xml: 10,486; yacc: 5,165; sh: 4,451; makefile: 4,095; php: 1,416; java: 1,300; javascript: 1,298; python: 896; sql: 879; perl: 116
file content (57 lines) | stat: -rw-r--r-- 1,621 bytes parent folder | download | duplicates (8)
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
<?php
/* Configure session cache */
session_cache_limiter('nocache');
session_start();

header('Content-type: text/plain; charset=UTF-8');

include_once "gda-utils.php";
include_once "gda-config.php";

if (! try_include ("MDB2.php") && ! try_include ("PEAR".DIRECTORY_SEPARATOR."MDB2.php")) {
	$reply = new SimpleXMLElement("<reply></reply>");
	$node = $reply->addChild ("status", "ERROR");
	$node->addAttribute ("error", "The PEAR MDB2 extension is required");
	echo gda_add_hash ($init_shared, $reply->asXml());
	session_destroy ();
	exit (1);
}

if (! extension_loaded ("SimpleXML")) {
	$reply = new SimpleXMLElement("<reply></reply>");
	$node = $reply->addChild ("status", "ERROR");
	$node->addAttribute ("error", "The SimpleXML extension is required");
	echo gda_add_hash ($init_shared, $reply->asXml());
	session_destroy ();
	exit (1);
}

$cmdfile = get_command_filename (session_id ());
$replyfile = get_reply_filename (session_id ());

umask(0);
$mode = 0600;
posix_mkfifo ($cmdfile, $mode);
posix_mkfifo ($replyfile, $mode);

if (!file_exists ($cmdfile) ||
    !file_exists ($replyfile)) {
	$reply = new SimpleXMLElement("<reply></reply>");
	$node = $reply->addChild ("status", "ERROR");
	$node->addAttribute ("error", "Can't create named pipes");
	echo gda_add_hash ($init_shared, $reply->asXml());
	
	@unlink ($cmdfile);
	@unlink ($replyfile);
	session_destroy ();
	exit (1);
}

/* all setup */
$reply = new SimpleXMLElement("<reply></reply>");
$reply->addChild ('session', htmlspecialchars(SID));
$reply->addChild ("status", "OK");
echo gda_add_hash ($init_shared, $reply->asXml());
flush ();
ob_flush ();
?>