decorator.py 16.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved
#
# Licensed 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.

H
Helin Wang 已提交
15
__all__ = [
S
sneaxiy 已提交
16
    'cache', 'map_readers', 'buffered', 'compose', 'chain', 'shuffle',
Q
Qiao Longfei 已提交
17
    'ComposeNotAligned', 'firstn', 'xmap_readers', 'PipeReader',
18
    'multiprocess_reader', 'Fake'
H
Helin Wang 已提交
19
]
20

T
tangwei12 已提交
21 22
from threading import Thread
import subprocess
Q
Qiao Longfei 已提交
23
import multiprocessing
24
import six
Q
Qiao Longfei 已提交
25
import sys
T
tangwei12 已提交
26

27
from six.moves.queue import Queue
28
from six.moves import zip_longest
29 30
from six.moves import map
from six.moves import zip
31 32
import itertools
import random
T
tangwei12 已提交
33
import zlib
M
minqiyang 已提交
34
import paddle.compat as cpt
35 36


S
sneaxiy 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
def cache(reader):
    """
    Cache the reader data into memory. 

    Be careful that this method may take long time to process, 
    and consume lots of memory. :code:`reader()` would only 
    call once. 

    Args:
        reader (generator): a reader object which yields 
            data each time.

    Returns:
S
sneaxiy 已提交
50
        generator: a decorated reader object which yields data from cached memory.
S
sneaxiy 已提交
51 52 53 54 55 56 57 58 59 60
    """
    all_data = tuple(reader())

    def __impl__():
        for item in all_data:
            yield item

    return __impl__


H
Helin Wang 已提交
61 62 63 64 65
def map_readers(func, *readers):
    """
    Creates a data reader that outputs return value of function using
    output of each data readers as arguments.

Y
Yu Yang 已提交
66 67 68 69 70
    :param func: function to use. The type of func should be (Sample) => Sample
    :type: callable
    :param readers: readers whose outputs will be used as arguments of func.
    :return: the created data reader.
    :rtype: callable
H
Helin Wang 已提交
71 72 73 74 75 76
    """

    def reader():
        rs = []
        for r in readers:
            rs.append(r())
77
        for e in map(func, *rs):
H
Helin Wang 已提交
78 79 80 81 82
            yield e

    return reader


H
Helin Wang 已提交
83
def shuffle(reader, buf_size):
84
    """
Y
Yu Yang 已提交
85
    Creates a data reader whose data output is shuffled.
86

H
Helin Wang 已提交
87
    Output from the iterator that created by original reader will be
88 89 90
    buffered into shuffle buffer, and then shuffled. The size of shuffle buffer
    is determined by argument buf_size.

91
    :param reader: the original reader whose output will be shuffled.
Y
Yu Yang 已提交
92
    :type reader: callable
93
    :param buf_size: shuffle buffer size.
Y
Yu Yang 已提交
94
    :type buf_size: int
95

Y
Yu Yang 已提交
96 97
    :return: the new reader whose output is shuffled.
    :rtype: callable
98 99
    """

H
Helin Wang 已提交
100
    def data_reader():
101
        buf = []
H
Helin Wang 已提交
102
        for e in reader():
103 104 105 106 107 108 109 110 111 112 113 114
            buf.append(e)
            if len(buf) >= buf_size:
                random.shuffle(buf)
                for b in buf:
                    yield b
                buf = []

        if len(buf) > 0:
            random.shuffle(buf)
            for b in buf:
                yield b

H
Helin Wang 已提交
115
    return data_reader
116 117


H
Helin Wang 已提交
118
def chain(*readers):
119 120 121
    """
    Creates a data reader whose output is the outputs of input data
    readers chained together.
122

H
Helin Wang 已提交
123
    If input readers output following data entries:
124 125 126
    [0, 0, 0]
    [1, 1, 1]
    [2, 2, 2]
H
Helin Wang 已提交
127
    The chained reader will output:
128 129
    [0, 0, 0, 1, 1, 1, 2, 2, 2]

130
    :param readers: input readers.
Y
Yu Yang 已提交
131 132
    :return: the new data reader.
    :rtype: callable
133 134
    """

H
Helin Wang 已提交
135
    def reader():
136
        rs = []
H
Helin Wang 已提交
137
        for r in readers:
138 139 140 141 142
            rs.append(r())

        for e in itertools.chain(*rs):
            yield e

H
Helin Wang 已提交
143
    return reader
144 145


H
Helin Wang 已提交
146
class ComposeNotAligned(ValueError):
147 148 149
    pass


H
Helin Wang 已提交
150
def compose(*readers, **kwargs):
151 152
    """
    Creates a data reader whose output is the combination of input readers.
153

H
Helin Wang 已提交
154
    If input readers output following data entries:
155
    (1, 2)    3    (4, 5)
H
Helin Wang 已提交
156
    The composed reader will output:
157 158
    (1, 2, 3, 4, 5)

Y
Yu Yang 已提交
159 160
    :param readers: readers that will be composed together.
    :param check_alignment: if True, will check if input readers are aligned
161 162
        correctly. If False, will not check alignment and trailing outputs
        will be discarded. Defaults to True.
Y
Yu Yang 已提交
163
    :type check_alignment: bool
164

Y
Yu Yang 已提交
165
    :return: the new data reader.
166

167 168
    :raises ComposeNotAligned: outputs of readers are not aligned.
        Will not raise when check_alignment is set to False.
169 170 171 172 173 174 175 176 177
    """
    check_alignment = kwargs.pop('check_alignment', True)

    def make_tuple(x):
        if isinstance(x, tuple):
            return x
        else:
            return (x, )

H
Helin Wang 已提交
178
    def reader():
179
        rs = []
H
Helin Wang 已提交
180
        for r in readers:
181 182
            rs.append(r())
        if not check_alignment:
183 184
            for outputs in zip(*rs):
                yield sum(list(map(make_tuple, outputs)), ())
185
        else:
186
            for outputs in zip_longest(*rs):
187 188 189
                for o in outputs:
                    if o is None:
                        # None will be not be present if compose is aligned
H
Helin Wang 已提交
190 191
                        raise ComposeNotAligned(
                            "outputs of readers are not aligned.")
192
                yield sum(list(map(make_tuple, outputs)), ())
193

H
Helin Wang 已提交
194
    return reader
195 196


H
Helin Wang 已提交
197
def buffered(reader, size):
198 199
    """
    Creates a buffered data reader.
200

H
Helin Wang 已提交
201 202
    The buffered data reader will read and save data entries into a
    buffer. Reading from the buffered data reader will proceed as long
203
    as the buffer is not empty.
204

205
    :param reader: the data reader to read from.
Y
Yu Yang 已提交
206
    :type reader: callable
207
    :param size: max buffer size.
Y
Yu Yang 已提交
208
    :type size: int
209

210
    :returns: the buffered data reader.
211 212 213 214 215 216 217 218 219 220 221 222
    """

    class EndSignal():
        pass

    end = EndSignal()

    def read_worker(r, q):
        for d in r:
            q.put(d)
        q.put(end)

H
Helin Wang 已提交
223 224
    def data_reader():
        r = reader()
225
        q = Queue(maxsize=size)
226 227 228 229 230 231 232 233 234 235 236
        t = Thread(
            target=read_worker, args=(
                r,
                q, ))
        t.daemon = True
        t.start()
        e = q.get()
        while e != end:
            yield e
            e = q.get()

H
Helin Wang 已提交
237
    return data_reader
Y
Yu Yang 已提交
238 239


Y
Yu Yang 已提交
240
def firstn(reader, n):
Y
Yu Yang 已提交
241 242
    """
    Limit the max number of samples that reader could return.
Y
Yu Yang 已提交
243 244 245 246 247 248 249

    :param reader: the data reader to read from.
    :type reader: callable
    :param n: the max number of samples that return.
    :type n: int
    :return: the decorated reader.
    :rtype: callable
Y
Yu Yang 已提交
250 251
    """

Y
Yu Yang 已提交
252 253 254 255
    # TODO(yuyang18): Check if just drop the reader, could clean the opened
    # resource or not?

    def firstn_reader():
Y
Yu Yang 已提交
256
        for i, item in enumerate(reader()):
Y
Yu Yang 已提交
257
            if i == n:
Y
Yu Yang 已提交
258 259 260
                break
            yield item

Y
Yu Yang 已提交
261
    return firstn_reader
262 263 264 265 266 267


class XmapEndSignal():
    pass


268
def xmap_readers(mapper, reader, process_num, buffer_size, order=False):
269
    """
Z
Zeng Jinle 已提交
270 271 272 273 274 275 276 277 278 279 280 281
    Use multi-threads to map samples from reader by a mapper defined by user.

    Args:
        mapper (callable): a function to map the data from reader.
        reader (callable): a data reader which yields the data. 
        process_num (int): thread number to handle original sample.
        buffer_size (int): size of the queue to read data in. 
        order (bool): whether to keep the data order from original reader. 
            Default False.

    Returns:
        callable: a decorated reader with data mapping. 
282 283
    """
    end = XmapEndSignal()
W
wanghaoshuang 已提交
284

285 286 287 288 289
    # define a worker to read samples from reader to in_queue
    def read_worker(reader, in_queue):
        for i in reader():
            in_queue.put(i)
        in_queue.put(end)
W
wanghaoshuang 已提交
290

291 292 293 294
    # define a worker to read samples from reader to in_queue with order flag
    def order_read_worker(reader, in_queue):
        in_order = 0
        for i in reader():
W
wanghaoshuang 已提交
295 296
            in_queue.put((in_order, i))
            in_order += 1
297
        in_queue.put(end)
298 299 300 301 302 303 304 305 306 307 308

    # define a worker to handle samples from in_queue by mapper
    # and put mapped samples into out_queue
    def handle_worker(in_queue, out_queue, mapper):
        sample = in_queue.get()
        while not isinstance(sample, XmapEndSignal):
            r = mapper(sample)
            out_queue.put(r)
            sample = in_queue.get()
        in_queue.put(end)
        out_queue.put(end)
W
wanghaoshuang 已提交
309

310 311 312 313 314 315 316 317 318 319
    # define a worker to handle samples from in_queue by mapper
    # and put mapped samples into out_queue by order
    def order_handle_worker(in_queue, out_queue, mapper, out_order):
        ins = in_queue.get()
        while not isinstance(ins, XmapEndSignal):
            order, sample = ins
            r = mapper(sample)
            while order != out_order[0]:
                pass
            out_queue.put(r)
W
wanghaoshuang 已提交
320
            out_order[0] += 1
321 322 323
            ins = in_queue.get()
        in_queue.put(end)
        out_queue.put(end)
324 325

    def xreader():
326 327
        in_queue = Queue(buffer_size)
        out_queue = Queue(buffer_size)
328 329 330 331 332 333 334 335 336 337 338
        out_order = [0]
        # start a read worker in a thread
        target = order_read_worker if order else read_worker
        t = Thread(target=target, args=(reader, in_queue))
        t.daemon = True
        t.start()
        # start several handle_workers
        target = order_handle_worker if order else handle_worker
        args = (in_queue, out_queue, mapper, out_order) if order else (
            in_queue, out_queue, mapper)
        workers = []
339
        for i in range(process_num):
340 341 342 343 344 345
            worker = Thread(target=target, args=args)
            worker.daemon = True
            workers.append(worker)
        for w in workers:
            w.start()

346 347 348 349 350 351 352 353 354 355 356 357 358
        sample = out_queue.get()
        while not isinstance(sample, XmapEndSignal):
            yield sample
            sample = out_queue.get()
        finish = 1
        while finish < process_num:
            sample = out_queue.get()
            if isinstance(sample, XmapEndSignal):
                finish += 1
            else:
                yield sample

    return xreader
359 360


Q
Qiao Longfei 已提交
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
def multiprocess_reader(readers, use_pipe=True, queue_size=1000):
    """
    multiprocess_reader use python multi process to read data from readers
    and then use multiprocess.Queue or multiprocess.Pipe to merge all
    data. The process number is equal to the number of input readers, each
    process call one reader.

    Multiprocess.Queue require the rw access right to /dev/shm, some
    platform does not support.

    you need to create multiple readers first, these readers should be independent
    to each other so that each process can work independently.

    An example:

    .. code-block:: python

        reader0 = reader(["file01", "file02"])
        reader1 = reader(["file11", "file12"])
        reader1 = reader(["file21", "file22"])
        reader = multiprocess_reader([reader0, reader1, reader2],
            queue_size=100, use_pipe=False)
    """

    try:
        import ujson as json
    except Exception as e:
        sys.stderr.write("import ujson error: " + str(e) + " use json\n")
        import json

    assert type(readers) is list and len(readers) > 0

    def _read_into_queue(reader, queue):
394 395 396 397 398 399 400 401 402
        try:
            for sample in reader():
                if sample is None:
                    raise ValueError("sample has None")
                queue.put(sample)
            queue.put(None)
        except:
            queue.put("")
            six.reraise(*sys.exc_info())
Q
Qiao Longfei 已提交
403 404 405 406 407 408 409 410 411 412 413 414 415 416

    def queue_reader():
        queue = multiprocessing.Queue(queue_size)
        for reader in readers:
            p = multiprocessing.Process(
                target=_read_into_queue, args=(reader, queue))
            p.start()

        reader_num = len(readers)
        finish_num = 0
        while finish_num < reader_num:
            sample = queue.get()
            if sample is None:
                finish_num += 1
417 418
            elif sample == "":
                raise ValueError("multiprocess reader raises an exception")
Q
Qiao Longfei 已提交
419 420 421 422
            else:
                yield sample

    def _read_into_pipe(reader, conn):
423 424 425 426 427 428 429 430 431 432 433
        try:
            for sample in reader():
                if sample is None:
                    raise ValueError("sample has None!")
                conn.send(json.dumps(sample))
            conn.send(json.dumps(None))
            conn.close()
        except:
            conn.send(json.dumps(""))
            conn.close()
            six.reraise(*sys.exc_info())
Q
Qiao Longfei 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

    def pipe_reader():
        conns = []
        for reader in readers:
            parent_conn, child_conn = multiprocessing.Pipe()
            conns.append(parent_conn)
            p = multiprocessing.Process(
                target=_read_into_pipe, args=(reader, child_conn))
            p.start()

        reader_num = len(readers)
        finish_num = 0
        conn_to_remove = []
        while finish_num < reader_num:
            for conn in conn_to_remove:
                conns.remove(conn)
            conn_to_remove = []
            for conn in conns:
                sample = json.loads(conn.recv())
                if sample is None:
                    finish_num += 1
                    conn.close()
                    conn_to_remove.append(conn)
457 458 459 460
                elif sample == "":
                    conn.close()
                    conn_to_remove.append(conn)
                    raise ValueError("multiprocess reader raises an exception")
Q
Qiao Longfei 已提交
461 462 463 464 465 466 467 468 469
                else:
                    yield sample

    if use_pipe:
        return pipe_reader
    else:
        return queue_reader


470 471 472 473 474 475
def _buf2lines(buf, line_break="\n"):
    # FIXME: line_break should be automatically configured.
    lines = buf.split(line_break)
    return lines[:-1], lines[-1]


T
typhoonzero 已提交
476
class PipeReader:
477
    """
478
        PipeReader read data by stream from a command, take it's
T
typhoonzero 已提交
479 480
        stdout into a pipe buffer and redirect it to the parser to
        parse, then yield data as your desired format.
481

T
typhoonzero 已提交
482 483
        You can using standard linux command or call another program
        to read data, from HDFS, Ceph, URL, AWS S3 etc:
484

T
typhoonzero 已提交
485 486 487 488 489
        .. code-block:: python
           cmd = "hadoop fs -cat /path/to/some/file"
           cmd = "cat sample_file.tar.gz"
           cmd = "curl http://someurl"
           cmd = "python print_s3_bucket.py"
490

T
typhoonzero 已提交
491 492 493
        An example:

        .. code-block:: python
494

T
typhoonzero 已提交
495 496 497 498 499 500
           def example_reader():
               for f in myfiles:
                   pr = PipeReader("cat %s"%f)
                   for l in pr.get_line():
                       sample = l.split(" ")
                       yield sample
501 502
    """

T
typhoonzero 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
    def __init__(self, command, bufsize=8192, file_type="plain"):
        if not isinstance(command, str):
            raise TypeError("left_cmd must be a string")
        if file_type == "gzip":
            self.dec = zlib.decompressobj(
                32 + zlib.MAX_WBITS)  # offset 32 to skip the header
        self.file_type = file_type
        self.bufsize = bufsize
        self.process = subprocess.Popen(
            command.split(" "), bufsize=bufsize, stdout=subprocess.PIPE)

    def get_line(self, cut_lines=True, line_break="\n"):
        """
        :param cut_lines: cut buffer to lines
        :type cut_lines: bool
Z
Zeng Jinle 已提交
518
        :param line_break: line break of the file, like '\\\\n' or '\\\\r'
T
typhoonzero 已提交
519 520 521 522 523
        :type line_break: string

        :return: one line or a buffer of bytes
        :rtype: string
        """
524 525
        remained = ""
        while True:
T
typhoonzero 已提交
526
            buff = self.process.stdout.read(self.bufsize)
527
            if buff:
T
typhoonzero 已提交
528
                if self.file_type == "gzip":
M
minqiyang 已提交
529
                    decomp_buff = cpt.to_text(self.dec.decompress(buff))
T
typhoonzero 已提交
530
                elif self.file_type == "plain":
M
minqiyang 已提交
531
                    decomp_buff = cpt.to_text(buff)
532
                else:
T
typhoonzero 已提交
533 534
                    raise TypeError("file_type %s is not allowed" %
                                    self.file_type)
535 536 537 538

                if cut_lines:
                    lines, remained = _buf2lines(''.join(
                        [remained, decomp_buff]), line_break)
T
typhoonzero 已提交
539 540
                    for line in lines:
                        yield line
541
                else:
T
typhoonzero 已提交
542
                    yield decomp_buff
543 544
            else:
                break
Q
qiaolongfei 已提交
545 546


547
class Fake(object):
Q
qiaolongfei 已提交
548 549 550 551 552 553
    """
    fake reader will cache the first data it read and yield it out for data_num times.
    It is used to cache a data from real reader and use it for speed testing.

    :param reader: the origin reader
    :param data_num: times that this reader will yield data.
554

Q
qiaolongfei 已提交
555
    :return: a fake reader.
556 557 558 559 560 561 562 563 564

    Examples:
        .. code-block:: python

            def reader():
                for i in range(10):
                    yield i

            fake_reader = Fake()(reader, 100)
Q
qiaolongfei 已提交
565 566
    """

567 568 569
    def __init__(self):
        self.data = None
        self.yield_num = 0
Q
qiaolongfei 已提交
570

571 572 573
    def __call__(self, reader, data_num):
        def fake_reader():
            if self.data is None:
574
                self.data = next(reader())
575 576 577 578
            while self.yield_num < data_num:
                yield self.data
                self.yield_num += 1
            self.yield_num = 0
Q
qiaolongfei 已提交
579

580
        return fake_reader