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
|
# -*- coding: utf-8 -*-
#
# (c) Copyright 2003-2007 Hewlett-Packard Development Company, L.P.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Author: Don Welch
#
from __future__ import division
# Std Lib
import sys
import os
import time
import cStringIO
import urllib # TODO: Replace with urllib2 (urllib is deprecated in Python 3.0)
import re
# Local
from base.g import *
from base.codes import *
from base import device, utils, codes, dime
from fax import *
from ledmfax import *
from soapfax import SOAPFaxSendThread
from soapfax import SOAPFaxDevice
# **************************************************************************** #
class LEDMSOAPFaxDevice(SOAPFaxDevice):
def __init__(self, device_uri=None, printer_name=None,
callback=None,
fax_type=FAX_TYPE_NONE,
disable_dbus=False):
SOAPFaxDevice.__init__(self, device_uri,
printer_name,
callback, fax_type,
disable_dbus)
#LEDM Specific functions
def put(self, url, post):
data = """PUT %s HTTP/1.1\r
Connection: Keep-alive\r
User-agent: hplip/2.0\r
Host: %s\r
Content-length: %d\r
\r
%s""" % (url, self.http_host, len(post), post)
log.log_data(data)
self.writeEWS_LEDM(data)
response = cStringIO.StringIO()
while self.readEWS_LEDM(4096, response, timeout=5):
pass
response = response.getvalue()
log.log_data(response)
self.closeEWS_LEDM()
match = http_result_pat.match(response)
if match is None: return HTTP_OK
try:
code = int(match.group(1))
except (ValueError, TypeError):
code = HTTP_ERROR
return code == HTTP_OK
def setPhoneNum(self, num):
xml = setPhoneNumXML %(num)
log.debug("SetPhoneNum:xml Value:%s" %xml)
return self.put("/DevMgmt/FaxConfigDyn.xml", xml)
def getPhoneNum(self):
return self.readAttributeFromXml_EWS("/DevMgmt/FaxConfigDyn.xml",'faxcfgdyn:faxconfigdyn-faxcfgdyn:systemsettings-dd:phonenumber')
phone_num = property(getPhoneNum, setPhoneNum)
def setStationName(self, name):
xml = setStationNameXML %(name)
return self.put("/DevMgmt/FaxConfigDyn.xml", xml)
def getStationName(self):
return self.readAttributeFromXml_EWS("/DevMgmt/FaxConfigDyn.xml",'faxcfgdyn:faxconfigdyn-faxcfgdyn:systemsettings-dd:companyname')
station_name = property(getStationName, setStationName)
|