Most basic event action manager.
2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
36 using System.Threading;
40 class Client : CecCallbackMethods
43 /// Provide direct access to CEC library
45 public LibCecSharp Lib
56 public int LogLevel = (int)CecLogLevel.Notice;
61 public bool FilterOutPollLogs = true;
66 private LibCecSharp iLib;
70 private LibCECConfiguration Config;
75 private bool iConnected;
80 /// <param name="aDeviceName"></param>
81 /// <param name="aHdmiPort"></param>
82 public Client(string aDeviceName, byte aHdmiPort, CecDeviceType aDeviceType = CecDeviceType.PlaybackDevice)
84 Config = new LibCECConfiguration();
85 Config.DeviceTypes.Types[0] = aDeviceType;
86 Config.DeviceName = aDeviceName;
87 Config.HDMIPort = aHdmiPort;
88 //Config.ClientVersion = LibCECConfiguration.CurrentVersion;
89 Config.SetCallbacks(this);
91 iLib = new LibCecSharp(Config);
92 iLib.InitVideoStandalone();
94 //Console.WriteLine("CEC Parser created - libCEC version " + Lib.VersionToString(Config.ServerVersion));
95 Console.WriteLine("CEC Parser created - libCEC version " + Config.ServerVersion);
102 /// <param name="alert"></param>
103 /// <param name="data"></param>
104 /// <returns></returns>
105 public override int ReceiveAlert(CecAlert alert, CecParameter data)
107 string log = "CEC alert: " + alert.ToString();
108 if (data != null && data.Type == CecParameterType.ParameterTypeString)
110 log += " " + data.Data;
113 Console.WriteLine(log);
124 /// <param name="newVal"></param>
125 /// <returns></returns>
126 public override int ReceiveMenuStateChange(CecMenuState newVal)
128 Console.WriteLine("CEC menu state changed to: " + iLib.ToString(newVal));
135 /// <param name="logicalAddress"></param>
136 /// <param name="activated"></param>
137 public override void SourceActivated(CecLogicalAddress logicalAddress, bool activated)
139 Console.WriteLine("CEC source activated: " + iLib.ToString(logicalAddress) + "/" + activated.ToString() );
143 public override int ReceiveCommand(CecCommand command)
145 Console.WriteLine(string.Format("CEC command '{5}' from {0} to {1} - Ack: {2} Eom: {3} OpcodeSet: {4} Timeout: {6}",
146 iLib.ToString(command.Initiator),
147 iLib.ToString(command.Destination),
148 command.Ack.ToString(),
149 command.Eom.ToString(),
150 command.OpcodeSet.ToString(),
151 iLib.ToString(command.Opcode),
152 command.TransmitTimeout.ToString()
157 public override int ReceiveKeypress(CecKeypress key)
159 Console.WriteLine(string.Format("CEC keypress: {0} Duration:{1} Empty: {2}",
160 key.Keycode.ToString(), key.Duration.ToString(), key.Empty.ToString()));
164 public override int ReceiveLogMessage(CecLogMessage message)
166 if (((int)message.Level & LogLevel) == (int)message.Level)
168 string strLevel = "";
169 switch (message.Level)
171 case CecLogLevel.Error:
172 strLevel = "ERROR: ";
174 case CecLogLevel.Warning:
175 strLevel = "WARNING: ";
177 case CecLogLevel.Notice:
178 strLevel = "NOTICE: ";
180 case CecLogLevel.Traffic:
181 strLevel = "TRAFFIC: ";
183 case CecLogLevel.Debug:
184 strLevel = "DEBUG: ";
185 if (message.Message.IndexOf("POLL") != -1 && FilterOutPollLogs)
187 //We have an option to prevent spamming with poll debug logs
194 string strLog = string.Format("{0} {1} {2}", strLevel, message.Time, message.Message);
195 Console.WriteLine(strLog);
204 /// <param name="timeout"></param>
205 /// <returns></returns>
206 public bool Connect(int timeout)
209 CecAdapter[] adapters = iLib.FindAdapters(string.Empty);
210 if (adapters.Length > 0)
212 Connect(adapters[0].ComPort, timeout);
216 Console.WriteLine("CEC did not find any adapters");
222 public bool Connect(string port, int timeout)
225 iConnected = iLib.Open(port, timeout);
241 public void TestSendKey()
243 //SetupMenu: opens option menu
244 //RootMenu: opens Android home menu
248 //Philips TopMenu = 16
249 //Philips PopupMenu = 17
251 //bool res = iLib.SendKeypress(CecLogicalAddress.Tv, CecUserControlCode.DisplayInformation, true);
252 //Thread.Sleep(3000); //Wait few seconds for menu to open
253 //res = iLib.SendKeypress(CecLogicalAddress.Tv, CecUserControlCode.SetupMenu, true);
255 for (int i = 0; i < 256; i++)
258 //res = iLib.SendKeyRelease(CecLogicalAddress.Tv, true);
260 switch ((CecUserControlCode)i)
262 case CecUserControlCode.Power:
263 case CecUserControlCode.PowerOffFunction:
264 case CecUserControlCode.PowerOnFunction:
265 case CecUserControlCode.PowerToggleFunction:
266 case CecUserControlCode.ElectronicProgramGuide:
267 case CecUserControlCode.InputSelect:
268 case CecUserControlCode.RootMenu:
273 Console.WriteLine(i.ToString());
275 iLib.SendKeypress(CecLogicalAddress.Tv, (CecUserControlCode)i, true);
285 for (int i=0;i<7;i++)
288 //res = iLib.SendKeyRelease(CecLogicalAddress.Tv, true);
290 //res = iLib.SendKeypress(CecLogicalAddress.Tv, CecUserControlCode.Down, true);
294 //res = iLib.SendKeypress(CecLogicalAddress.Tv, CecUserControlCode.Select, true);
296 //res = iLib.SendKeypress(CecLogicalAddress.Tv, CecUserControlCode.Select, true);
297 //res = iLib.SendKeyRelease(CecLogicalAddress.Tv, true);
306 scanRes += "CEC bus information\n";
307 scanRes += "===================\n";
308 CecLogicalAddresses addresses = Lib.GetActiveDevices();
309 for (int iPtr = 0; iPtr < addresses.Addresses.Length; iPtr++)
311 CecLogicalAddress address = (CecLogicalAddress) iPtr;
312 if (!addresses.IsSet(address))
315 CecVendorId iVendorId = Lib.GetDeviceVendorId(address);
316 bool bActive = Lib.IsActiveDevice(address);
317 ushort iPhysicalAddress = Lib.GetDevicePhysicalAddress(address);
318 string strAddr = Lib.PhysicalAddressToString(iPhysicalAddress);
319 CecVersion iCecVersion = Lib.GetDeviceCecVersion(address);
320 CecPowerStatus power = Lib.GetDevicePowerStatus(address);
321 string osdName = Lib.GetDeviceOSDName(address);
322 string lang = Lib.GetDeviceMenuLanguage(address);
324 scanRes += "device #" + iPtr + ": " + Lib.ToString(address) + "\n";
325 scanRes += "address: " + strAddr + "\n";
326 scanRes += "active source: " + (bActive ? "yes" : "no") + "\n";
327 scanRes += "vendor: " + Lib.ToString(iVendorId) + "\n";
328 scanRes += "osd string: " + osdName + "\n";
329 scanRes += "CEC version: " + Lib.ToString(iCecVersion) + "\n";
330 scanRes += "power status: " + Lib.ToString(power) + "\n";
331 if (!string.IsNullOrEmpty(lang))
332 scanRes += "language: " + lang + "\n";
333 scanRes += "===================" + "\n";
336 Console.Write(scanRes);
339 public void ListAdapters()
342 foreach (CecAdapter adapter in iLib.FindAdapters(string.Empty))
344 Console.WriteLine("Adapter: " + iAdapter++);
345 Console.WriteLine("Path: " + adapter.Path);
346 Console.WriteLine("Com port: " + adapter.ComPort);
350 void ShowConsoleHelp()
353 "================================================================================" + Environment.NewLine +
354 "Available commands:" + Environment.NewLine +
355 Environment.NewLine +
356 "[tx] {bytes} transfer bytes over the CEC line." + Environment.NewLine +
357 "[txn] {bytes} transfer bytes but don't wait for transmission ACK." + Environment.NewLine +
358 "[on] {address} power on the device with the given logical address." + Environment.NewLine +
359 "[standby] {address} put the device with the given address in standby mode." + Environment.NewLine +
360 "[la] {logical_address} change the logical address of the CEC adapter." + Environment.NewLine +
361 "[pa] {physical_address} change the physical address of the CEC adapter." + Environment.NewLine +
362 "[osd] {addr} {string} set OSD message on the specified device." + Environment.NewLine +
363 "[ver] {addr} get the CEC version of the specified device." + Environment.NewLine +
364 "[ven] {addr} get the vendor ID of the specified device." + Environment.NewLine +
365 "[lang] {addr} get the menu language of the specified device." + Environment.NewLine +
366 "[pow] {addr} get the power status of the specified device." + Environment.NewLine +
367 "[poll] {addr} poll the specified device." + Environment.NewLine +
368 "[scan] scan the CEC bus and display device info" + Environment.NewLine +
369 "[mon] {1|0} enable or disable CEC bus monitoring." + Environment.NewLine +
370 "[log] {1 - 31} change the log level. see cectypes.h for values." + Environment.NewLine +
371 "[ping] send a ping command to the CEC adapter." + Environment.NewLine +
372 "[bl] to let the adapter enter the bootloader, to upgrade" + Environment.NewLine +
373 " the flash rom." + Environment.NewLine +
374 "[r] reconnect to the CEC adapter." + Environment.NewLine +
375 "[h] or [help] show this help." + Environment.NewLine +
376 "[q] or [quit] to quit the CEC test client and switch off all" + Environment.NewLine +
377 " connected CEC devices." + Environment.NewLine +
378 "================================================================================");
381 public void MainLoop()
383 bool bContinue = true;
387 Console.WriteLine("waiting for input");
389 command = Console.ReadLine();
390 if (command != null && command.Length == 0)
392 string[] splitCommand = command.Split(' ');
393 if (splitCommand[0] == "tx" || splitCommand[0] == "txn")
395 CecCommand bytes = new CecCommand();
396 for (int iPtr = 1; iPtr < splitCommand.Length; iPtr++)
398 bytes.PushBack(byte.Parse(splitCommand[iPtr], System.Globalization.NumberStyles.HexNumber));
401 if (command == "txn")
402 bytes.TransmitTimeout = 0;
404 iLib.Transmit(bytes);
406 else if (splitCommand[0] == "on")
408 if (splitCommand.Length > 1)
409 iLib.PowerOnDevices((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
411 iLib.PowerOnDevices(CecLogicalAddress.Broadcast);
413 else if (splitCommand[0] == "standby")
415 if (splitCommand.Length > 1)
416 iLib.StandbyDevices((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
418 iLib.StandbyDevices(CecLogicalAddress.Broadcast);
420 else if (splitCommand[0] == "poll")
423 if (splitCommand.Length > 1)
424 bSent = iLib.PollDevice((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
426 bSent = iLib.PollDevice(CecLogicalAddress.Broadcast);
428 Console.WriteLine("POLL message sent");
430 Console.WriteLine("POLL message not sent");
432 else if (splitCommand[0] == "la")
434 if (splitCommand.Length > 1)
435 iLib.SetLogicalAddress((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
437 else if (splitCommand[0] == "pa")
439 if (splitCommand.Length > 1)
440 iLib.SetPhysicalAddress(ushort.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
442 else if (splitCommand[0] == "osd")
444 if (splitCommand.Length > 2)
446 StringBuilder osdString = new StringBuilder();
447 for (int iPtr = 1; iPtr < splitCommand.Length; iPtr++)
449 osdString.Append(splitCommand[iPtr]);
450 if (iPtr != splitCommand.Length - 1)
451 osdString.Append(" ");
453 iLib.SetOSDString((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber), CecDisplayControl.DisplayForDefaultTime, osdString.ToString());
456 else if (splitCommand[0] == "ping")
460 else if (splitCommand[0] == "mon")
462 bool enable = splitCommand.Length > 1 ? splitCommand[1] == "1" : false;
463 iLib.SwitchMonitoring(enable);
465 else if (splitCommand[0] == "bl")
467 iLib.StartBootloader();
469 else if (splitCommand[0] == "lang")
471 if (splitCommand.Length > 1)
473 string language = iLib.GetDeviceMenuLanguage((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
474 Console.WriteLine("Menu language: " + language);
477 else if (splitCommand[0] == "ven")
479 if (splitCommand.Length > 1)
481 CecVendorId vendor = iLib.GetDeviceVendorId((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
482 Console.WriteLine("Vendor ID: " + iLib.ToString(vendor));
485 else if (splitCommand[0] == "ver")
487 if (splitCommand.Length > 1)
489 CecVersion version = iLib.GetDeviceCecVersion((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
490 Console.WriteLine("CEC version: " + iLib.ToString(version));
493 else if (splitCommand[0] == "pow")
495 if (splitCommand.Length > 1)
497 CecPowerStatus power = iLib.GetDevicePowerStatus((CecLogicalAddress)byte.Parse(splitCommand[1], System.Globalization.NumberStyles.HexNumber));
498 Console.WriteLine("power status: " + iLib.ToString(power));
501 else if (splitCommand[0] == "r")
503 Console.WriteLine("closing the connection");
506 Console.WriteLine("opening a new connection");
509 Console.WriteLine("setting active source");
510 iLib.SetActiveSource(CecDeviceType.PlaybackDevice);
512 else if (splitCommand[0] == "scan")
514 StringBuilder output = new StringBuilder();
515 output.AppendLine("CEC bus information");
516 output.AppendLine("===================");
517 CecLogicalAddresses addresses = iLib.GetActiveDevices();
518 for (int iPtr = 0; iPtr < addresses.Addresses.Length; iPtr++)
520 CecLogicalAddress address = (CecLogicalAddress)iPtr;
521 if (!addresses.IsSet(address))
524 CecVendorId iVendorId = iLib.GetDeviceVendorId(address);
525 bool bActive = iLib.IsActiveDevice(address);
526 ushort iPhysicalAddress = iLib.GetDevicePhysicalAddress(address);
527 string strAddr = "todo: fixme"; //Lib.PhysicalAddressToString(iPhysicalAddress);
528 CecVersion iCecVersion = iLib.GetDeviceCecVersion(address);
529 CecPowerStatus power = iLib.GetDevicePowerStatus(address);
530 string osdName = iLib.GetDeviceOSDName(address);
531 string lang = iLib.GetDeviceMenuLanguage(address);
533 output.AppendLine("device #" + iPtr + ": " + iLib.ToString(address));
534 output.AppendLine("address: " + strAddr);
535 output.AppendLine("active source: " + (bActive ? "yes" : "no"));
536 output.AppendLine("vendor: " + iLib.ToString(iVendorId));
537 output.AppendLine("osd string: " + osdName);
538 output.AppendLine("CEC version: " + iLib.ToString(iCecVersion));
539 output.AppendLine("power status: " + iLib.ToString(power));
540 if (!string.IsNullOrEmpty(lang))
541 output.AppendLine("language: " + lang);
542 output.AppendLine("");
544 Console.WriteLine(output.ToString());
546 else if (splitCommand[0] == "h" || splitCommand[0] == "help")
548 else if (splitCommand[0] == "q" || splitCommand[0] == "quit")
550 else if (splitCommand[0] == "log" && splitCommand.Length > 1)
551 LogLevel = int.Parse(splitCommand[1]);