加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Perl基础教程:多线程编程

发布时间:2020-12-16 00:15:44 所属栏目:大数据 来源:网络整理
导读:Tutorial on threads in Perl Perl的线程教程 一、DESCRIPTION This tutorial describes the use of Perl interpreter threads (sometimes referred to as ithreads)? that was first introduced in Perl 5.6.0.? In this model,each thread runs in its own
Tutorial on threads in Perl
Perl的线程教程

一、DESCRIPTION

This tutorial describes the use of Perl interpreter threads (sometimes referred to as ithreads)?
that was first introduced in Perl 5.6.0.?
In this model,each thread runs in its own Perl interpreter,and any data sharing between threads must be explicit.?
The user-level interface for ithreads uses the threads class.
ithreads是从Perl 5.6.0版权开始支持的。
在这个模型中,每个线程都是运行在它自己的Perl解释器中,且线程间的任何数据共享都必须明确声明。
ithreads的用户接口使用threads类。
NOTE: There was another older Perl threading flavor called the 5.005 model that used the threads class.?
This old model was known to have problems,is deprecated,and was removed for release 5.10.?
You are strongly encouraged to migrate any existing 5.005 threads code to the new model as soon as possible.
老版本的线程模型5.005有一些问题,现在没有再用了。
You can see which (or neither) threading flavour you have by running?
??perl -V?
and looking at the Platform section.?
If you have useithreads=define you have ithreads,?
if you have use5005threads=define you have 5.005 threads.?
If you have neither,you don't have any thread support built in. If you have both,you are in trouble.
线程的版本查看与设置
The threads and threads::shared modules are included in the core Perl distribution.?
Additionally,they are maintained as a separate modules on CPAN,so you can check there for any updates.
threads和threads::shared模块已包括在Perl核心发布版本中。其它的模块在CPAN中
二、What Is A Thread Anyway?【什么是线程?】
A thread is a flow of control through a program with a single execution point.
线程是程序的某个单一顺序的控制流
Sounds an awful lot like a process,doesn't it? Well,it should.?
Threads are one of the pieces of a process.?
Every process has at least one thread and,up until now,every process running Perl had only one thread.
With 5.8,though,you can create extra threads. We're going to show you how,when,and why.
听起来和进程一样,实际上就是。
线程就是进程中的一种。
每个进程至少有一个线程。
在5.8后,才可以创建多个线程。
三、Threaded Program Models【线程编程模型】
There are three basic ways that you can structure a threaded program.?
Which model you choose depends on what you need your program to do.?
For many non-trivial threaded programs,you'll need to choose different models for different pieces of your program.
构建线程编程有三种基本的方式,可以依据需求来做选择。对于初学者来说,这个很有用
1. Boss/Worker【老板/工人】
The boss/worker model usually has one boss thread and one or more worker threads.?
The boss thread gathers or generates tasks that need to be done,then parcels those tasks out to the appropriate worker thread.
boss/worker模块通常有一个boss线程,一个或多个worker线程。
boss线程收集/生成任务,然后打包这些任务给合适的工作线程。
This model is common in GUI and server programs,helvetica; font-size:14px">where a main thread waits for some event and then passes that event to the appropriate worker threads for processing.?
Once the event has been passed on,the boss thread goes back to waiting for another event.
这种编程模型通常用在GUI和服务器编程中,
主线程等待事件的发生,然后将事件传给合适的工作线程来处理。
The boss thread does relatively little work. While tasks aren't necessarily performed faster than with any other method,
it tends to have the best user-response times.
boss线程做很少的工作,这样才能做得足够的快,以获得最好的用户响应时间。
2. Work Crew【工作组】
In the work crew model,several threads are created that do essentially the same thing to different pieces of data.?
It closely mirrors classical parallel processing and vector processors,helvetica; font-size:14px">where a large array of processors do the exact same thing to many pieces of data.
在工作组模型中,多个线程被先创建出对不同的数据片做基本上相同的事情。
它类似于经典的并行处理和向量处理机,对很多个处理器对许多数据片做完全相同的事情。
This model is particularly useful if the system running the program will distribute multiple threads across different processors.?
It can also be useful in ray tracing or rendering engines,helvetica; font-size:14px">where the individual threads can pass on interim results to give the user visual feedback.
如果系统运行的程序将分配多个线程在不同处理器上,这种模型特别有用。
它也可以用于射线追踪或渲染引擎,使得单个线程可以把中间结果提供给用户获得视觉反馈。
3. Pipeline【流水线】
The pipeline model divides up a task into a series of steps,and passes the results of one step on to the thread processing the next.?
Each thread does one thing to each piece of data and passes the results to the next thread in line.
流水线模型将一个任务划分成一系列的步骤,每个线程的处理结果都传给下一个线程。
每个线程对数据片做一件事情并将结果传给线上的下一个线程。
This model makes the most sense if you have multiple processors so two or more threads will be executing in parallel,helvetica; font-size:14px">though it can often make sense in other contexts as well. It tends to keep the individual tasks small and simple,helvetica; font-size:14px">as well as allowing some parts of the pipeline to block (on I/O or system calls,for example) while other parts keep going.?
If you're running different parts of the pipeline on different processors you may also take advantage of the caches on each processor.
这个模型使得程序看起来有多处理器,且有两个或多个线程在并行工作。
尽管实际上它和上下文有关系,而且要使独立任务小而简单。
This model is also handy for a form of recursive programming where,rather than having a subroutine call itself,helvetica; font-size:14px">it instead creates another thread. Prime and Fibonacci generators both map well to this form of the pipeline model.?
(A version of a prime number generator is presented later on.)
这种模型很适合于递归程序的设计。不需要通过子程序调用自身,使用线程创建就能做到这一点。
四、What kind of threads are Perl threads?【Perl线程是什么类型的线程】
If you have experience with other thread implementations,you might find that things aren't quite what you expect.?
It's very important to remember when dealing with Perl threads that Perl Threads Are Not X Threads for all values of X.?
They aren't POSIX threads,or DecThreads,or Java's Green threads,or Win32 threads.?
There are similarities,and the broad concepts are the same,helvetica; font-size:14px">but if you start looking for implementation details you're going to be either disappointed or confused. Possibly both.
Perl线程和其它类型的线程有很大的不同。
很重要的一点就是,Perl线程不同于POSIX线程,或DecThread,或Java的Greeen线程,或Win32线程-------- 它们本质是都是相同的。
Perl线程对数据不是共享的。

This is not to say that Perl threads are completely different from everything that's ever come before. They're not.?
Perl's threading model owes a lot to other thread models,especially POSIX. Just as Perl is not C,Perl threads are not POSIX threads.?
So if you find yourself looking for mutexes,or thread priorities,helvetica; font-size:14px">it's time to step back a bit and think about what you want to do and how Perl can do it.
当然也并不是说Perl线程完全不同于任何其它线程。
Perl线程模型借鉴了很多其它线程模型,特别是POSIX。正如Perl不是C一样,Perl线程也不是POSIX线程。
因此,如果要找互斥锁,或其它的线程属性,需要考虑后退一步并想清楚要做什么和Perl能做什么。
However,it is important to remember that Perl threads cannot magically do things unless your operating system's threads allow it.
So if your system blocks the entire process on sleep(),Perl usually will,as well.
然而,很重要的一点是,Perl线程不能做OS线程能做的事情之外的事情。
因此,如果系统阻塞使用sleep()阻塞了整个进程,Perl通常也会是阻塞的。】
Perl Threads Are Different.
五、Thread-Safe Modules【线程安全模块】
The addition of threads has changed Perl's internals substantially.?
There are implications for people who write modules with XS code or external libraries.
Perl modules stand a high chance of being thread-safe or can be made thread-safe easily.
Modules that are not tagged as thread-safe should be tested or code reviewed before being used in production code.
线程的添加显著地改善了Perl的内部结构。
然后,默认地,Perl的数据在线程间是不共享的,从而Perl的模块很容易实现线程安全。
但必要的线程安全检查还是要的。
Not all modules that you might use are thread-safe,helvetica; font-size:14px">and you should always assume a module is unsafe unless the documentation says otherwise.?
This includes modules that are distributed as part of the core.?
Threads are a relatively new feature,and even some of the standard modules aren't thread-safe.
并不是所有的模块都是线程安全的,使用时一定要先认为这是不安全的,除非有文档明确说明了它是线程安全的。
这些模块有些是包含在Perl内核发布版中。因为线程是一个新功能,因些有些标准模块也不是线程安全的。】
Even if a module is thread-safe,it doesn't mean that the module is optimized to work well with threads.?
A module could possibly be rewritten to utilize the new features in threaded Perl to increase performance in a threaded environment.
即使模块是线程安全的,也不见得它做了线程优化。
If you're using a module that's not thread-safe for some reason,you can protect yourself by using it from one,and only one thread at all.?
If you need multiple threads to access such a module,you can use semaphores and lots of programming discipline to control access to it.?
Semaphores are covered in Basic semaphores.
如果一定要使用一个非线程安全的模块,可以通过只使用一个,或只在一个线程中使用来保护。
如果要在多个线程中访问这个模块,可以使用信号量,或是其它编程规则来控制访问。
See also Thread-Safety of System Libraries.
1. Thread Basics【线程基础】
The threads module provides the basic functions you need to write threaded programs.?
In the following sections,we'll cover the basics,showing you what you need to do to create a threaded program.
After that,we'll go over some of the features of the threads module that make threaded programming easier.
下面介绍一些基本的线程编码模块。
2. Basic Thread Support【基本线程支持】
Thread support is a Perl compile-time option. It's something that's turned on or off when Perl is built at your site,helvetica; font-size:14px">rather than when your programs are compiled.?
If your Perl wasn't compiled with thread support enabled,then any attempt to use threads will fail.
线程的支持是一个Perl编译选项,需要在Perl创建时打开,而不是在程序编译时打开。
Your programs can use the Config module to check whether threads are enabled. If your program can't run without them,you can say something like:
程序可以使用Config模块来检查线程是否打开,以做对应的处理。
use Config;?
$Config{useithreads} or die('Recompile Perl with threads to run this program.');?
A possibly-threaded program using a possibly-threaded module might have code like this:
use MyMod;?
BEGIN {?
? if ($Config{useithreads}) {?
? ? # We have threads?
? ? require MyMod_threaded;?
? ? import MyMod_threaded;?
? } else {?
? ? require MyMod_unthreaded;?
? ? import MyMod_unthreaded;?
? }?
}?
Since code that runs both with and without threads is usually pretty messy,it's best to isolate the thread-specific code in its own module.
In our example above,that's what MyMod_threaded is,and it's only imported if we're running on a threaded Perl.
因为代码在有不有线程时是很不一样的,所以,最好在模块中隔绝线程代码。如上面的代码所示
A Note about the Examples
In a real situation,care should be taken that all threads are finished executing before the program exits.?
That care has not been taken in these examples in the interest of simplicity.?
Running these examples as is will produce error messages,usually caused by the fact that there are still threads running when the program exits.
You should not be alarmed by this.
在实际编程中,一定要保证在程序退出之前线束所有的线程。
3. Creating Threads【创建线程】
The threads module provides the tools you need to create new threads. Like any other module,you need to tell Perl that you want to use it;
use threads; imports all the pieces you need to create basic threads.
The simplest,most straightforward way to create a thread is with create() :
use threads;?
my $thr = threads->create(&;sub1);?
sub sub1 {?
? print("In the threadn");?
The create() method takes a reference to a subroutine and creates a new thread that starts executing in the referenced subroutine.?
Control then passes both to the subroutine and the caller.
create()方法使用一个子函数参数并创建一个新的线程,然后开始执行子函数,
之后,控制权交给子函数和调用者。
If you need to,your program can pass parameters to the subroutine as part of the thread startup.?
Just include the list of parameters as part of the threads->create() call,like this:
给子函数传递参数。
my $Param3 = 'foo';?
my $thr1 = threads->create(&;sub1,'Param 1','Param 2',$Param3);?
my @ParamList = (42,'Hello',3.14);?
my $thr2 = threads->create(&;sub1,@ParamList);?
my $thr3 = threads->create(&;sub1,qw(Param1 Param2 Param3));?
? my @InboundParameters = @_;?
? print('Got parameters >',join('<>',@InboundParameters),"<n");?
The last example illustrates another feature of threads. You can spawn off several threads using the same subroutine.
Each thread executes the same subroutine,but in a separate thread with a separate environment and potentially separate arguments.
可以让多个线程使用同一个子函数,但是它们的参数不同,从而使每个线程的执行结果也不同。
new() is a synonym for create() .
4. Waiting For A Thread To Exit【等待线程退出】
Since threads are also subroutines,they can return values. To wait for a thread to exit and extract any values it might return,helvetica; font-size:14px">you can use the join() method:
等待线程退出获得其返回值,使用join()方法。
my ($thr) = threads->create(&;sub1);?
my @ReturnData = $thr->join();?
print('Thread returned ',join(',',@ReturnData),"n");?
sub sub1 { return ('Fifty-six','foo',2); }?
In the example above,the join() method returns as soon as the thread ends.?
In addition to waiting for a thread to finish and gathering up any values that the thread might have returned,helvetica; font-size:14px">join() also performs any OS cleanup necessary for the thread. That cleanup might be important,helvetica; font-size:14px">especially for long-running programs that spawn lots of threads.?
If you don't want the return values and don't want to wait for the thread to finish,helvetica; font-size:14px">you should call the detach() method instead,as described next.
在上面的示例代码中,当线程结束时join()方法马上返回。
除了等待线程结束和收集线程返回数据外,
join()方法还执行了OS对线程的清除操作。
这个清除动作是很有必要的,特别是对长时运行的多线程程序。
如果不需要返回值,也不想等待线程结束,就可以使用detach()方法。
NOTE: In the example above,the thread returns a list,helvetica; font-size:14px">thus necessitating that the thread creation call be made in list context (i.e.,my ($thr) ).?
See $thr->join() in threads and THREAD CONTEXT in threads for more details on thread context and return values.
5. Ignoring A Thread【忽略一个线程】
join() does three things:?
? it waits for a thread to exit,helvetica; font-size:14px">? cleans up after it,helvetica; font-size:14px">? and returns any data the thread may have produced.?
But what if you're not interested in the thread's return values,and you don't really care when the thread finishes??
All you want is for the thread to get cleaned up after when it's done.
join()函数做了三件事。
In this case,you use the detach() method.?
Once a thread is detached,it'll run until it's finished; then Perl will clean up after it automatically.
当一个线程被剥离时,它将运行直到结束,Perl将会自动回收并清除。
? ? use threads;
? ? my $thr = threads->create(&;sub1); ? # Spawn the thread
? ? $thr->detach(); ? # Now we officially don't care any more
? ? sleep(15); ? ? ? ?# Let thread run for awhile
? ? sub sub1 {
? ? ? ? $a = 0;
? ? ? ? while (1) {
? ? ? ? ? ? $a++;
? ? ? ? ? ? print("$a is $an");
? ? ? ? ? ? sleep(1);
? ? ? ? }
? ? }
and any return data that it might have produced (if it was done and waiting for a join) is lost.
当线程被剥离时,它将不能再合并。
它所有的返回数据也将丢失。
detach() can also be called as a class method to allow a thread to detach itself:
可以在线程中调用detach()来让线程剥离自己。
? ? my $thr = threads->create(&;sub1);
? ? ? ? threads->detach();
? ? ? ? # Do more work
6. Process and Thread Termination【进程和线程终结】
With threads one must be careful to make sure they all have a chance to run to completion,assuming that is what you want.
An action that terminates a process will terminate all running threads.?
die() and exit() have this property,and perl does an exit when the main thread exits,helvetica; font-size:14px">perhaps implicitly by falling off the end of your code,even if that's not what you want.
进程的终结将会导致所有线程的终止,die()和exit()函数就会导致这样。
As an example of this case,this code prints the message "Perl exited with active threads: 2 running and unjoined":
? ? my $thr1 = threads->new(&;thrsub,"test1");
? ? my $thr2 = threads->new(&;thrsub,"test2");
? ? sub thrsub {
? ? ? ?my ($message) = @_;
? ? ? ?sleep 1;
? ? ? ?print "thread $messagen";
But when the following lines are added at the end:
? ? $thr1->join();
? ? $thr2->join();
it prints two lines of output,a perhaps more useful outcome.
六、. Threads And Data【线程和数据】
Now that we've covered the basics of threads,it's time for our next topic: Data.?
Threading introduces a couple of complications to data access that non-threaded programs never need to worry about.
1. Shared And Unshared Data【共享和非共享数据】
The biggest difference between Perl ithreads and the old 5.005 style threading,or for that matter,helvetica; font-size:14px">to most other threading systems out there,is that by default,no data is shared.?
When a new Perl thread is created,all the data associated with the current thread is copied to the new thread,helvetica; font-size:14px">and is subsequently private to that new thread! This is similar in feel to what happens when a Unix process forks,helvetica; font-size:14px">except that in this case,the data is just copied to a different part of memory within the same process rather than a real fork taking place.
To make use of threading,however,one usually wants the threads to share at least some data between themselves.?
This is done with the threads::shared module and the :shared attribute:
Perl的ithreads和其它线程最大的不同在于,默认地,没有数据是共享的。
当Perl创建新线程时,当前线程的所有数据将会复制一份到新线程,然后成为新线程的私有数据。
要想共享数据,需要使用threads::shared模块和:shared属性。
? ? use threads::shared;
? ? my $foo :shared = 1;
? ? my $bar = 1;
? ? threads->create(sub { $foo++; $bar++; })->join();
? ? print("$foon"); ?# Prints 2 since $foo is shared
? ? print("$barn"); ?# Prints 1 since $bar is not shared
In the case of a shared array,all the array's elements are shared,and for a shared hash,all the keys and values are shared.?
This places restrictions on what may be assigned to shared array and hash elements:?
only simple values or references to shared variables are allowed - this is so that a private variable can't accidentally become shared.?
A bad assignment will cause the thread to die.?
在数组和哈希共享中,所有数元素都是共享的。
并对这两者的元素的赋值做了限制:
只有简单值和引用能赋给元素,以防私有变量突然被共享。
错误的赋值将会导致线程异常。
For example:
? ? my $var ? ? ? ? ?= 1;
? ? my $svar :shared = 2;
? ? my %hash :shared;
? ? ... create some threads ...
? ? $hash{a} = 1; ? ? ? # All threads see exists($hash{a}) and $hash{a} == 1
? ? $hash{a} = $var; ? ?# okay - copy-by-value: same effect as previous
? ? $hash{a} = $svar; ? # okay - copy-by-value: same effect as previous
? ? $hash{a} = $svar; ?# okay - a reference to a shared variable
? ? $hash{a} = $var; ? # This will die
? ? delete($hash{a}); ? # okay - all threads will see !exists($hash{a})
Note that a shared variable guarantees that if two or more threads try to modify it at the same time,helvetica; font-size:14px">the internal state of the variable will not become corrupted.?
2. Thread Pitfalls: Races【线程陷阱:竞争】
While threads bring a new set of useful tools,they also bring a number of pitfalls.?
One pitfall is the race condition:
? ? my $a :shared = 1;
? ? my $thr1 = threads->create(&;sub1);
? ? my $thr2 = threads->create(&;sub2);
? ? print("$an");
? ? sub sub1 { my $foo = $a; $a = $foo + 1; }
? ? sub sub2 { my $bar = $a; $a = $bar + 1; }
What do you think $a will be? The answer,unfortunately,is it depends.?
Both sub1() and sub2() access the global variable $a,once to read and once to write.
Depending on factors ranging from your thread implementation's scheduling algorithm to the phase of the moon,$a can be 2 or 3.
Race conditions are caused by unsynchronized access to shared data.
$a的值不可预测。
Without explicit synchronization,there's no way to be sure that nothing has happened to the shared data between the time you access it?
and the time you update it. Even this simple code fragment has the possibility of error:
? ? my $a :shared = 2;
? ? my $b :shared;
? ? my $c :shared;
? ? my $thr1 = threads->create(sub { $b = $a; $a = $b + 1; });
? ? my $thr2 = threads->create(sub { $c = $a; $a = $c + 1; });
Two threads both access $a . Each thread can potentially be interrupted at any point,or be executed in any order.?
At the end,$a could be 3 or 4,and both $b and $c could be 2 or 3.
Even $a += 5 or $a++ are not guaranteed to be atomic.
Whenever your program accesses data or resources that can be accessed by other threads,helvetica; font-size:14px">you must take steps to coordinate access or risk data inconsistency and race conditions.?
Note that Perl will protect its internals from your race conditions,but it won't protect you from you.
七. Synchronization and control【同步和控制】
Perl provides a number of mechanisms to coordinate the interactions between themselves and their data,helvetica; font-size:14px">to avoid race conditions and the like.?
Some of these are designed to resemble the common techniques used in thread libraries such as pthreads ;?
others are Perl-specific. Often,the standard techniques are clumsy and difficult to get right (such as condition waits).?
Where possible,it is usually easier to use Perlish techniques such as queues,which remove some of the hard work involved.
perl提供了很多线程同步机制。
1. Controlling access: lock()【控制访问: lock()】
The lock() function takes a shared variable and puts a lock on it.?
No other thread may lock the variable until the variable is unlocked by the thread holding the lock.?
Unlocking happens automatically when the locking thread exits the block that contains the call to the lock() function.?
lock()函数对共享变量加锁。
其它线程都不能再对加了锁的共享变量加锁,直到加锁线程释放了这个变量。
解锁是在包含有lock()函数的代码块结束时自动实现的。
Using lock() is straightforward:?
This example has several threads doing some calculations in parallel,and occasionally updating a running total:
? ? my $total :shared = 0;
? ? sub calc {
? ? ? ? ? ? my $result;
? ? ? ? ? ? # (... do some calculations and set $result ...)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? lock($total); ?# Block until we obtain the lock
? ? ? ? ? ? ? ? $total += $result;
? ? ? ? ? ? } # Lock implicitly released at end of scope
? ? ? ? ? ? last if $result == 0;
? ? my $thr1 = threads->create(&;calc);
? ? my $thr2 = threads->create(&;calc);
? ? my $thr3 = threads->create(&;calc);
? ? $thr3->join();
? ? print("total=$totaln");
lock() blocks the thread until the variable being locked is available.
When lock() returns,your thread can be sure that no other thread can lock that variable until the block containing the lock exits.
It's important to note that locks don't prevent access to the variable in question,only lock attempts.?
This is in keeping with Perl's longstanding tradition of courteous programming,and the advisory file locking that flock() gives you.
You may lock arrays and hashes as well as scalars.?
Locking an array,will not block subsequent locks on array elements,just lock attempts on the array itself.
Locks are recursive,which means it's okay for a thread to lock a variable more than once.?
The lock will last until the outermost lock() on the variable goes out of scope.
可以对数组和哈希加锁,也可以递归加锁。
?
? ? my $x :shared;
? ? doit();
? ? sub doit {
? ? ? ? {
? ? ? ? ? ? ? ? lock($x); # Wait for lock
? ? ? ? ? ? ? ? lock($x); # NOOP - we already have the lock
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? lock($x); # NOOP
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? lock($x); # NOOP
? ? ? ? ? ? ? ? ? ? ? ? lockit_some_more();
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? } # *** Implicit unlock here ***
? ? sub lockit_some_more {
? ? ? ? lock($x); # NOOP
? ? } # Nothing happens here
Note that there is no unlock() function - the only way to unlock a variable is to allow it to go out of scope.
A lock can either be used to guard the data contained within the variable being locked,helvetica; font-size:14px">or it can be used to guard something else,like a section of code. In this latter case,helvetica; font-size:14px">the variable in question does not hold any useful data,and exists only for the purpose of being locked.?
In this respect,the variable behaves like the mutexes and basic semaphores of traditional thread libraries.
2. A Thread Pitfall: Deadlocks【线程陷阱:死锁】
Locks are a handy tool to synchronize access to data,and using them properly is the key to safe shared data.?
Unfortunately,locks aren't without their dangers,especially when multiple locks are involved.?
Consider the following code:
? ? my $a :shared = 4;
? ? my $b :shared = 'foo';
? ? my $thr1 = threads->create(sub {
? ? ? ? lock($a);
? ? ? ? sleep(20);
? ? ? ? lock($b);
? ? });
? ? my $thr2 = threads->create(sub {
This program will probably hang until you kill it. The only way it won't hang is if one of the two threads acquires both locks first.?
A guaranteed-to-hang version is more complicated,but the principle is the same.
The first thread will grab a lock on $a,helvetica; font-size:14px">then,after a pause during which the second thread has probably had time to do some work,try to grab a lock on $b .?
Meanwhile,the second thread grabs a lock on $b,then later tries to grab a lock on $a .?
The second lock attempt for both threads will block,each waiting for the other to release its lock.
This condition is called a deadlock,and it occurs whenever two or more threads are trying to get locks on resources that the others own.?
Each thread will block,waiting for the other to release a lock on a resource.?
That never happens,since the thread with the resource is itself waiting for a lock to be released.
There are a number of ways to handle this sort of problem.?
上述代码死锁的原因。
The best way is to always have all threads acquire locks in the exact same order.?
If,for example,you lock variables $a,$b,and $c,always lock $a before $b,and $b before $c .?
It's also best to hold on to locks for as short a period of time to minimize the risks of deadlock.
The other synchronization primitives described below can suffer from similar problems.
防止死锁的最好办法是所有线程按相同的顺序加锁,或是尽量减少加锁时间。
3. Queues: Passing Data Around【队列:数据传输】
A queue is a special thread-safe object that lets you put data in one end and take it out the other without having to worry about synchronization issues.?
队列是线程安全的,且不用考虑同步问题。
They're pretty straightforward,and look like this:
? ? use Thread::Queue;
? ? my $DataQueue = Thread::Queue->new();
? ? my $thr = threads->create(sub {
? ? ? ? while (my $DataElement = $DataQueue->dequeue()) {
? ? ? ? ? ? print("Popped $DataElement off the queuen");
? ? $DataQueue->enqueue(12);
? ? $DataQueue->enqueue("A","B","C");
? ? sleep(10);
? ? $DataQueue->enqueue(undef);
? ? $thr->join();
You create the queue with Thread::Queue->new() .?
Then you can add lists of scalars onto the end with enqueue(),helvetica; font-size:14px">and pop scalars off the front of it with dequeue() .?
A queue has no fixed size,and can grow as needed to hold everything pushed on to it.
If a queue is empty,dequeue() blocks until another thread enqueues something.?
This makes queues ideal for event loops and other communications between threads.
队列操作函数。
队列为空时,使用dequeue()将会阻塞线程。
八、 Semaphores: Synchronizing Data Access【信号量:】
Semaphores are a kind of generic locking mechanism. In their most basic form,they behave very much like lockable scalars,helvetica; font-size:14px">except that they can't hold data,and that they must be explicitly unlocked.?
In their advanced form,they act like a kind of counter,and can allow multiple threads to have the lock at any one time.
1. Basic semaphores【基本信号量】
Semaphores have two methods,down() and up() :?
down() decrements the resource count,helvetica; font-size:14px">while up() increments it.?
Calls to down() will block if the semaphore's current count would decrement below zero.?
信号量的操作函数。
对信号量计数器为零时,使用down()函数将阻塞线程。
This program gives a quick demonstration:
? ? use Thread::Semaphore;
? ? my $semaphore = Thread::Semaphore->new();
? ? my $GlobalVariable :shared = 0;
? ? $thr1 = threads->create(&;sample_sub,1);
? ? $thr2 = threads->create(&;sample_sub,2);
? ? $thr3 = threads->create(&;sample_sub,3);
? ? sub sample_sub {
? ? ? ? my $SubNumber = shift(@_);
? ? ? ? my $TryCount = 10;
? ? ? ? my $LocalCopy;
? ? ? ? sleep(1);
? ? ? ? while ($TryCount--) {
? ? ? ? ? ? $semaphore->down();
? ? ? ? ? ? $LocalCopy = $GlobalVariable;
? ? ? ? ? ? print("$TryCount tries left for sub $SubNumber ($GlobalVariable is $GlobalVariable)n");
? ? ? ? ? ? sleep(2);
? ? ? ? ? ? $LocalCopy++;
? ? ? ? ? ? $GlobalVariable = $LocalCopy;
? ? ? ? ? ? $semaphore->up();
The three invocations of the subroutine all operate in sync.
The semaphore,makes sure that only one thread is accessing the global variable at once.
2. Advanced Semaphores【高级信号量】
By default,semaphores behave like locks,letting only one thread down() them at a time. However,there are other uses for semaphores.
Each semaphore has a counter attached to it.?

默认的信号量创建时计数器为一,每次操作也是加减一。
高级应用中这个是可以设置的。
? ? my $semaphore = Thread::Semaphore->new(5);
? ? ? ? ? ? ? ? ? ? # Creates a semaphore with the counter set to five
? ? my $thr2 = threads->create(&;sub1);
? ? ? ? $semaphore->down(5); # Decrements the counter by five
? ? ? ? # Do stuff here
? ? ? ? $semaphore->up(5); # Increment the counter by five
? ? $thr1->detach();
? ? $thr2->detach();
If down() attempts to decrement the counter below zero,it blocks until the counter is large enough.?
Note that while a semaphore can be created with a starting count of zero,any up() or down() always changes the counter by at least one,helvetica; font-size:14px">and so $semaphore->down(0) is the same as $semaphore->down(1) .
The question,of course,is why would you do something like this??
Why create a semaphore with a starting count that's not one,or why decrement or increment it by more than one??
The answer is resource availability. Many resources that you want to manage access for can be safely used by more than one thread at once.
For example,let's take a GUI driven program. It has a semaphore that it uses to synchronize access to the display,helvetica; font-size:14px">so only one thread is ever drawing at once. Handy,but of course you don't want any thread to start drawing until things are properly set up.?
Semaphores with counters greater than one are also useful for establishing quotas.?
Say,that you have a number of threads that can do I/O at once.?
You don't want all the threads reading or writing at once though,since that can potentially swamp your I/O channels,helvetica; font-size:14px">or deplete your process's quota of filehandles.?
You can use a semaphore initialized to the number of concurrent I/O requests (or open files) that you want at any one time,helvetica; font-size:14px">and have your threads quietly block and unblock themselves.
Larger increments or decrements are handy in those cases where a thread needs to check out or return a number of resources at once.
就种操作在GUI和多线程I/O时很有用。
九、Waiting for a Condition【条件等待】
The functions cond_wait() and cond_signal() can be used in conjunction with locks to notify co-operating threads that a resource has become available.?
They are very similar in use to the functions found in pthreads .?
However for most purposes,queues are simpler to use and more intuitive. See threads::shared for more details.
条件等待也有,但不如队列来得方便。
十、Giving up control【放弃控制】
There are times when you may find it useful to have a thread explicitly give up the CPU to another thread.?
You may be doing something processor-intensive and want to make sure that the user-interface thread gets called frequently.?
Regardless,there are times that you might want a thread to give up the processor.
将线程的CPU让渡给其它线程,这种方式可用于高响应用户架构设计。
Perl's threading package provides the yield() function that does this.?
yield() is pretty straightforward,and works like this:
? ? sub loop {
? ? ? ? my $thread = shift;
? ? ? ? my $foo = 50;
? ? ? ? while($foo--) { print("In thread $threadn"); }
? ? ? ? threads->yield();
? ? ? ? $foo = 50;
? ? my $thr1 = threads->create(&;loop,'first');
? ? my $thr2 = threads->create(&;loop,'second');
? ? my $thr3 = threads->create(&;loop,'third');
It is important to remember that yield() is only a hint to give up the CPU,helvetica; font-size:14px">it depends on your hardware,OS and threading libraries what actually happens.?
On many operating systems,yield() is a no-op.
Therefore it is important to note that one should not build the scheduling of the threads around yield() calls.?
It might work on your platform but it won't work on another platform.
yield()的具体实现要看OS等。
十一、General Thread Utility Routines【通用线程工具例程】
We've covered the workhorse parts of Perl's threading package,helvetica; font-size:14px">and with these tools you should be well on your way to writing threaded code and packages.?
There are a few useful little pieces that didn't really fit in anyplace else.
1. What Thread Am I In?
The threads->self() class method provides your program with a way to get an object representing the thread it's currently in.?
You can use this object in the same way as the ones returned from thread creation.
2 Thread IDs
tid() is a thread object method that returns the thread ID of the thread the object represents.?
Thread IDs are integers,with the main thread in a program being 0.?
Currently Perl assigns a unique TID to every thread ever created in your program,assigning the first thread to be created a TID of 1,helvetica; font-size:14px">and increasing the TID by 1 for each new thread that's created. When used as a class method,threads->tid() can be used by a thread to get its own TID.
3. Are These Threads The Same?
The equal() method takes two thread objects and returns true if the objects represent the same thread,and false if they don't.
Thread objects also have an overloaded == comparison so that you can do comparison on them as you would with normal objects.
4. What Threads Are Running?
threads->list() returns a list of thread objects,one for each thread that's currently running and not detached.?
Handy for a number of things,including cleaning up at the end of your program (from the main Perl thread,of course):
? ? # Loop through all the threads
? ? foreach my $thr (threads->list()) {
? ? ? ? $thr->join();
If some threads have not finished running when the main Perl thread ends,helvetica; font-size:14px">Perl will warn you about it and die,since it is impossible for Perl to clean up itself while other threads are running.
NOTE: The main Perl thread (thread 0) is in a detached state,and so does not appear in the list returned by threads->list() .
十二、A Complete Example
Confused yet? It's time for an example program to show some of the things we've covered.?
This program finds prime numbers using threads.
? ? ?1 #!/usr/bin/perl
? ? ?2 # prime-pthread,courtesy of Tom Christiansen
? ? ?3
? ? ?4 use strict;
? ? ?5 use warnings;
? ? ?6
? ? ?7 use threads;
? ? ?8 use Thread::Queue;
? ? ?9
? ? 10 sub check_num {
? ? 11 ? ? my ($upstream,$cur_prime) = @_;
? ? 12 ? ? my $kid;
? ? 13 ? ? my $downstream = Thread::Queue->new();
? ? 14 ? ? while (my $num = $upstream->dequeue()) {
? ? 15 ? ? ? ? next unless ($num % $cur_prime);
? ? 16 ? ? ? ? if ($kid) {
? ? 17 ? ? ? ? ? ? $downstream->enqueue($num);
? ? 18 ? ? ? ? } else {
? ? 19 ? ? ? ? ? ? print("Found prime: $numn");
? ? 20 ? ? ? ? ? ? $kid = threads->create(&;check_num,$downstream,$num);
? ? 21 ? ? ? ? ? ? if (! $kid) {
? ? 22 ? ? ? ? ? ? ? ? warn("Sorry. ?Ran out of threads.n");
? ? 23 ? ? ? ? ? ? ? ? last;
? ? 24 ? ? ? ? ? ? }
? ? 25 ? ? ? ? }
? ? 26 ? ? }
? ? 27 ? ? if ($kid) {
? ? 28 ? ? ? ? $downstream->enqueue(undef);
? ? 29 ? ? ? ? $kid->join();
? ? 30 ? ? }
? ? 31 }
? ? 32
? ? 33 my $stream = Thread::Queue->new(3..1000,undef);
? ? 34 check_num($stream,helvetica; font-size:14px">This program uses the pipeline model to generate prime numbers.?
Each thread in the pipeline has an input queue that feeds numbers to be checked,a prime number that it's responsible for,helvetica; font-size:14px">and an output queue into which it funnels numbers that have failed the check.?
If the thread has a number that's failed its check and there's no child thread,then the thread must have found a new prime number.?
In that case,a new child thread is created for that prime and stuck on the end of the pipeline.
This probably sounds a bit more confusing than it really is,so let's go through this program piece by piece and see what it does.?
(For those of you who might be trying to remember exactly what a prime number is,it's a number that's only evenly divisible by itself and 1.)
The bulk of the work is done by the check_num() subroutine,which takes a reference to its input queue and a prime number that it's responsible for.
?After pulling in the input queue and the prime that the subroutine is checking (line 11),helvetica; font-size:14px">we create a new queue (line 13) and reserve a scalar for the thread that we're likely to create later (line 12).
The while loop from line 14 to line 26 grabs a scalar off the input queue and checks against the prime this thread is responsible for.?
Line 15 checks to see if there's a remainder when we divide the number to be checked by our prime.?
If there is one,the number must not be evenly divisible by our prime,helvetica; font-size:14px">so we need to either pass it on to the next thread if we've created one (line 17) or create a new thread if we haven't.
The new thread creation is line 20. We pass on to it a reference to the queue we've created,and the prime number we've found. In lines 21 through 24,helvetica; font-size:14px">we check to make sure that our new thread got created,and if not,we stop checking any remaining numbers in the queue.
Finally,once the loop terminates (because we got a 0 or undef in the queue,which serves as a note to terminate),helvetica; font-size:14px">we pass on the notice to our child,and wait for it to exit if we've created a child (lines 27 and 30).
Then all we have to do to get the ball rolling is pass the queue and the first prime to the check_num() subroutine (line 34).
That's how it works. It's pretty simple; as with many Perl programs,the explanation is much longer than the program.
十三、Different implementations of threads
Some background on thread implementations from the operating system viewpoint.?
There are three basic categories of threads: user-mode threads,kernel threads,and multiprocessor kernel threads.
User-mode threads are threads that live entirely within a program and its libraries. In this model,the OS knows nothing about threads.?
As far as it's concerned,your process is just a process.
This is the easiest way to implement threads,and the way most OSes start.?
The big disadvantage is that,since the OS knows nothing about threads,if one thread blocks they all do.?
Typical blocking activities include most system calls,most I/O,and things like sleep().
Kernel threads are the next step in thread evolution. The OS knows about kernel threads,and makes allowances for them.?
The main difference between a kernel thread and a user-mode thread is blocking. With kernel threads,helvetica; font-size:14px">things that block a single thread don't block other threads. This is not the case with user-mode threads,helvetica; font-size:14px">where the kernel blocks at the process level and not the thread level.
This is a big step forward,and can give a threaded program quite a performance boost over non-threaded programs.?
Threads that block performing I/O,won't block threads that are doing other things.?
Each process still has only one thread running at once,regardless of how many CPUs a system might have.
Since kernel threading can interrupt a thread at any time,they will uncover some of the implicit locking assumptions you may make in your program.?
as another thread may have changed $a between the time it was fetched on the right hand side and the time the new value is stored.
Multiprocessor kernel threads are the final step in thread support. With multiprocessor kernel threads on a machine with multiple CPUs,helvetica; font-size:14px">the OS may schedule two or more threads to run simultaneously on different CPUs.
This can give a serious performance boost to your threaded program,since more than one thread will be executing at the same time.?
As a tradeoff,any of those nagging synchronization issues that might not have shown with basic kernel threads will appear with a vengeance.
In addition to the different levels of OS involvement in threads,helvetica; font-size:14px">?different OSes (and different thread implementations for a particular OS) allocate CPU cycles to threads in different ways.
Cooperative multitasking systems have running threads give up control if one of two things happen. If a thread calls a yield function,helvetica; font-size:14px">it gives up control. It also gives up control if the thread does something that would cause it to block,such as perform I/O.
?In a cooperative multitasking implementation,one thread can starve all the others for CPU time if it so chooses.
Preemptive multitasking systems interrupt threads at regular intervals while the system decides which thread should run next.?
In a preemptive multitasking system,one thread usually won't monopolize the CPU.
On some systems,there can be cooperative and preemptive threads running simultaneously.?
(Threads running with realtime priorities often behave cooperatively,while threads running at normal priorities behave preemptively.)
Most modern operating systems support preemptive multitasking nowadays.
十四、Performance considerations
The main thing to bear in mind when comparing Perl's ithreads to other threading models is the fact that for each new thread created,helvetica; font-size:14px">a complete copy of all the variables and data of the parent thread has to be taken.?
Thus,thread creation can be quite expensive,both in terms of memory usage and time spent in creation.?
The ideal way to reduce these costs is to have a relatively short number of long-lived threads,all created fairly early on
?(before the base thread has accumulated too much data). Of course,this may not always be possible,helvetica; font-size:14px">so compromises have to be made. However,after a thread has been created,its performance and extra memory usage should be little different than ordinary code.
Also note that under the current implementation,shared variables use a little more memory and are a little slower than ordinary variables.
十五、Process-scope Changes
Note that while threads themselves are separate execution threads and Perl data is thread-private unless explicitly shared,helvetica; font-size:14px">the threads can affect process-scope state,affecting all the threads.
The most common example of this is changing the current working directory using chdir().?
One thread calls chdir(),and the working directory of all the threads changes.
Even more drastic example of a process-scope change is chroot(): the root directory of all the threads changes,helvetica; font-size:14px">and no thread can undo it (as opposed to chdir()).
Further examples of process-scope changes include umask() and changing uids and gids.
Thinking of mixing fork() and threads? Please lie down and wait until the feeling passes.?
Be aware that the semantics of fork() vary between platforms. For example,helvetica; font-size:14px">some Unix systems copy all the current threads into the child process,while others only copy the thread that called fork(). You have been warned!
Similarly,mixing signals and threads may be problematic.?
Implementations are platform-dependent,and even the POSIX semantics may not be what you expect (and Perl doesn't even give you the full POSIX API).?
(However,a recently added feature does provide the capability to send signals between threads. See THREAD SIGNALLING in threads for more details.)
十六、Thread-Safety of System Libraries
Whether various library calls are thread-safe is outside the control of Perl.?
Calls often suffering from not being thread-safe include: localtime(),gmtime(),functions fetching user,helvetica; font-size:14px">group and network information (such as getgrent(),gethostent(),getnetent() and so on),readdir(),rand(),and srand().?
In general,calls that depend on some global external state.
If the system Perl is compiled in has thread-safe variants of such calls,they will be used. Beyond that,helvetica; font-size:14px">?Perl is at the mercy of the thread-safety or -unsafety of the calls. Please consult your C library call documentation.
On some platforms the thread-safe library interfaces may fail if the result buffer is too small?
(for example the user group databases may be rather large,and the reentrant interfaces may have to carry around a full snapshot of those databases).?
Perl will start with a small buffer,but keep retrying and growing the result buffer until the result fits.?
If this limitless growing sounds bad for security or memory consumption reasons you can recompile?
Perl with PERL_REENTRANT_MAXSIZE defined to the maximum number of bytes you will allow.
十七、Conclusion
A complete thread tutorial could fill a book (and has,many times),but with what we've covered in this introduction,helvetica; font-size:14px">you should be well on your way to becoming a threaded Perl expert.
十八、SEE ALSO
Annotated POD for threads: http://annocpan.org/?mode=search&field=Module&name=threads
Latest version of threads on CPAN: http://search.cpan.org/search?module=threads
Annotated POD for threads::shared: http://annocpan.org/?mode=search&field=Module&name=threads%3A%3Ashared
Latest version of threads::shared on CPAN: http://search.cpan.org/search?module=threads%3A%3Ashared
Perl threads mailing list: http://lists.perl.org/list/ithreads.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读