aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/DrawingBoard/SkNetPipeController.cpp
blob: a61ca644783390b1519884e403230da2fc5ef948 (plain)
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
/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include "SkNetPipeController.h"

SkNetPipeController::SkNetPipeController(SkCanvas* target) : fReader(target) {
    fBlock = NULL;
    fBlockSize = fBytesWritten = 0;
    fPlayback = true;
    fStatus = SkGPipeReader::kDone_Status;
    fTotalWritten = 0;
    fAtomsWritten = 0;
}
SkNetPipeController::~SkNetPipeController() {
    sk_free(fBlock);
}

int SkNetPipeController::writeToSocket(SkSocket* sockfd, SkSocket::DataType type) {
    if (NULL != sockfd && fTotalWritten > 4)
        return sockfd->writePacket(fBlock, fBytesWritten, type);
    else
        return -1;
}

void* SkNetPipeController::requestBlock(size_t minRequest, size_t* actual) {
    sk_free(fBlock);

    fBlockSize = minRequest * 4;
    fBlock = sk_malloc_throw(fBlockSize);
    fBytesWritten = 0;
    *actual = fBlockSize;
    return fBlock;
}

void SkNetPipeController::notifyWritten(size_t bytes) {
    SkASSERT(fBytesWritten + bytes <= fBlockSize);

    if (fPlayback) {
        fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
    }

    SkASSERT(SkGPipeReader::kError_Status != fStatus);
    fBytesWritten += bytes;
    fTotalWritten += bytes;

    fAtomsWritten += 1;
}