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

« back to all changes in this revision

Viewing changes to prnt/hpcups/Utils.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
  Utils.cpp : implementaiton of utility functions
 
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
#include "CommonDefinitions.h"
 
32
#include <dlfcn.h>
 
33
 
 
34
void *LoadPlugin (const char *szPluginName)
 
35
{
 
36
    FILE    *fp;
 
37
    char    szLine[256];
 
38
    int     i;
 
39
    void    *ptemp = NULL;
 
40
    char    *p = NULL;
 
41
    int     bFound = 0;
 
42
    if ((fp = fopen ("/etc/hp/hplip.conf", "r")) == NULL)
 
43
    {
 
44
        return NULL;
 
45
    }
 
46
    while (!feof (fp))
 
47
    {
 
48
        if (!fgets (szLine, 256, fp))
 
49
        {
 
50
            break;
 
51
        }
 
52
        if (!bFound && strncmp (szLine, "[dirs]", 6))
 
53
            continue;
 
54
        bFound = 1;
 
55
        if (szLine[0] < ' ')
 
56
            break;
 
57
        if (!strncmp (szLine, "home", 4))
 
58
        {
 
59
            i = strlen (szLine);
 
60
            while (i > 0 && szLine[i] < ' ')
 
61
                szLine[i--] = '\0';
 
62
            p = szLine + 4;
 
63
            while (*p && *p != '/')
 
64
                p++;
 
65
            sprintf (p+strlen (p), "/prnt/plugins/%s", szPluginName);
 
66
            ptemp = dlopen (p, RTLD_LAZY);
 
67
        }
 
68
    }
 
69
    fclose (fp);
 
70
    return ptemp;
 
71
}
 
72
 
 
73
int SendChunkHeader (BYTE *szStr, DWORD dwSize, DWORD dwChunkType, DWORD dwNumItems)
 
74
{
 
75
    for (int j = 3, i = 0; j >= 0; j--)
 
76
    {
 
77
        szStr[i] = (BYTE) ((dwSize >> (8 * (j))) & 0xFF);
 
78
        szStr[4+i] = (BYTE) ((dwChunkType >> (8 * (j))) & 0xFF);
 
79
        szStr[8+i] = (BYTE) ((dwNumItems >> (8 * (j))) & 0xFF);
 
80
        i++;
 
81
    }
 
82
 
 
83
    szStr[12] = (BYTE) (((dwNumItems * 12) & 0xFF00) >> 8);
 
84
    szStr[13] = (BYTE) (((dwNumItems * 12) & 0x00FF));
 
85
 
 
86
    szStr[14] = 'Z';
 
87
    szStr[15] = 'Z';
 
88
    return 16;
 
89
}
 
90
 
 
91
int SendItemExtra (BYTE *szStr, BYTE cType, WORD wItem, DWORD dwValue, DWORD dwExtra)
 
92
{
 
93
    int        i, j;
 
94
    dwExtra += 12;
 
95
    for (j = 3, i = 0; j >= 0; j--)
 
96
    {
 
97
        szStr[i++] = (BYTE) ((dwExtra >> (8 * (j))) & 0xFF);
 
98
    }
 
99
    szStr[i++] = (BYTE) ((wItem & 0xFF00) >> 8);
 
100
    szStr[i++] = (BYTE) ((wItem & 0x00FF));
 
101
    szStr[i++] = (BYTE) cType;
 
102
    szStr[i++] = 0;
 
103
    for (j = 3; j >= 0; j--)
 
104
    {
 
105
        szStr[i++] = (BYTE) ((dwValue >> (8 * (j))) & 0xFF);
 
106
    }
 
107
    return i;
 
108
}
 
109
 
 
110
int SendItem (BYTE *szStr, BYTE cType, WORD wItem, DWORD dwValue)
 
111
{
 
112
    return SendItemExtra (szStr, cType, wItem, dwValue, 0);
 
113
}
 
114
 
 
115
int SendIntItem (BYTE *szStr, int iItem, int iItemType, int iItemValue)
 
116
{
 
117
    int        i = 0;
 
118
    int        j;
 
119
    for (j = 3; j >= 0; j--)
 
120
    {
 
121
        szStr[i++] = (BYTE) ((iItem >> (8 * (j))) & 0xFF);
 
122
    }
 
123
    for (j = 3; j >= 0; j--)
 
124
    {
 
125
        szStr[i++] = (BYTE) ((iItemType >> (8 * (j))) & 0xFF);
 
126
    }
 
127
    for (j = 3; j >= 0; j--)
 
128
    {
 
129
        szStr[i++] = (BYTE) ((iItemValue >> (8 * (j))) & 0xFF);
 
130
    }
 
131
    return i;
 
132
}
 
133