PJLIB 라 이브 러 리 기본 프레임 워 크 - 데이터 구조의 순환 링크 사용

1507 단어
#include <stdio.h>
#include <pjlib.h>
#include <pj/types.h> // for pj_init.

#define THIS_FILE "main.c"

typedef struct MY_NODE
{
	// This must be the first member declared in the struct!
	PJ_DECL_LIST_MEMBER(struct MY_NODE);
	int val;
} MY_NODE;

/*
      
*/
void list_test(void);

/*
        
*/
void list_print(pj_list_type* node);


int main(int argc, char** argv)
{
	pj_status_t status;

	// pjlib    
	status = pj_init();
	if (status != PJ_SUCCESS)
	{
		char errmsg[PJ_ERR_MSG_SIZE];
		pj_strerror(status, errmsg, sizeof(errmsg));
		PJ_LOG(1,(THIS_FILE, "%s: %s [status=%d]", pj_init, errmsg, status));
		return -1;
	}

	//       
	list_test();

	// pjlib   
	pj_shutdown();

	return 0;
}

/*
      
*/
void list_test(void)
{
	int i;
	MY_NODE list;
	MY_NODE array[10];

	//         
	pj_list_init(&list);

	//        
	for (i=0; i<10; ++i)
	{
		array[i].val = i;
		pj_list_insert_before(&list, &array[i]);
	}	

	//         
	list_print(&list);

	//         
	for (i=0; i<10; ++i)
	{
		pj_list_erase(&array[i]);
	}	

	//         
	list_print(&list);

	//         
	pj_assert(pj_list_empty(&list));

}

/*
        
*/
void list_print(pj_list_type* node)
{
	int i;
	MY_NODE *it;
	MY_NODE *head;	

	head = it = (MY_NODE *)node;

	if (it != NULL)
	{
		it = it->next;
		for (i=0; it != head; ++i)
		{
			PJ_LOG(3, (THIS_FILE, "node[%d] = %d", i, it->val));
			it = it->next;
		}
	}	
}

좋은 웹페이지 즐겨찾기