forked from libharu/libharu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpdf_name.c
74 lines (59 loc) · 1.85 KB
/
hpdf_name.c
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
/*
* << Haru Free PDF Library >> -- hpdf_name.c
*
* URL: http://libharu.org
*
* Copyright (c) 1999-2006 Takeshi Kanno <[email protected]>
* Copyright (c) 2007-2009 Antony Dovgal <[email protected]>
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation.
* It is provided "as is" without express or implied warranty.
*
*/
#include "hpdf_conf.h"
#include "hpdf_utils.h"
#include "hpdf_objects.h"
HPDF_Name
HPDF_Name_New (HPDF_MMgr mmgr,
const char *value)
{
HPDF_Name obj;
obj = HPDF_GetMem (mmgr, sizeof(HPDF_Name_Rec));
if (obj) {
HPDF_MemSet (&obj->header, 0, sizeof(HPDF_Obj_Header));
obj->header.obj_class = HPDF_OCLASS_NAME;
obj->error = mmgr->error;
if (HPDF_Name_SetValue (obj, value) == HPDF_NAME_INVALID_VALUE) {
HPDF_FreeMem (mmgr, obj);
return NULL;
}
}
return obj;
}
HPDF_STATUS
HPDF_Name_Write (HPDF_Name obj,
HPDF_Stream stream)
{
return HPDF_Stream_WriteEscapeName (stream, obj->value);
}
HPDF_STATUS
HPDF_Name_SetValue (HPDF_Name obj,
const char *value)
{
if (!value || value[0] == 0)
return HPDF_SetError (obj->error, HPDF_NAME_INVALID_VALUE, 0);
if (HPDF_StrLen (value, HPDF_LIMIT_MAX_NAME_LEN + 1) >
HPDF_LIMIT_MAX_NAME_LEN)
return HPDF_SetError (obj->error, HPDF_NAME_OUT_OF_RANGE, 0);
HPDF_StrCpy (obj->value, value, obj->value + HPDF_LIMIT_MAX_NAME_LEN);
return HPDF_OK;
}
const char*
HPDF_Name_GetValue (HPDF_Name obj)
{
return (const char *)obj->value;
}