~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to prnt/hpcups/Pipeline.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-14 20:08:44 UTC
  • mfrom: (2.1.118 lucid)
  • Revision ID: james.westby@ubuntu.com-20091214200844-z8qhqwgppbu3t7ze
Tags: 3.9.10-4
KBSD patch from KiBi (Closes: #560796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************\
 
2
  Pipeline.cpp : Implementation of Pipeline class
 
3
 
 
4
  Copyright (c) 1996 - 2001, Hewlett-Packard Co.
 
5
  All rights reserved.
 
6
 
 
7
  Redistribution and use in source and binary forms, with or without
 
8
  modification, are permitted provided that the following conditions
 
9
  are met:
 
10
  1. Redistributions of source code must retain the above copyright
 
11
     notice, this list of conditions and the following disclaimer.
 
12
  2. Redistributions in binary form must reproduce the above copyright
 
13
     notice, this list of conditions and the following disclaimer in the
 
14
     documentation and/or other materials provided with the distribution.
 
15
  3. Neither the name of Hewlett-Packard nor the names of its
 
16
     contributors may be used to endorse or promote products derived
 
17
     from this software without specific prior written permission.
 
18
 
 
19
  THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
 
20
  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
21
  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
 
22
  NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
23
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 
24
  TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 
25
  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
26
  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
27
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
28
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
\*****************************************************************************/
 
30
 
 
31
/*
 
32
 *  Pipeline.cpp
 
33
 *  hpcups
 
34
 *
 
35
 */
 
36
 
 
37
#include "Pipeline.h"
 
38
bool Pipeline::NextOutputRaster(RASTERDATA& next_raster)
 
39
{
 
40
    return Exec->NextOutputRaster(next_raster);
 
41
}
 
42
unsigned int Pipeline::GetMaxOutputWidth()
 
43
{
 
44
    return Exec->GetMaxOutputWidth();
 
45
}
 
46
 
 
47
///////////////////////////////////////////////////////////
 
48
// Pipeline management
 
49
Pipeline::Pipeline (Processor *E) :
 
50
    next(NULL),
 
51
    prev(NULL) {
 
52
    Exec = E;
 
53
    Exec->myphase = this;
 
54
} //Pipeline
 
55
 
 
56
void Pipeline::AddPhase (Pipeline *newp) {
 
57
    Pipeline    *p = this;
 
58
    while (p->next) {
 
59
        p = p->next;
 
60
    }
 
61
    p->next = newp;
 
62
    newp->prev = p;
 
63
} //AddPhase
 
64
 
 
65
Pipeline::~Pipeline ()
 
66
{
 
67
} //~Pipeline
 
68
 
 
69
 
 
70
bool Pipeline::Process (RASTERDATA *raster)
 
71
{
 
72
    return Exec->Process (raster);
 
73
} //Process
 
74
 
 
75
 
 
76
DRIVER_ERROR Pipeline::Execute (RASTERDATA *InputRaster)
 
77
{
 
78
    err = NO_ERROR;
 
79
    if (Process (InputRaster)        // true if output ready; may set err
 
80
        && (err == NO_ERROR)) {
 
81
        if (next) {
 
82
            while ( NextOutputRaster( next->Exec->raster ) ) {
 
83
                err = next->Execute(&(next->Exec->raster));
 
84
                ERRCHECK;
 
85
            }
 
86
        }
 
87
    }
 
88
    return err;
 
89
} //Execute
 
90
 
 
91
 
 
92
DRIVER_ERROR Pipeline::Flush ()
 
93
{
 
94
    err = NO_ERROR;
 
95
 
 
96
    Exec->Flush ();
 
97
 
 
98
    if (next && (err == NO_ERROR)) {
 
99
        while ( NextOutputRaster( next->Exec->raster ) ) {
 
100
            err = next->Execute(&(next->Exec->raster));
 
101
            ERRCHECK;
 
102
        }
 
103
        // one more to continue flushing downstream
 
104
        err = next->Flush ();
 
105
    }
 
106
    return err;
 
107
} //Flush
 
108