Subversion Repositories SmartDukaan

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 ashish 1
Thrift PHP/Apache Integration
2
 
3
License
4
=======
5
 
6
Licensed to the Apache Software Foundation (ASF) under one
7
or more contributor license agreements. See the NOTICE file
8
distributed with this work for additional information
9
regarding copyright ownership. The ASF licenses this file
10
to you under the Apache License, Version 2.0 (the
11
"License"); you may not use this file except in compliance
12
with the License. You may obtain a copy of the License at
13
 
14
  http://www.apache.org/licenses/LICENSE-2.0
15
 
16
Unless required by applicable law or agreed to in writing,
17
software distributed under the License is distributed on an
18
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19
KIND, either express or implied. See the License for the
20
specific language governing permissions and limitations
21
under the License.
22
 
23
Building PHP Thrift Services with Apache
24
========================================
25
 
26
Thrift can be embedded in the Apache webserver with PHP installed. Sample
27
code is provided below. Note that to make requests to this type of server
28
you must use a THttpClient transport.
29
 
30
Sample Code
31
===========
32
 
33
<?php
34
 
35
/**
36
 * Example of how to build a Thrift server in Apache/PHP
37
 *
38
 */
39
 
40
$GLOBALS['THRIFT_ROOT'] = '/your/thrift/root';
41
 
42
include_once $GLOBALS['THRIFT_ROOT'].'/Thrift.php';
43
include_once $GLOBALS['THRIFT_ROOT'].'/packages/Service/Service.php';
44
include_once $GLOBALS['THRIFT_ROOT'].'/transport/TPhpStream.php';
45
include_once $GLOBALS['THRIFT_ROOT'].'/protocol/TBinaryProtocol.php';
46
 
47
class ServiceHandler implements ServiceIf {
48
  // Implement your interface and methods here
49
}
50
 
51
header('Content-Type: application/x-thrift');
52
 
53
$handler = new ServiceHandler();
54
$processor = new ServiceProcessor($handler);
55
 
56
// Use the TPhpStream transport to read/write directly from HTTP
57
$transport = new TPhpStream(TPhpStream::MODE_R | TPhpStream::MODE_W);
58
$protocol = new TBinaryProtocol($transport);
59
 
60
$transport->open();
61
$processor->process($protocol, $protocol);
62
$transport->close();