[asterisk-commits] rizzo: trunk r94817 - in /trunk/channels: console_gui.c console_video.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Dec 26 16:29:45 CST 2007


Author: rizzo
Date: Wed Dec 26 16:29:45 2007
New Revision: 94817

URL: http://svn.digium.com/view/asterisk?view=rev&rev=94817
Log:
another bunch of gui localizations

Modified:
    trunk/channels/console_gui.c
    trunk/channels/console_video.c

Modified: trunk/channels/console_gui.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/console_gui.c?view=diff&rev=94817&r1=94816&r2=94817
==============================================================================
--- trunk/channels/console_gui.c (original)
+++ trunk/channels/console_gui.c Wed Dec 26 16:29:45 2007
@@ -57,12 +57,16 @@
 	struct display_window   win[WIN_MAX];
 };
 
-static void cleanup_sdl(struct video_desc *env)  
+/*! \brief free the resources in struct gui_info and the descriptor itself.
+ *  Return NULL so we can assign the value back to the descriptor in case.
+ */
+static struct gui_info *cleanup_sdl(struct gui_info *gui)
 {
 	int i;
-	struct gui_info *gui = env->gui;
-
-    if (gui) {
+
+	if (gui == NULL)
+		return NULL;
+
 #ifdef HAVE_SDL_TTF
 	/* unload font file */ 
 	if (gui->font) {
@@ -77,20 +81,18 @@
 	if (gui->keypad)
 		SDL_FreeSurface(gui->keypad);
 	gui->keypad = NULL;
+	if (gui->kp)
+		ast_free(gui->kp);
 
 	/* uninitialize the SDL environment */
 	for (i = 0; i < WIN_MAX; i++) {
 		if (gui->win[i].bmp)
 			SDL_FreeYUVOverlay(gui->win[i].bmp);
 	}
-	bzero(gui->win, sizeof(gui->win));
-	/* XXX free the keys entries */
-	gui->screen = NULL; /* XXX check reference */
-	ast_mutex_destroy(&(env->in.dec_in_lock));
+	bzero(gui, sizeof(gui));
 	ast_free(gui);
-	env->gui = NULL;
-    }
 	SDL_Quit();
+	return NULL;
 }
 
 /*
@@ -150,7 +152,7 @@
  * GUI layout, structure and management
  *
 
-For the GUI we use SDL to create a large surface (env->screen)
+For the GUI we use SDL to create a large surface (gui->screen)
 containing tree sections: remote video on the left, local video
 on the right, and the keypad with all controls and text windows
 in the center.
@@ -442,7 +444,7 @@
 		break;
 
 	case KEY_GUI_CLOSE:
-		cleanup_sdl(env);
+		env->gui = cleanup_sdl(env->gui);
 		break;
 	case KEY_DIGIT_BACKGROUND:
 		break;
@@ -657,16 +659,16 @@
 
 static int keypad_cfg_read(struct gui_info *gui, const char *val);
 
-static void keypad_setup(struct video_desc *env)
+static void keypad_setup(struct gui_info *gui, const char *kp_file)
 {
 	int fd = -1;
 	void *p = NULL;
 	off_t l = 0;
 
-	if (env->gui->keypad)
+	if (gui->keypad)
 		return;
-	env->gui->keypad = get_keypad(env->keypad_file);
-	if (!env->gui->keypad)
+	gui->keypad = get_keypad(kp_file);
+	if (!gui->keypad)
 		return;
 
 	/*
@@ -683,26 +685,26 @@
 		int reg_len = strlen(region);
 		const unsigned char *s, *e;
 
-		fd = open(env->keypad_file, O_RDONLY);
+		fd = open(kp_file, O_RDONLY);
 		if (fd < 0) {
-			ast_log(LOG_WARNING, "fail to open %s\n", env->keypad_file);
+			ast_log(LOG_WARNING, "fail to open %s\n", kp_file);
 			break;
 		}
 		l = lseek(fd, 0, SEEK_END);
 		if (l <= 0) {
-			ast_log(LOG_WARNING, "fail to lseek %s\n", env->keypad_file);
+			ast_log(LOG_WARNING, "fail to lseek %s\n", kp_file);
 			break;
 		}
 		p = mmap(NULL, l, PROT_READ, 0, fd, 0);
 		if (p == NULL) {
-			ast_log(LOG_WARNING, "fail to mmap %s size %ld\n", env->keypad_file, (long)l);
+			ast_log(LOG_WARNING, "fail to mmap %s size %ld\n", kp_file, (long)l);
 			break;
 		}
 		e = (const unsigned char *)p + l;
 		for (s = p; s < e - 20 ; s++) {
 			if (!memcmp(s, region, reg_len)) { /* keyword found */
 				/* reset previous entries */
-				keypad_cfg_read(env->gui, "reset");
+				keypad_cfg_read(gui, "reset");
 				break;
 			}
 		}
@@ -723,7 +725,7 @@
 				break;
 			if (*s1 == '>')	/* skip => */
 				s1++;
-			keypad_cfg_read(env->gui, ast_skip_blanks(s1));
+			keypad_cfg_read(gui, ast_skip_blanks(s1));
 			/* now wait for a newline */
 			s1 = s;
 			while (s1 < e - 20 && !index("\r\n", *s1) && *s1 < 128)
@@ -767,7 +769,7 @@
 	ast_log(LOG_WARNING, "gui_init returned %p\n", env->gui);
 	if (!env->gui)
 		goto no_sdl;
-	keypad_setup(env);
+	keypad_setup(env->gui, env->keypad_file);
 	ast_log(LOG_WARNING, "keypad_setup returned %p %d\n",
 		env->gui->keypad, env->gui->kp_used);
 	if (env->gui->keypad) {
@@ -812,7 +814,7 @@
 
 no_sdl:
 	if (!sdl_ok)	/* free resources in case of errors */
-		cleanup_sdl(env);
+		env->gui = cleanup_sdl(env->gui);
 }
 
 /*
@@ -964,6 +966,6 @@
 	if (gui->kp_size == gui->kp_used)
 		return 0;
 	gui->kp[gui->kp_used++] = e;
-	ast_log(LOG_WARNING, "now %d regions\n", gui->kp_used);
+	// ast_log(LOG_WARNING, "now %d regions\n", gui->kp_used);
 	return 1;
 }

Modified: trunk/channels/console_video.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/console_video.c?view=diff&rev=94817&r1=94816&r2=94817
==============================================================================
--- trunk/channels/console_video.c (original)
+++ trunk/channels/console_video.c Wed Dec 26 16:29:45 2007
@@ -1190,7 +1190,7 @@
 	video_out_uninit(&env->out);
 
 	if (env->gui)
-		cleanup_sdl(env);
+		env->gui = cleanup_sdl(env->gui);
 	ast_mutex_destroy(&(env->in.dec_in_lock));
 	env->shutdown = 0;
 	return NULL;




More information about the asterisk-commits mailing list