File: zdevcal.c

package info (click to toggle)
gs 3.33-7
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 7,436 kB
  • ctags: 15,511
  • sloc: ansic: 92,150; asm: 684; sh: 486; makefile: 91
file content (64 lines) | stat: -rw-r--r-- 2,103 bytes parent folder | download
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
/* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  
  This file is part of GNU Ghostscript.
  
  GNU Ghostscript is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility to
  anyone for the consequences of using it or for whether it serves any
  particular purpose or works at all, unless he says so in writing.  Refer
  to the GNU Ghostscript General Public License for full details.
  
*/

/* zdevcal.c */
/* %Calendar% IODevice */
#include "time_.h"
#include "ghost.h"
#include "gxiodev.h"
#include "istack.h"
#include "iparam.h"

/* ------ %Calendar% ------ */

private iodev_proc_get_params(calendar_get_params);
gx_io_device gs_iodev_calendar =
  { "%Calendar%", "Special",
     { iodev_no_init, iodev_no_open_device, iodev_no_open_file,
       iodev_no_fopen, iodev_no_fclose,
       iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status,
       iodev_no_enumerate_files, NULL, NULL,
       calendar_get_params, iodev_no_put_params
     }
  };

/* Get the date and time. */
private int
calendar_get_params(gx_io_device *iodev, gs_param_list *plist)
{	int code;
	time_t t;
	struct tm *pltime;
	struct tm ltime;
	bool running;

	if ( time(&t) == -1 || (pltime = localtime(&t)) == 0 )
	  { ltime.tm_sec = ltime.tm_min = ltime.tm_hour =
	      ltime.tm_mday = ltime.tm_mon = ltime.tm_year = 0;
	    running = false;
	  }
	else
	  { ltime = *pltime;
	    ltime.tm_year += 1900;
	    ltime.tm_mon++;		/* 1-origin */
	    running = true;
	  }
	if ( (code = param_write_int(plist, "Year", &ltime.tm_year)) < 0 ||
	     (code = param_write_int(plist, "Month", &ltime.tm_mon)) < 0 ||
	     (code = param_write_int(plist, "Day", &ltime.tm_mday)) < 0 ||
	     (code = param_write_int(plist, "Weekday", &ltime.tm_wday)) < 0 ||
	     (code = param_write_int(plist, "Hour", &ltime.tm_hour)) < 0 ||
	     (code = param_write_int(plist, "Minute", &ltime.tm_min)) < 0 ||
	     (code = param_write_int(plist, "Second", &ltime.tm_sec)) < 0
	   )
	  return code;
	return param_write_bool(plist, "Running", &running);
}