5 Copyright (c) 2004 OpenBeOS.
11 Permission is hereby granted, free of charge, to any person obtaining a copy of
12 this software and associated documentation files (the "Software"), to deal in
13 the Software without restriction, including without limitation the rights to
14 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
15 of the Software, and to permit persons to whom the Software is furnished to do
16 so, subject to the following conditions:
18 The above copyright notice and this permission notice shall be included in all
19 copies or substantial portions of the Software.
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "PrintTransport.h"
33 #include <Directory.h>
35 #include <FindDirectory.h>
39 // implementation of class PrintTransport
40 PrintTransport::PrintTransport()
47 PrintTransport::~PrintTransport()
55 unload_add_on(fAddOnID
);
60 status_t
PrintTransport::Open(BNode
* printerFolder
)
63 if (fDataIO
!= NULL
) {
67 // retrieve transport add-on name from printer folder attribute
68 BString transportName
;
69 if (printerFolder
->ReadAttrString("transport", &transportName
) != B_OK
) {
73 const directory_which paths
[] = {
74 B_USER_NONPACKAGED_ADDONS_DIRECTORY
,
75 B_USER_ADDONS_DIRECTORY
,
76 B_SYSTEM_NONPACKAGED_ADDONS_DIRECTORY
,
77 B_SYSTEM_ADDONS_DIRECTORY
,
80 for (uint32 i
= 0; i
< sizeof(paths
) / sizeof(paths
[0]); ++i
) {
81 if (find_directory(paths
[i
], &path
) != B_OK
)
83 path
.Append("Print/transport");
84 path
.Append(transportName
.String());
85 fAddOnID
= load_add_on(path
.Path());
91 // failed to load transport add-on
95 // get init & exit proc
96 BDataIO
* (*initProc
)(BMessage
*);
97 get_image_symbol(fAddOnID
, "init_transport", B_SYMBOL_TYPE_TEXT
, (void **) &initProc
);
98 get_image_symbol(fAddOnID
, "exit_transport", B_SYMBOL_TYPE_TEXT
, (void **) &fExitProc
);
100 if (initProc
== NULL
|| fExitProc
== NULL
) {
101 // transport add-on has not the proper interface
105 // now, initialize the transport add-on
109 printerFolder
->GetNodeRef(&ref
);
112 if (path
.SetTo(&dir
, NULL
) != B_OK
) {
116 // request BDataIO object from transport add-on
117 BMessage
input('TRIN');
118 input
.AddString("printer_file", path
.Path());
119 fDataIO
= (*initProc
)(&input
);
124 PrintTransport::GetDataIO()
129 bool PrintTransport::IsPrintToFileCanceled() const
131 // The BeOS "Print To File" transport add-on returns a non-NULL BDataIO *
132 // even after user filepanel cancellation!
133 BFile
* file
= dynamic_cast<BFile
*>(fDataIO
);
134 return fDataIO
== NULL
|| (file
!= NULL
&& file
->InitCheck() != B_OK
);