Removed 'extern int DEBUGLEVEL' as it is now in the smb.h header.
[tprouty/samba.git] / source / printing / printfsp.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    printing backend routines for smbd - using files_struct rather
5    than only snum
6    Copyright (C) Andrew Tridgell 1992-2000
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25 /***************************************************************************
26 open a print file and setup a fsp for it. This is a wrapper around
27 print_job_start().
28 ***************************************************************************/
29
30 files_struct *print_fsp_open(connection_struct *conn)
31 {
32         int jobid;
33         SMB_STRUCT_STAT sbuf;
34         extern struct current_user current_user;
35         files_struct *fsp = file_new(conn);
36
37         if(!fsp)
38                 return NULL;
39
40         jobid = print_job_start(&current_user, SNUM(conn), "smb.prn");
41         if (jobid == -1) {
42                 file_free(fsp);
43                 return NULL;
44         }
45
46         /* setup a full fsp */
47         fsp->print_jobid = jobid;
48         fsp->fd = print_job_fd(jobid);
49         GetTimeOfDay(&fsp->open_time);
50         fsp->vuid = current_user.vuid;
51         fsp->size = 0;
52         fsp->pos = -1;
53         fsp->can_lock = True;
54         fsp->can_read = False;
55         fsp->can_write = True;
56         fsp->share_mode = 0;
57         fsp->print_file = True;
58         fsp->modified = False;
59         fsp->oplock_type = NO_OPLOCK;
60         fsp->sent_oplock_break = NO_BREAK_SENT;
61         fsp->is_directory = False;
62         fsp->stat_open = False;
63         fsp->directory_delete_on_close = False;
64         fsp->conn = conn;
65         string_set(&fsp->fsp_name,print_job_fname(jobid));
66         fsp->wcp = NULL; 
67         conn->vfs_ops.fstat(fsp,fsp->fd, &sbuf);
68         fsp->mode = sbuf.st_mode;
69         fsp->inode = sbuf.st_ino;
70         fsp->dev = sbuf.st_dev;
71
72         conn->num_files_open++;
73
74         return fsp;
75 }
76
77 /****************************************************************************
78 print a file - called on closing the file
79 ****************************************************************************/
80 void print_fsp_end(files_struct *fsp, BOOL normal_close)
81 {
82         if (fsp->share_mode == FILE_DELETE_ON_CLOSE) {
83                 /*
84                  * Truncate the job. print_job_end will take
85                  * care of deleting it for us. JRA.
86                  */
87                 sys_ftruncate(fsp->fd, 0);
88         }
89
90         print_job_end(fsp->print_jobid, normal_close);
91
92         if (fsp->fsp_name) {
93                 string_free(&fsp->fsp_name);
94         }
95 }