blob: 875e8049a7c81e44c511c11bfcae297e03a07bf1 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
use 5.10.0;
use strict;
use warnings;
use Thrift;
use Thrift::ServerSocket;
use Thrift::UnixSocket;
use IO::Socket::UNIX;
package Thrift::UnixServerSocket;
use base qw( Thrift::ServerSocket );
use version 0.77; our $VERSION = version->declare("$Thrift::VERSION");
#
# Constructor.
# If a single argument is given that is not a hash, that is the unix domain socket path.
# If a single argument is given that is a hash:
# @param[in] path unix domain socket file name
# @param[in] queue the listen queue size (default is not specified is supplied by ServerSocket)
# @example my $serversock = Thrift::UnixServerSocket->new($path);
# @example my $serversock = Thrift::UnixServerSocket->new(path => "somepath", queue => 64);
#
sub new
{
my $classname = shift;
my $args = shift;
my $self;
if (ref($args) eq 'HASH') {
$self = $classname->SUPER::new($args);
} else {
$self = $classname->SUPER::new();
$self->{path} = $args;
}
return bless($self, $classname);
}
sub __client
{
return Thrift::UnixSocket->new();
}
sub __listen
{
my $self = shift;
my $sock = IO::Socket::UNIX->new(
Type => IO::Socket::SOCK_STREAM,
Local => $self->{path},
Listen => $self->{queue})
|| do {
my $error = 'UnixServerSocket: Could not bind to ' .
$self->{path} . ' (' . $! . ')';
if ($self->{debug}) {
$self->{debugHandler}->($error);
}
die Thrift::TTransportException->new($error, Thrift::TTransportException::NOT_OPEN);
};
return $sock;
}
1;