package async_unix
Monadic concurrency library
Install
Dune Dependency
Authors
Maintainers
Sources
async_unix-v0.15.0.tar.gz
sha256=49919d67c4197fed6a980a83a5e38f3c7311081dc40480c368c5b572a9cb3bc5
doc/src/async_unix.thread_pool/thread_pool.ml.html
Source file thread_pool.ml
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
open! Core open! Import module Cpu_affinity = Thread_pool_cpu_affinity let debug_log message a sexp_of_a = eprintf "%s\n%!" (Sexp.to_string_hum [%sexp (Time_ns.now () : Time_ns.t), (message : string), (a : a)]) ;; module Time_ns = struct include Time_ns let sexp_of_t t = [%sexp (if am_running_test then epoch else t : t)] end module Thread_id : sig type t [@@deriving sexp_of] include Hashable with type t := t val of_ocaml_thread : Core_thread.t -> t val self : unit -> t end = struct include Int let of_ocaml_thread = Core_thread.id let self () = of_ocaml_thread (Core_thread.self ()) end module Priority = Linux_ext.Priority let priority_zero = Priority.of_int 0 let getpriority = match Linux_ext.getpriority with | Error _ -> const priority_zero | Ok f -> f ;; let setpriority = match Linux_ext.setpriority with | Error _ -> Fn.ignore | Ok f -> f ;; let set_thread_name = match Linux_ext.pr_set_name_first16 with | Ok f -> f | Error _ -> Fn.ignore ;; let debug = ref false (* We define everything in an [Internal] module, and then wrap in a [Mutex.critical_section] each thread-safe function exposed in the mli. When reading code here, keep in mind that there are two entry points: (1) The functions that are exposed for external consumption in the mli (these are protected by the mutex). (2) Code that is called within threads created in this module. All such code should acquire the mutex before it affects the thread state. *) module Internal = struct module Mutex = Nano_mutex let check_invariant = ref false let error = Or_error.error module Pool_id : Unique_id = Unique_id.Int63 () module Work = struct type t = { (* When this work starts running, the name of the thread will be set (via [Linux_ext.pr_set_name]) to[name]. *) name : string ; doit : unit -> unit ; priority : Priority.t } [@@deriving sexp_of] end module Work_queue = struct type elt = | Stop | Work of Work.t [@@deriving sexp_of] type t = elt Squeue.t [@@deriving sexp_of] let create () = Squeue.create 1 let enqueue t work = Squeue.push_uncond t work end module Helper_thread = struct type 'thread t = { in_pool : Pool_id.t ; mutable state : [ `In_use | `Finishing | `Finished ] ; thread : 'thread (* [default_name] will be used as the name of work run by the helper thread, unless that work is added with an overriding name. *) ; default_name : string (* [default_priority] will be used as the priority of work run by the helper thread, unless that work is added with an overriding priority. *) ; default_priority : Priority.t } [@@deriving fields, sexp_of] end module Thread = struct type t = { (* [name] is the name of the thread that the OS knows, i.e. the argument supplied to the most recent call to [set_thread_name] by the thread. *) mutable name : string (* [thread_id] is the OCaml thread id of the OCaml thread that this corresponds to. It is an option only because we create this object before creating the thread. We set it to [Some] as soon as we create the thread, and then never change it. *) ; mutable thread_id : Thread_id.t option (* [priority] is the priority of the thread that the OS knows, i.e. the argument supplied in the most recent call to [setpriority] by the thread. *) ; mutable priority : Priority.t (* A thread can be "available", meaning that it isn't working on anything, or doing work added to the thread pool, or serving as a helper thread. *) ; mutable state : [ `Available | `Working | `Helper of (t[@sexp.opaque]) Helper_thread.t ] (* [unfinished_work] is the amount of work remaining for this thread to do. It includes all the work in [work_queue], plus perhaps an additional work that is running. *) ; mutable unfinished_work : int (* [work_queue] is where this thread pulls work from. Each thread has its own queue. If a thread is working for the general pool, then its work queue has at most one element. If a thread is a helper thread, then the work queue has all the unfinished work that has been added for the helper thread. *) ; work_queue : Work_queue.t } [@@deriving fields, sexp_of] let invariant t : unit = try let check invariant field = invariant (Field.get field t) in Fields.iter ~name:ignore ~thread_id:(check (fun o -> assert (is_some o))) ~priority:ignore ~state:ignore ~unfinished_work: (check (fun unfinished_work -> assert ( unfinished_work = Squeue.length t.work_queue || unfinished_work = Squeue.length t.work_queue + 1))) ~work_queue:ignore with | exn -> raise_s [%message "Thread.invariant failed" (exn : exn) ~thread:(t : t)] ;; let is_available t = match t.state with | `Available -> true | `Working | `Helper _ -> false ;; let create priority = { name = "" ; thread_id = None ; priority ; state = `Available ; unfinished_work = 0 ; work_queue = Work_queue.create () } ;; let enqueue_work t work = t.unfinished_work <- t.unfinished_work + 1; Work_queue.enqueue t.work_queue (Work work) ;; let stop t = Work_queue.enqueue t.work_queue Stop let initialize_ocaml_thread t (cpu_affinity : Cpu_affinity.t) = set_thread_name t.name; (* We call [getpriority] to see whether we need to set the priority. This is not a performance optimization. It is done so that in programs that don't use priorities, we never call [setpriority], and thus prevent problems due to the user's "ulimit -e" being too restrictive. The use of [getpriority] is limited to initialization, and is not used elsewhere in this module. *) if not (Priority.equal (getpriority ()) t.priority) then setpriority t.priority; match cpu_affinity with | Inherit -> () | Cpuset cpuset -> Or_error.ok_exn Core_thread.setaffinity_self_exn (cpuset |> Cpu_affinity.Cpuset.raw) ;; let set_name t name = if String.( <> ) name t.name then ( set_thread_name name; t.name <- name) ;; let set_priority t priority = if not (Priority.equal t.priority priority) then ( setpriority priority; t.priority <- priority) ;; end module Thread_creation_failure = struct type t = { at : Time_ns.t ; error : Error.t } [@@deriving fields, sexp_of] end (* [Thread_pool.t] *) type