- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我遇到了一个情况,不知道能不能解决。
我已经开始向我的多线程服务添加 TraceSource
和跟踪语句,但我在处理代码中的跟踪方法的线程中遇到了锁。这会导致整个应用挂起。
我的服务配置为在控制台窗口中运行以进行调试。我知道这与问题有关,因为我也在写信给 ConsoleTraceListener
。
这种锁定似乎发生在外部代码和对 Console.ReadKey()
的内部调用之间。作为代码和配置的示例,我的应用程序可能会在异步方法中进行如下调用:
class MyService : ServiceBase
{
static TraceSource trace = new TraceSource("mysource");
void asyncMethod1()
{
trace.TraceInformation("Some useful information.");
}
void asyncMethod2()
{
trace.TraceInformation("Some other useful information.");
}
/// other members and methods ...
}
TraceSource
在 app.config
文件中定义为
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<system.diagnostics>
<trace autoflush="true" indentsize="4" useGlobalLock="true" />
<sources>
<source name="mysource" switchName="TraceSwitch" switchType="System.Diagnostics.SourceSwitch">
<listeners>
<add name="console" />
<add name="eventlog" />
<add name="logfile" />
</listeners>
</source>
</sources>
<sharedListeners>
<add name="console" type="System.Diagnostics.ConsoleTraceListener" initializeData="false" />
<add name="eventlog" type="System.Diagnostics.EventLogTraceListener" initializeData="EventSource">
<filter type="System.Diagnostics.EventTypeFilter" initializeData="Error"/>
</add>
<add name="logfile" type="System.Diagnostics.TextWriterTraceListener" initializeData="logfiles\errors.log">
<filter type="System.Diagnostics.EventTypeFilter" initializeData="Error"/>
</add>
</sharedListeners>
<switches>
<add name="TraceSwitch" value="Information" />
</switches>
</system.diagnostics>
</configuration>
重现问题
应用启动后,Program.Main(args[])
中的代码等待 Console.ReadKey()
停止应用。
static int Main(string[] args)
{
/// ...
MyService service = new MyService();
service.StartService();
Console.WriteLine("Press any key to exit application.");
Console.ReadKey(true);
///...
}
当我在控制台中运行该服务并使用快速编辑模式在控制台窗口中的任意位置单击或选择鼠标时,TraceSource
方法调用会锁定应用程序的其余部分,直到我点击键也可以停止应用程序。
有什么方法可以防止此控制台线程锁定其他线程?还是我误解了这里发生的事情?
在我单击控制台窗口重现问题后,调用堆栈可能如下所示:
线程 1
[Managed to Native Transition]
System.IO.__ConsoleStream.WriteFileNative
System.IO.__ConsoleStream.Write
System.IO.StreamWriter.Flush
System.IO.StreamWriter.Write
System.IO.TextWriter.SyncTextWriter.Write
System.Diagnostics.TextWriterTraceListener.Write
System.Diagnostics.TraceListener.WriteHeader
System.Diagnostics.TraceListener.TraceEvent
System.Diagnostics.TraceSource.TraceEvent
System.Diagnostics.TraceSource.TraceInformation
myservice.MyService.asyncMethod1 Line 202 C#
线程 2
System.Threading.Monitor.Enter
System.Diagnostics.TraceSource.TraceEvent
System.Diagnostics.TraceSource.TraceInformation
myservice.MyService.asyncMethod2 Line 134 C#
最佳答案
运算符(operator):
When I run the service in console, and click with the mouse anywhere in the console window, the TraceSource method calls lock up the rest of the application, until I hit a key which also stops the application.
Would you try turning on quickedit in your console, and use the mouse to highlight some characters?
根据我们在上述问题下方的对话,它似乎挂起的原因是在 QuickEdit 模式/突出显示文本期间,所有线程的控制台输出都被挂起。这已在 Visual Studio 调试器中得到确认。
要继续执行,请按 Esc 或单击鼠标右键。
运算符(operator):
I was wondering do you know if there was a way to prevent this behaviour
是的,Jim Mishel 写道:
If you want to disable quick edit mode, you need to call GetConsoleMode to get the current mode. Then clear the bit that enables quick edit
您可以找到更多关于 Jim's answer here 的信息.
关于c# - 控制台锁定在 TraceSource 方法中的线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35261901/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!