- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章C语言实现进制转换函数的实例详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
C语言实现进制转换函数的实例详解 。
前言:
写一个二进制,八进制,十六进制转换为十进制的函数 。
要求:
系统表 pg_proc 存储关于函数的信息 。
内部函数在编译之前需要先定义在 pg_proc.h 中,src/include/catalog/pg_proc.h 。
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
|
CATALOG(pg_proc,1255) BKI_BOOTSTRAP BKI_ROWTYPE_OID(81) BKI_SCHEMA_MACRO
{
NameData proname; /* procedure name */ /* 函数名,sql 中 select 函数名(); */
Oid pronamespace; /* OID of namespace containing this proc */ /* 模式OID */
Oid proowner; /* procedure owner */ /* 用户OID */
Oid prolang; /* OID of pg_language entry */
float4 procost; /* estimated execution cost */ /* 估计执行成本 */
float4 prorows; /* estimated # of rows out (if proretset) */ /* 结果行估计数 */
Oid provariadic; /* element type of variadic array, or 0 */
regproc protransform; /* transforms calls to it during planning */
bool proisagg; /* is it an aggregate? */ /* 是否为聚集函数 */
bool proiswindow; /* is it a window function? */ /* 是否为窗口函数 */
bool prosecdef; /* security definer */ /* 函数是一个安全定义器,也就是一个“setuid"函数 */
bool proleakproof; /* is it a leak-proof function? */ /* 有无其他影响 */
bool proisstrict; /* strict with respect to NULLs? */ /* 遇到 NULL 值是否直接返回 NULL */
bool proretset; /* returns a set? */ /* 函数返回一个集合 */
char provolatile; /* see PROVOLATILE_ categories below */
int16 pronargs; /* number of arguments */ /* 参数个数 */
int16 pronargdefaults; /* number of arguments with defaults */ /* 默认参数的个数 */
Oid prorettype; /* OID of result type */ /* 返回参数类型OID */
/*
* variable-length fields start here, but we allow direct access to
* proargtypes
*/
oidvector proargtypes; /* parameter types (excludes OUT params) */ /* 存放函数参数类型的数组 */
#ifdef CATALOG_VARLEN
Oid proallargtypes[1]; /* all param types (NULL if IN only) */
char proargmodes[1]; /* parameter modes (NULL if IN only) */
text proargnames[1]; /* parameter names (NULL if no names) */
pg_node_tree proargdefaults;/* list of expression trees for argument
* defaults (NULL if none) */
Oid protrftypes[1]; /* types for which to apply transforms */
text prosrc BKI_FORCE_NOT_NULL; /* procedure source text */ /* 函数处理器如何调用函数,实现函数的函数名 */
text probin; /* secondary procedure info (can be NULL) */
text proconfig[1]; /* procedure-local GUC settings */
aclitem proacl[1]; /* access permissions */
#endif
} FormData_pg_proc;
|
在 proc.h 添加函数定义:
1
2
3
4
5
6
7
8
|
/* myfunc */
DATA(insert OID = 6663 ( x_to_dec PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 23 "25 23" _null_ _null_ _null_ _null_ _null_ x_to_dec _null_ _null_ _null_ ));
DESCR("x_to_dec.");
OID = 6663 /* OID 唯一,不能与其他定义 OID 重复 */
x_to_dec /* sql 中 select x_to_dec(); */
2 0 23 "25 23" /* 传递两个参数; 默认 0; 返回值类型 OID = 23; 参数1类型 OID = 25, 参数2类型 OID = 23 */
x_to_dec /* 自定义函数名 */
|
这里的传递参数类型和返回值类型都用的了 OID 。
系统表 pg_type 存储数据类型的信息 。
1
2
3
4
5
6
|
postgres=# select oid,typname from pg_type where typname = 'text' or typname = 'int4';
oid | typname
-----+---------
23 | int4
25 | text
(2 rows)
|
在 src/backend/utils/adt/myfuncs.c 实现自定义的函数 。
首先创建函数的整体部分:
1
2
3
4
5
6
7
8
9
10
11
12
|
Datum /* Datum 类型是PG系统函数大量引用的类型,其定义为:typedef uintptr_c Datum */
x_to_dec (PG_FUNCTION_ARGS) /* 函数名; 参数 */
{
/* 获取参数 */
text *arg1 = PG_GETARG_TEXT_P(0);
int32 arg2 = PG_GETARG_INT32(1);
/** 实现功能 **/
/* 返回 */
PG_RETURN_INT32(sum);
}
|
这里的 PG_GETARG_XXXX() 和 PG_RETURN_XXXXX() 在 src/include/fmgr.h 。
知道了如何获取参数以及返回返回值,接下来是具体的实现:
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
|
Datum x_to_dec (PG_FUNCTION_ARGS)
{
int n = 0, i = 0, sum = 0, t = 0;
text *arg1 = PG_GETARG_TEXT_P(0);
int32 arg2 = PG_GETARG_INT32(1);
char *str = text_to_cstring(arg1);
n = strlen(str);
switch(arg2)
{
case 2:
for(i = n - 1; i >= 0; i--)
{
if((str[i] - '0') != 1 && (str[i] - '0') != 0)
{
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("Please enter the correct binary number, such as '110011'.")));
}
sum += (str[i] - '0') * ((int)pow(2, n - 1 - i));
}
break;
case 8:
for(i = n - 1; i >= 0; i--)
{
if(!(str[i] >= '0' && str[i] <= '7'))
{
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("Please enter the correct octal number, for example '34567'.")));
}
sum += (str[i] - '0') * ((int)pow(8, n - 1 - i));
}
break;
case 16:
for(i = n - 1; i >= 0; i--)
{
if( !(str[i] >= '0' && str[i] <= '9') )
{
if(str[i] >= 'A' && str[i] <= 'F')
{
// Uppercase to lowercase
str[i] = str[i] + 32;
} else if ( !(str[i] >= 'a' && str[i] <= 'f') ) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("Please enter the correct hexadecimal number, for example '9f'.")));
}
}
if(str[i] <= '9')
{
t = str[i] - '0';
} else {
t = str[i] - 'a' + 10;
}
sum = sum * 16 + t;
}
break;
default:
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("Out of range! The second parameter, please enter: 2, 4, 16.")));
}
PG_RETURN_INT32(sum);
}
|
其中用到了text_to_cstring(arg1) ,类型转换的相关函数定义在 src/backend/utils/adt/varlena.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
|
/*
* text_to_cstring
*
* Create a palloc'd, null-terminated C string from a text value.
*
* We support being passed a compressed or toasted text value.
* This is a bit bogus since such values shouldn't really be referred to as
* "text *", but it seems useful for robustness. If we didn't handle that
* case here, we'd need another routine that did, anyway.
*/
char
*
text_to_cstring(
const
text *t)
{
/* must cast away the const, unfortunately */
text *tunpacked = pg_detoast_datum_packed((
struct
varlena *) t);
int
len = VARSIZE_ANY_EXHDR(tunpacked);
char
*result;
result = (
char
*) palloc(len + 1);
memcpy
(result, VARDATA_ANY(tunpacked), len);
result[len] =
'\0'
;
if
(tunpacked != t)
pfree(tunpacked);
return
result;
}
|
结果:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
postgres=# select x_to_dec(
'111'
,2);
x_to_dec
----------
7
(1 row)
postgres=# select x_to_dec(
'aA'
,16);
x_to_dec
----------
170
(1 row)
postgres=# select x_to_dec(
'aA'
,1);
ERROR: Out of range! The second parameter, please enter: 2, 4, 16.
|
PS:我推荐一款在线进制转换工具 https://tool.zzvips.com/t/hex/ 。
以上就是进制转换的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持! 。
原文链接:https://my.oschina.net/yonj1e/blog/869121 。
最后此篇关于C语言实现进制转换函数的实例详解的文章就讲到这里了,如果你想了解更多关于C语言实现进制转换函数的实例详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
大家好,我是汤师爷~ 什么是订单履约系统? 订单履约是从消费者下单支付到收到商品的全流程管理过程,包括订单接收、订单派单、库存分配、仓储管理和物流配送等环节,核心目标是确保商品准时、准确地送达消费
大家好,我是汤师爷~ 今天聊聊促销系统整体规划。 各类促销活动的系统流程,可以抽象为3大阶段: B端促销活动管理:商家运营人员在后台系统中配置和管理促销活动,包括设定活动基本信息、使用规则
全称“Java Virtual Machine statistics monitoring tool”(statistics 统计;monitoring 监控;tool 工具) 用于监控虚拟机的各种运
主要是讲下Mongodb的索引的查看、创建、删除、类型说明,还有就是Explain执行计划的解释说明。 可以转载,但请注明出处。  
1>单线程或者单进程 相当于短链接,当accept之后,就开始数据的接收和数据的发送,不接受新的连接,即一个server,一个client 不存在并发。 2>循环服务器和并发服务器
详解 linux中的关机和重启命令 一 shutdown命令 shutdown [选项] 时间 选项: ?
首先,将json串转为一个JObject对象: ? 1
matplotlib官网 matplotlib库默认英文字体 添加黑体(‘SimHei')为绘图字体 代码: plt.rcParams['font.sans-serif']=['SimHei'
在并发编程中,synchronized关键字是常出现的角色。之前我们都称呼synchronized关键字为重量锁,但是在jdk1.6中对synchronized进行了优化,引入了偏向锁、轻量锁。本篇
一般我们的项目中会使用1到2个数据库连接配置,同程艺龙的数据库连接配置被收拢到统一的配置中心,由DBA统一配置和维护,业务方通过某个字符串配置拿到的是Connection对象。  
实例如下: ? 1
1. MemoryCahe NetCore中的缓存和System.Runtime.Caching很相似,但是在功能上做了增强,缓存的key支持object类型;提供了泛型支持;可以读缓存和单个缓存
argument是javascript中函数的一个特殊参数,例如下文,利用argument访问函数参数,判断函数是否执行 复制代码 代码如下: <script
一不小心装了一个Redis服务,开了一个全网的默认端口,一开始以为这台服务器没有公网ip,结果发现之后悔之莫及啊 某天发现cpu load高的出奇,发现一个minerd进程 占了大量cpu,googl
今天写这个是为了 提醒自己 编程过程 不仅要有逻辑 思想 还有要规范 代码 这样可读性 1、PHP 编程规范与编码习惯最主要的有以下几点: 1 文件说明 2 funct
摘要:虚拟机安装时一般都采用最小化安装,默认没有lspci工具。一台测试虚拟网卡性能的虚拟机,需要lspci工具来查看网卡的类型。本文描述了在一个虚拟机中安装lspci工具的具体步骤。 由于要测试
1、修改用户进程可打开文件数限制 在Linux平台上,无论编写客户端程序还是服务端程序,在进行高并发TCP连接处理时,最高的并发数量都要受到系统对用户单一进程同时可打开文件数量的限制(这是因为系统
目录 算术运算符 基本四则运算符 增量赋值运算符 自增/自减运算符 关系运算符 逻
如下所示: ? 1
MapperScannerConfigurer之sqlSessionFactory注入方式讲解 首先,Mybatis中的有一段配置非常方便,省去我们去写DaoImpl(Dao层实现类)的时间,这个
我是一名优秀的程序员,十分优秀!