| 1 | /****************************************************************************** |
|---|
| 2 | * (c)2008-2009 Broadcom Corporation |
|---|
| 3 | * |
|---|
| 4 | * This program is the proprietary software of Broadcom Corporation and/or its licensors, |
|---|
| 5 | * and may only be used, duplicated, modified or distributed pursuant to the terms and |
|---|
| 6 | * conditions of a separate, written license agreement executed between you and Broadcom |
|---|
| 7 | * (an "Authorized License"). Except as set forth in an Authorized License, Broadcom grants |
|---|
| 8 | * no license (express or implied), right to use, or waiver of any kind with respect to the |
|---|
| 9 | * Software, and Broadcom expressly reserves all rights in and to the Software and all |
|---|
| 10 | * intellectual property rights therein. IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU |
|---|
| 11 | * HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY |
|---|
| 12 | * NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE. |
|---|
| 13 | * |
|---|
| 14 | * Except as expressly set forth in the Authorized License, |
|---|
| 15 | * |
|---|
| 16 | * 1. This program, including its structure, sequence and organization, constitutes the valuable trade |
|---|
| 17 | * secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof, |
|---|
| 18 | * and to use this information only in connection with your use of Broadcom integrated circuit products. |
|---|
| 19 | * |
|---|
| 20 | * 2. TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS" |
|---|
| 21 | * AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR |
|---|
| 22 | * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO |
|---|
| 23 | * THE SOFTWARE. BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES |
|---|
| 24 | * OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, |
|---|
| 25 | * LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION |
|---|
| 26 | * OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF |
|---|
| 27 | * USE OR PERFORMANCE OF THE SOFTWARE. |
|---|
| 28 | * |
|---|
| 29 | * 3. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS |
|---|
| 30 | * LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR |
|---|
| 31 | * EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR |
|---|
| 32 | * USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF |
|---|
| 33 | * THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT |
|---|
| 34 | * ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE |
|---|
| 35 | * LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF |
|---|
| 36 | * ANY LIMITED REMEDY. |
|---|
| 37 | * |
|---|
| 38 | * $brcm_Workfile: $ |
|---|
| 39 | * $brcm_Revision: $ |
|---|
| 40 | * $brcm_Date: $ |
|---|
| 41 | * |
|---|
| 42 | * Module Description: |
|---|
| 43 | * |
|---|
| 44 | * Utility to map languages from ISO639 language code to internal application language |
|---|
| 45 | * enumeration. |
|---|
| 46 | * |
|---|
| 47 | * Revision History: |
|---|
| 48 | * |
|---|
| 49 | * Created: 09/28/2009 by Jeff Fisher |
|---|
| 50 | * |
|---|
| 51 | * $brcm_Log: $ |
|---|
| 52 | * |
|---|
| 53 | * |
|---|
| 54 | *****************************************************************************/ |
|---|
| 55 | #include "iso_639_lang_map.h" |
|---|
| 56 | |
|---|
| 57 | typedef struct iso_lang_map_t |
|---|
| 58 | { |
|---|
| 59 | char iso_lang_code[3]; |
|---|
| 60 | bapp_lang_t lang; |
|---|
| 61 | }iso_lang_map_t; |
|---|
| 62 | |
|---|
| 63 | static const iso_lang_map_t s_iso_lang_map[] = |
|---|
| 64 | { |
|---|
| 65 | { { 'e','n','g'},eLANG_ENGLISH}, |
|---|
| 66 | { { 'f','r','a'},eLANG_FRENCH}, |
|---|
| 67 | { { 'f','r','e'},eLANG_FRENCH}, |
|---|
| 68 | { { 'e','s','l'},eLANG_SPANISH}, |
|---|
| 69 | { { 's','p','a'},eLANG_SPANISH} |
|---|
| 70 | }; |
|---|
| 71 | static const int s_iso_lang_map_num = sizeof(s_iso_lang_map)/sizeof(iso_lang_map_t); |
|---|
| 72 | /** |
|---|
| 73 | Summary: |
|---|
| 74 | Return bapp lang ENUM for given iso 639 language code or return eLANG_MAX on failure. |
|---|
| 75 | **/ |
|---|
| 76 | |
|---|
| 77 | |
|---|
| 78 | bapp_lang_t iso_639_to_lang(char *p_code) |
|---|
| 79 | { |
|---|
| 80 | int idx; |
|---|
| 81 | |
|---|
| 82 | for (idx = 0; idx < s_iso_lang_map_num; ++idx) |
|---|
| 83 | { |
|---|
| 84 | char *code = s_iso_lang_map[idx].iso_lang_code; |
|---|
| 85 | if ((p_code[0] == code[0]) && (p_code[1] == code[1]) && (p_code[2] ==code[2])) |
|---|
| 86 | { |
|---|
| 87 | return s_iso_lang_map[idx].lang; |
|---|
| 88 | } |
|---|
| 89 | } |
|---|
| 90 | return eLANG_MAX; |
|---|
| 91 | } |
|---|
| 92 | |
|---|