c# - 我的 session 状态序列化有问题

标签 c# serialization naudio

我使用此代码来序列化对象

public void play(string url, string i)
    {
      MP3StreamingPanel mp3=new MP3StreamingPanel ( );
      mp3.play ( url );
      HttpContext . Current . Session [ i ] = mp3;

然后当我想要获取它时,mp3 属性中的某些值仍然为“null”

  MP3StreamingPanel mp3=new MP3StreamingPanel ( );
  mp3 = HttpContext . Current . Session [ i ] as MP3StreamingPanel;

这是 MP3StreamingPanel 类

    [Serializable]
    public class MP3StreamingPanel 
        {

        enum StreamingPlaybackState
            {
            Stopped ,
            Playing ,
            Buffering ,
            Paused
            }




[NonSerialized]
public HttpWebRequest webRequest;
[NonSerialized]
public System.Timers.Timer timer1 = new System . Timers . Timer ( );
public SerializableVolumeWaveProvider16 volumeProvider;
delegate void ShowErrorDelegate ( string message );
public string gurl="";
public SerializableBufferedWaveProvider bufferedWaveProvider;
public SerializableWaveOut waveOut;
private  volatile StreamingPlaybackState playbackState;
public volatile bool fullyDownloaded;

public MP3StreamingPanel ( )
    {
    }

public void InitTimer ( )
    {
    timer1 . Elapsed += new ElapsedEventHandler ( timer1_Tick );
    timer1 . Interval = 250; // in miliseconds
    timer1 . Start ( );
    }
public void timer1_Tick ( object sender , ElapsedEventArgs e )
    {
    if ( playbackState != StreamingPlaybackState . Stopped )
        {
        if ( this . waveOut == null && this . bufferedWaveProvider != null )
            {
            Debug . WriteLine ( "Creating WaveOut Device" );
            this . waveOut = CreateWaveOut ( );
            waveOut . PlaybackStopped += waveOut_PlaybackStopped;
            this . volumeProvider = new SerializableVolumeWaveProvider16 ( `enter code here`bufferedWaveProvider );
            waveOut . Init ( volumeProvider );

            }
        else if ( bufferedWaveProvider != null )
            {
            var bufferedSeconds = bufferedWaveProvider . BufferedDuration . TotalSeconds;

            if ( bufferedSeconds < 0.5 && this . playbackState == StreamingPlaybackState . Playing && !this . fullyDownloaded )
                {
                this . playbackState = StreamingPlaybackState . Buffering;
                waveOut . Pause ( );
                Debug . WriteLine ( String . Format ( "Paused to buffer, waveOut.PlaybackState={0}" , waveOut . PlaybackState ) );
                }
            else if ( bufferedSeconds > 4 && this . playbackState == StreamingPlaybackState . Buffering )
                {
                waveOut . Play ( );
                Debug . WriteLine ( String . Format ( "Started playing, waveOut.PlaybackState={0}" , waveOut . PlaybackState ) );
                this . playbackState = StreamingPlaybackState . Playing;
                }
            else if ( this . fullyDownloaded && bufferedSeconds == 0 )
                {
                Debug . WriteLine ( "Reached end of stream" );
                stop ( );
                }
            }

        }
    }


public void StreamMP3 ( object state )
    {
    this . fullyDownloaded = false;
    string url = ( string ) state;
    webRequest = ( HttpWebRequest ) WebRequest . Create ( url );
    HttpWebResponse resp = null;
    try
        {
        resp = ( HttpWebResponse ) webRequest . GetResponse ( );
        }
    catch ( WebException e )
        {
        if ( e . Status != WebExceptionStatus . RequestCanceled )
            {
            Console.WriteLine ( e . Message );
            }
        return;
        }
    byte[] buffer = new byte [ 16384 * 4 ]; 

    IMp3FrameDecompressor decompressor = null;
    try
        {
        using ( var responseStream = resp . GetResponseStream ( ) )
            {
            var readFullyStream = new ReadFullyStream ( responseStream );
            do
                {
                if ( bufferedWaveProvider != null && bufferedWaveProvider . BufferLength - bufferedWaveProvider . BufferedBytes < bufferedWaveProvider . WaveFormat . AverageBytesPerSecond / 4 )
                    {
                    Debug . WriteLine ( "Buffer getting full, taking a break" );
                    Thread . Sleep ( 500 );
                    }
                else
                    {
                    Mp3Frame frame = null;
                    try
                        {
                        frame = Mp3Frame . LoadFromStream ( readFullyStream );
                        }
                    catch ( EndOfStreamException )
                        {
                        this . fullyDownloaded = true;

                        break;
                        }
                    catch ( WebException )
                        {

                        break;
                        }
                    if ( decompressor == null )
                        {
                        WaveFormat waveFormat = new Mp3WaveFormat ( frame . SampleRate , frame . ChannelMode == ChannelMode . Mono ? 1 : 2 , frame . FrameLength , frame . BitRate );
                        decompressor = new AcmMp3FrameDecompressor ( waveFormat );
                        this . bufferedWaveProvider = new SerializableBufferedWaveProvider ( decompressor . OutputFormat );
                        this . bufferedWaveProvider . BufferDuration = TimeSpan . FromSeconds ( 20 ); // allow us to get well ahead of ourselves
                        }
                    int decompressed = decompressor . DecompressFrame ( frame , buffer , 0 );
                     bufferedWaveProvider . AddSamples ( buffer , 0 , decompressed );
                    }

                } while ( playbackState != StreamingPlaybackState . Stopped );
            Debug . WriteLine ( "Exiting" );
            decompressor . Dispose ( );
            }
        }
    finally
        {
        if ( decompressor != null )
            {
            decompressor . Dispose ( );
            }
        }
    }

public void play ( string url )
    {
    if ( playbackState == StreamingPlaybackState . Stopped )
        {
            playbackState = StreamingPlaybackState . Buffering;
            this . bufferedWaveProvider = null;
            ThreadPool . QueueUserWorkItem ( new WaitCallback ( StreamMP3 ) , url );
            gurl = url;
            InitTimer ( );
            timer1 . Enabled = true;
        }
    else if ( playbackState == StreamingPlaybackState . Paused )
        {
             playbackState = StreamingPlaybackState . Buffering;
        }
    }

public void stop ( )
    {

    if ( playbackState != StreamingPlaybackState . Stopped )
        {
        if ( !fullyDownloaded )
            {
            webRequest . Abort ( );
            }
        this . playbackState = StreamingPlaybackState . Stopped;
        if ( waveOut != null )
            {
            waveOut . Stop ( );
            waveOut . Dispose ( );
            waveOut = null;
            }
        timer1 . Enabled = false;
        // n.b. streaming thread may not yet have exited
        Thread . Sleep ( 500 );
         }
    }



public SerializableWaveOut CreateWaveOut ( )
    {
    return new SerializableWaveOut ( );

    }


public void pause ( )
    {
    if ( playbackState == StreamingPlaybackState . Playing || playbackState == StreamingPlaybackState . Buffering )
        {
        waveOut . Pause ( );
        Debug . WriteLine ( String . Format ( "User requested Pause, waveOut.PlaybackState={0}" , waveOut . PlaybackState ) );
        playbackState = StreamingPlaybackState . Paused;
        }
    }

public void buttonStop_Click ( object sender , EventArgs e )
    {
    stop ( );
    }

private void waveOut_PlaybackStopped ( object sender , StoppedEventArgs e )
    {
    Debug . WriteLine ( "Playback Stopped" );
    if ( e . Exception != null )
        {
        MessageBox . Show ( String . Format ( "Playback Error {0}" , e . Exception . Message ) );
        }
    }
}

对于 SerializedVolumeWaveProvider16SerializedBufferedWaveProviderSerializedWaveOut 是我声明为 [Serializable] 的类 但序列化后我无法获取值

最佳答案

不要在 session /缓存中存储复杂对象

您在 session 中存储的对象很复杂并且有许多移动部分。人们在使用缓存和 session 时犯的主要错误是存储“事件”对象(哎呀,它有一个计时器、一个网络请求等)。您应该只存储(在 session 、缓存或文件系统等中)冷硬非事件数据。我强烈建议您创建一个单独的 DTO 层,其中仅包含数据;例如:

public class Something {
    public string Name {get;set;}
    public int SomeNumber {get;set;}
    public byte[] Blob {get;set;}
    // ... more simple data values
}

理想情况下,您会填充存储/检索这种形式的内容;简单、易于理解等。然后根据需要映射到此 DTO 模型和您的实际模型。

实际上,更好的想法是使 DTO 不可变;如果您的提供程序实际上并未序列化,而是将内容保留在内存中,这将避免出现复杂情况。因为否则以下内容是不明确的:

var obj = session[key] as Something;
if(obj != null) {
    obj.Name = "new name";
}

使用序列化提供程序,除非最后再次显式存储,否则通常不会反射(reflect)该更改;使用内存提供程序,所有其他调用者都可以立即看到该提供程序(请记住,用户可以有多个并发请求)。

如果您在使用 session /缓存等时转向基于 DTO 的模型,您将被迫编写易于理解且明显正确的代码。而不是“有时会因为无人能猜到的原因而起作用”。

关于c# - 我的 session 状态序列化有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15680728/

相关文章:

java - 包含多个对象的 ArrayList 的序列化,不保存对象状态

c# - EF 4.1 - 代码优先 - JSON 循环引用序列化错误

java - 序列化中的第 22 条军规

audio - VLC如何在普通PC上播放24位PCM音频?

c# - 将 SetTimer() 和 KillTimer() 移植到 C#?

C# WPF - 窗口中的黑线

c# - 抛出异常时从堆栈跟踪和帧中获取文件名

c# - 如何在 Symbian 上编写程序?

c# - 使用 Naudio 将每个 WAV channel 保存为单 channel WAV 文件

c# - 我如何使用 LAME 将 wav 编码为 mp3 c#