ResourceCulture.cs 14.8 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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
using OnlineStore.Common;
using OnlineStore.DeviceLibrary;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Resources;
using System.Text;
using System.Threading;
using System.Threading.Tasks; 
namespace OnlineStore.AutoInOutStore
{
    public class ResourceCulture
    {
        public static bool ShowLog = true  ;
        public static string China = "zh-CN";
        public static string English = "en-US";
        public static string German = "ge-DE";
        public static string Japanese = "ja-JP"; 
        private static ResourceManager rm = null;

        public static string CurrLanguage = "zh-CN";
         
        public static Dictionary<string, string> defaultMap = new Dictionary<string, string>();
        /// <summary>
        /// Set current culture by name
        /// </summary>
        /// <param name="name">name</param>
        public static void SetCurrentCulture(string name)
        {
            CodeLibrary.CodeResourceControl.OpenResourceLog = ShowLog;
            ResourceControl.GetStrEvent += GetString;
            ResourceControl.GetStringEvent += GetString;
            ResourceControl.GetStringByLanEvent += GetStringByLan;
            CodeLibrary.CodeResourceControl.GetLanguageEvent += CodeResourceControl_GetLanguageEvent;
            CSVResourceControl.GetStrEvent += GetString;
            CSVResourceControl.GetStringEvent += GetString;
            if (string.IsNullOrEmpty(name))
            {
                name = "en-US";
            }
            CurrLanguage = name;
            Thread.CurrentThread.CurrentCulture = new CultureInfo(name);
        }
        public static void LoaAllRes()
        {
            if (rm == null)
            {
                rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
            }
            //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
            Dictionary<string, string> chinaMap = GetRMap(China);
            Dictionary<string, string> englishMap = GetRMap(English);
            List<string> resulList = new List<string>();
            foreach(string key in chinaMap.Keys)
            {
                string china = chinaMap[key];
                string  english = "";
                englishMap.TryGetValue(key, out english);
                if (String.IsNullOrEmpty(english))
                {
                    english = "";
                }
                resulList.Add(key + "," + china.Replace(',', '&') + "," + english.Replace(',', '&')); 
            }
            File.WriteAllLines("D:\\storeResource.csv", resulList.ToArray());

        }
        private  static  Dictionary<string ,string > GetRMap(string lan)
        {
            Dictionary<string, string> chinaMap = new Dictionary<string, string>();
            CultureInfo ci = new CultureInfo(lan);
            ResourceSet resourceSet = rm.GetResourceSet(ci, true, true);
            IDictionaryEnumerator dictNumerator = resourceSet.GetEnumerator();
            // Get all string resources
            while (dictNumerator.MoveNext())
            {
                // Only string resources
                if (dictNumerator.Value is string)
                {
                    var key = (string)dictNumerator.Key;
                    var value = (string)dictNumerator.Value;
                    // yield return new KeyValuePair<string, string>(key, value);
                    if (!chinaMap.ContainsKey(key))
                    {
                        chinaMap.Add(key, value);
                    }
                }
            }
            return chinaMap;
        }
        private static string CodeResourceControl_GetLanguageEvent()
        {
            return CurrLanguage;
        }

        private static  Assembly assembly = Assembly.GetExecutingAssembly();
        public static string GetString(string id)
        {
            return GetString(id, id);
        }
        public static string GetString(string id, string defaultStr)
        {
            string strCurLanguage = "";

            try
            {
                if (rm == null)
                {
                    rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
                }
                //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
                CultureInfo ci = new CultureInfo(CurrLanguage);
                strCurLanguage = rm.GetString(id, ci).Trim(); 
                if (strCurLanguage.Equals("") && (!defaultStr.Equals("")))
                {
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
              
            }
            catch (Exception ex)
            {
                if (defaultStr.Equals(""))
                {
                }
                else
                {
                    strCurLanguage = "No id:[" + id + "], please add.";
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            return strCurLanguage;
        }
        private static string GetStringByLan(string language, string id, string defaultStr, params object[] param)
        {
            string strCurLanguage = "";

            try
            {
                if (rm == null)
                {
                    rm = new ResourceManager("OnlineStore.AutoInOutStore.Properties.Resource", assembly);
                }
                //CultureInfo ci = Thread.CurrentThread.CurrentCulture;
                CultureInfo ci = new CultureInfo(language);
                strCurLanguage = rm.GetString(id, ci).Trim();
                if (strCurLanguage.Equals("") && (!defaultStr.Equals("")))
                {
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            catch (Exception ex)
            {
                if (defaultStr.Equals(""))
                {
                }
                else
                {
                    strCurLanguage = "No id:[" + id + "], please add.";
                    strCurLanguage = defaultStr;
                    NoIdLog(id, defaultStr);
                }
            }
            return String.Format(strCurLanguage, param);
        }

        public static string GetString(string id, string defaultStr, params object[] param)
        {
            return GetStringByLan(CurrLanguage, id, defaultStr, param);
        }
        

        private static void NoIdLog(string id, string defaultStr)
        {
            if (ShowLog)
            {
                LogUtil.info("No id:[" + id + "], please add,use default string :" + defaultStr);
                if (!defaultMap.ContainsKey(id))
                {
                    defaultMap.Add(id, defaultStr);
                }
            }
        }
        public static void LogDefaultMap()
        {
            LogUtil.info("开始打印缺少的文字配置" + defaultMap.Count);
            foreach (string key in defaultMap.Keys)
            {
                string value = defaultMap[key];
                LogUtil.info("     缺少文字配置[" + key + "]     默认值[" + value + "]");
            } 
            LogUtil.info("结束打印缺少的文字配置");
        }
        private static  string spiltStr = "_";
        private static string Text = "Text";
        public static string GetIdStr(string className, string controlName, string propertyName)
        {
            return className + spiltStr + controlName + spiltStr + propertyName;
        }
        public static string GetIdStr(string className, string propertyName)
        {
            return className + spiltStr + propertyName;
        }
        public static string GetTextIdStr(string className, string controlName )
        {
            return className + spiltStr + controlName + spiltStr + Text;
        }
        public static string GetTextIdStr(string className )
        {
            return className + spiltStr + Text;
        }
        /// <summary>
        /// 保存成功!
        /// </summary>
        public static string SaveOk = "SaveOk";
        /// <summary>
        /// 提示
        /// </summary>
        public static string MsgTitle = "MsgTitle";
        /// <summary>
        /// 打开串口失败
        /// </summary>
        public static string OpenComFail = "OpenComFail";

         
        /// <summary>
        /// 请先启动料仓
        /// </summary>
        public static string PleaseStartStore = "PleaseStartStore";
        /// <summary>
        /// 定位气缸不在下降端,不能移动进出轴
        /// </summary>
        public static string CannotMove = "CannotMove";
        /// <summary>
        /// 警告
        /// </summary>
        public static string WarnMsg = "WarnMsg";
        /// <summary>
        /// 保存失败
        /// </summary>
        public static string SaveError = "SaveError";
        /// <summary>
        /// 无报警,无出入库或者重置操作时,才可以回待机点
        /// </summary>
        public static string CanotReset = "CanotReset";
        /// <summary>
        /// 请先输入正确的速度
        /// </summary>
        public static string PWSpeed = "PWSpeed";
        /// <summary>
        /// 是否确定退出
        /// </summary>
        public static string SureExit = "SureExit";
        /// <summary>
        /// AutoOut 自动出库:
        /// </summary>
        public static string AutoOut = "AutoOut";
        /// <summary>
        /// AutoIn 自动入库:
        /// </summary>
        public static string AutoIn = "AutoIn";
        /// <summary>
        /// AutoEnd 自动出入库结束
        /// </summary>
        public static string AutoEnd = "AutoEnd";

 
        /// <summary>
        /// 前门未关
        /// </summary>
        public static string DoorHasOpen = "DoorHasOpen";
        /// <summary>
        /// 叉子料盘检测有料,请检查
        /// </summary>
        public static string HasWare = "HasWare";
        /// <summary>
        /// 开始自动出入库
        /// </summary>
        public static string StartAuto = "StartAuto";
        /// <summary>
        /// 停止自动出入库
        /// </summary>
        public static string StopAuto = "StopAuto";
        /// <summary>
        /// 等待启动
        /// </summary>
        public static string WaitStart = "WaitStart";
        ///// <summary>
        /////  
        ///// </summary>
        //public static string AutoEnd = "AutoEnd";

        /// <summary>      
        /// 此设备不支持单个入库	 
        ///  </summary>  
        public static string  	CanotSingleInStore	= "CanotSingleInStore";
        /// <summary>    
        ///叉子不在待机位,请先将叉子退回待机位	 
        /// </summary> 
        public static string  	InoutNotOk	= "InoutNotOk";
        /// <summary>    
        ///警告(叉子在待机位时,才能移动升降轴和旋转轴)
        /// </summary>
        public static string  	InoutWarn	= "InoutWarn";
        /// <summary>     
        ///无报警,无出入库或者重置操作时,才可以回待机点	 
        /// </summary>
        public static string  	CanotBack	= "CanotBack";
        /// <summary>   
        ///请先关闭批量上下料门	 
        /// </summary> 
        public static string          PCloseDoor	= "PCloseDoor";
        /// <summary>   
        ///请输入正确的密码	 
        /// </summary>  
        public static string  	PWPwd	= "PWPwd";
        /// <summary>      
        ///忙碌中,无法打开门锁	 
        /// </summary>  
        public static string  	CnotOpen	= "CnotOpen";
        /// <summary>     
        ///批量入库失败:请先关闭上料机构	
        /// </summary>  
        public static string  	batchInError	= "batchInError";
        /// <summary>     
        ///批量入库失败:叉子料盘检测有料,请检查后再入库	 
        /// </summary> 
        public static string  	batchInError2	= "batchInError2";
        /// <summary>   
        ///取出料盘失败:无料盘可取	 
        /// </summary>  
        public static string  	GetError	= "GetError";
        /// <summary>     
        ///取出料盘失败:忙碌中,无法打开门锁	  
        /// </summary>  
        public static string  	GetError2	= "GetError2";
        /// <summary>      
        ///锁门失败:请先关闭上料机构
        /// </summary>  
        public static string  	CloseError	= "CloseError";
        /// <summary>     
        ///已确认料盘已手动拿出	 
        /// </summary> 
        public static string  	TakeTrayOut	= "TakeTrayOut";
        /// <summary>  
        ///未检测到气压信号	 
        /// </summary>  
        public static string  	NoAIr	= "NoAIr";
        /// <summary>    
        ///料盘高度	  
        /// </summary> 
        public static string  	trayHeight	= "trayHeight";
        /// <summary>   
        ///负限位	  
        /// </summary> 
        public static string  	FuLimit	= "FuLimit";
        /// <summary>   
        ///正限位	 
        /// </summary>  
        public static string  	ZhLimit	= "ZhLimit";
        /// <summary>  
        ///上料轴运动停止	 
        /// </summary> 
        public static string  	BatchStop	= "BatchStop";
        /// <summary>   
        ///扫码结束	 
        /// </summary>  public static string  	ScanOk	= "ScanOk";
        /// <summary>   
        ///操作人员拿走料盘	
        /// </summary>  
        public static string  	TakeTrayGo	= "TakeTrayGo";
        /// <summary>    
        ///等待送料结束	
        /// </summary>
        public static string  	WaitEnd	= "WaitEnd";
        /// <summary>    
        ///吸盘吸料失败	  
        /// </summary>  
        public static string  	XiLiaoError	= "XiLiaoError";

        /// <summary>    
        ///伺服OFF	  
        /// </summary>  
        public static string ServoOff = "ServoOff";
        /// <summary>    
        ///伺服ON	  
        /// </summary>  
        public static string servoON = "servoON";
        /// <summary>    
        ///仓门状态未知	  
        /// </summary>  
        public static string NoDoorStatus = "NoDoorStatus";
        /// <summary>    
        ///批量出入库信息:    入库:	  
        /// </summary>  
        public static string InstoreInfo = "InstoreInfo";
        /// <summary>    
        ///出库	  
        /// </summary>  
        public static string oustore = "oustore";
        /// <summary>    
        ///门锁关闭	  
        /// </summary>  
        public static string doorClose = "doorClose";
        /// <summary>    
        ///门锁打开	  
        /// </summary>  
        public static string doorOpen = "doorOpen";


        public static string StartCycle = "StartCycle";
        public static string StopCycle = "StopCycle";
    }
}