forked from sisong/HDiffPatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_atosize.h
More file actions
127 lines (113 loc) · 4.26 KB
/
_atosize.h
File metadata and controls
127 lines (113 loc) · 4.26 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//_atosize.h
//
/*
This is the HDiffPatch copyright.
Copyright (c) 2012-2017 HouSisong All Rights Reserved.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef HDiffPatch_atosize_h
#define HDiffPatch_atosize_h
#include "libHDiffPatch/HPatch/patch_types.h"
#ifdef __cplusplus
extern "C" {
#endif
#define _kU64Max (~(hpatch_uint64_t)0)
hpatch_inline static
hpatch_BOOL a_to_u64(const char* pnum,size_t slen,hpatch_uint64_t* out_size){
const hpatch_uint64_t _kSizeMaxDiv10=_kU64Max/10;
const hpatch_uint64_t _kSizeMaxMod10=_kU64Max-_kSizeMaxDiv10*10;
hpatch_uint64_t v=0;
size_t s;
if ((slen==0)|((slen>=2)&(pnum[0]=='0'))) //for performance, '| &' is used here instead of the more semantically appropriate '|| &&'.
return hpatch_FALSE;
for (s=0; s<slen; ++s) {
hpatch_uint64_t c=pnum[s];
if (('0'<=c)&(c<='9')) //for performance, '&' is used here instead of the more semantically appropriate '&&'.
;//empty ok
else
return hpatch_FALSE;
c-='0';
if (v<_kSizeMaxDiv10)
;//empty ok
else if ((v>_kSizeMaxDiv10)|(c>_kSizeMaxMod10)) //for performance, '|' is used here instead of the more semantically appropriate '|'.
return hpatch_FALSE;
v=v*10+c;
}
*out_size=v;
return hpatch_TRUE;
}
hpatch_inline static
hpatch_BOOL kmg_to_u64(const char* pkmgnum,size_t slen,hpatch_uint64_t* out_size){
size_t shl;
hpatch_uint64_t v;
if (slen==0) return hpatch_FALSE;
switch (pkmgnum[slen-1]) {
case 'k': case 'K': { shl=10; --slen;} break;
case 'm': case 'M': { shl=20; --slen;} break;
case 'g': case 'G': { shl=30; --slen;} break;
default: { shl= 0; } break;
}
if (!a_to_u64(pkmgnum,slen,&v)) return hpatch_FALSE;
if (v>(_kU64Max>>shl)) return hpatch_FALSE;
*out_size=v<<shl;
return hpatch_TRUE;
}
hpatch_inline static
hpatch_BOOL a_to_size(const char* pnum,size_t slen,size_t* out_size){
hpatch_uint64_t v;
if (!a_to_u64(pnum,slen,&v)) return hpatch_FALSE;
if ((sizeof(size_t)!=sizeof(hpatch_uint64_t)) && (v!=(size_t)v)) return hpatch_FALSE;
*out_size=(size_t)v;
return hpatch_TRUE;
}
hpatch_inline static
hpatch_BOOL kmg_to_size(const char* pkmg_num,size_t slen,size_t* out_size){
hpatch_uint64_t v;
if (!kmg_to_u64(pkmg_num,slen,&v)) return hpatch_FALSE;
if ((sizeof(size_t)!=sizeof(hpatch_uint64_t)) && (v!=(size_t)v)) return hpatch_FALSE;
*out_size=(size_t)v;
return hpatch_TRUE;
}
#define _u64_to_a_kMaxLen 21
static const char* _i09_to_one_a_="0123456789";
hpatch_inline static
char* u64_to_enough_a(hpatch_uint64_t size,char temp_buf_enough[_u64_to_a_kMaxLen]){
char* out_a=temp_buf_enough+_u64_to_a_kMaxLen;
*(--out_a)='\0';
do{
hpatch_uint64_t nsize=size/10;
*(--out_a)=_i09_to_one_a_[size-nsize*10];
size=nsize;
}while(size);
return out_a;
}
hpatch_inline static
hpatch_BOOL u64_to_a(hpatch_uint64_t size,char* out_a,size_t a_buflen){
char enough_a[_u64_to_a_kMaxLen];
const char* cur_a=u64_to_enough_a(size,enough_a);
const size_t datalen=_u64_to_a_kMaxLen-(cur_a-enough_a);
if (a_buflen<datalen) return hpatch_FALSE;
memcpy(out_a,cur_a,datalen);
return hpatch_TRUE;
}
#ifdef __cplusplus
}
#endif
#endif //HDiffPatch_atosize_h