HISE Logo Forum
    • Categories
    • Register
    • Login

    Preset Crashes Standalone MacOS

    Scheduled Pinned Locked Moved General Questions
    51 Posts 6 Posters 3.2k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • hisefiloH
      hisefilo @Christoph Hart
      last edited by

      @Christoph-Hart and AudioPluginHost also crashed

      -------------------------------------
      Translated Report (Full Report Below)
      -------------------------------------
      
      Process:               AudioPluginHost [1581]
      Path:                  /Users/USER/*/AudioPluginHost.app/Contents/MacOS/AudioPluginHost
      Identifier:            com.juce.pluginhost
      Version:               1.0.0 (1.0.0)
      Code Type:             ARM-64 (Native)
      Parent Process:        launchd [1]
      User ID:               501
      
      Date/Time:             2023-04-05 13:31:27.6255 -0300
      OS Version:            macOS 13.0 (22A8380)
      Report Version:        12
      Anonymous UUID:        1A53BBE3-57ED-73DB-15D5-619959A054A6
      
      
      Time Awake Since Boot: 1800 seconds
      
      System Integrity Protection: enabled
      
      Crashed Thread:        0  JUCE Message Thread  Dispatch queue: com.apple.main-thread
      
      
      Christoph HartC 1 Reply Last reply Reply Quote 0
      • Christoph HartC
        Christoph Hart @hisefilo
        last edited by

        @hisefilo Can you check two things?

        1. Add another lock statement before this line: https://github.com/christophhart/HISE/blob/2deb09cfc20dbfa80d8db5c9201cc605e27cfd6c/hi_components/floating_layout/FrontendPanelTypes.cpp#L1003
                if (!getMainController()->getMacroManager().isMacroEnabledOnFrontend())
        	{
                        hise::SimpleReadWriteLock::ScopedWriteLock sl(connectionLock);
        		connectionList.clear();
        		return 0;
        	}
        
        1. If this doesn't work, remove this loop here: https://github.com/christophhart/HISE/blob/2deb09cfc20dbfa80d8db5c9201cc605e27cfd6c/hi_components/floating_layout/FrontendPanelTypes.cpp#L1009

        This will break the macro functionality entirely but we can then at least confirm that it's the real cause and not masking something else.

        hisefiloH 4 Replies Last reply Reply Quote 0
        • hisefiloH
          hisefilo @Christoph Hart
          last edited by hisefilo

          @Christoph-Hart Hi Christoph! thanks for the time.

          I still getting crashes after that. (Do I need to recompile HISE itself?, or just to point to the modified source)
          Update. I did both with the same results

          Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11
          Terminating Process:   exc handler [6043]
          
          VM Region Info: 0x34 is not in any region.  Bytes before following region: 105553518919628
                REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
                UNUSED SPACE AT START
          --->  
                MALLOC_NANO (reserved)   600018000000-600020000000 [128.0M] rw-/rwx SM=NUL  ...(unallocated)
          
          Thread 0 Crashed:: JUCE Message Thread Dispatch queue: com.apple.main-thread
          0   SandStorm                     	       0x102fcdfb4 hise::FrontendMacroPanel::getNumRows() + 256
          1   SandStorm                     	       0x102fcdf6c hise::FrontendMacroPanel::getNumRows() + 184
          2   SandStorm                     	       0x103b710a4 juce::ListBox::updateContent() + 68
          3   SandStorm                     	       0x102fce804 non-virtual thunk to hise::FrontendMacroPanel::macroConnectionChanged(int, hise::Processor*, int, bool) + 24
          4   SandStorm                     	       0x1030cd8d8 std::__1::__function::__func<hise::MacroControlBroadcaster::sendMacroConnectionChangeMessageForAll(bool)::'lambda'(), std::__1::allocator<hise::MacroControlBroadcaster::sendMacroConnectionChangeMessageForAll(bool)::'lambda'()>, void ()>::operator()() + 252
          5   SandStorm                     	       0x103a7a2d8 juce::MessageQueue::deliverNextMessage() + 288
          6   SandStorm                     	       0x103a7a16c juce::MessageQueue::runLoopSourceCallback(void*) + 20
          7   CoreFoundation                	       0x1b0981a34 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 28
          8   CoreFoundation                	       0x1b09819c8 __CFRunLoopDoSource0 + 176
          9   CoreFoundation                	       0x1b0981738 __CFRunLoopDoSources0 + 244
          10  CoreFoundation                	       0x1b098033c __CFRunLoopRun + 836
          11  CoreFoundation                	       0x1b097f8a4 CFRunLoopRunSpecific + 612
          12  HIToolbox                     	       0x1b9ff43bc RunCurrentEventLoopInMode + 292
          
          1 Reply Last reply Reply Quote 0
          • hisefiloH
            hisefilo @Christoph Hart
            last edited by

            @Christoph-Hart still getting customers with crashes. Now Ableton joined the list. Any chance to get a patch or something? 馃檹

            1 Reply Last reply Reply Quote 0
            • hisefiloH
              hisefilo @Christoph Hart
              last edited by

              @Christoph-Hart Hi sir!! Congrats on 3.5!!!
              I found this commit. It fixes the race condition for preset loading?? Just wondering :)

              Link Preview Image
              - added UserPresetHandler.isCurrentlyLoadingPreset() 路 christophhart/HISE@6535012

              The open source framework for sample based instruments - - added UserPresetHandler.isCurrentlyLoadingPreset() 路 christophhart/HISE@6535012

              favicon

              GitHub (github.com)

              1 Reply Last reply Reply Quote 0
              • hisefiloH
                hisefilo @Christoph Hart
                last edited by hisefilo

                @Christoph-Hart Well, new project, new HISE 3.5.0 and crashed repeatedly on FrontendMacroPanel::getNumRows()

                I added this (cardinal sin) and stoped crashing (by now).
                on https://github.com/christophhart/HISE/blob/2deb09cfc20dbfa80d8db5c9201cc605e27cfd6c/hi_components/floating_layout/FrontendPanelTypes.cpp#L1009

                It's there any other quick way to do it???

                Please tell me you wont kick me out of the forum!!!

                	for (int i = 0; i < 8; i++)
                	{
                        Thread::sleep(1); // Forgive me for this!!
                        
                		auto d = macroChain->getMacroControlData(i);
                		for (int j = 0; j < d->getNumParameters(); j++)
                		{
                            
                			newList.add(d->getParameter(j));
                            
                		}
                	}
                
                Adam_GA 1 Reply Last reply Reply Quote 0
                • Adam_GA
                  Adam_G @hisefilo
                  last edited by

                  @hisefilo did you make any progress on this? im afraid i now have the same problem.. :(

                  Christoph HartC 1 Reply Last reply Reply Quote 0
                  • Christoph HartC
                    Christoph Hart @Adam_G
                    last edited by

                    @Adam_G I've rewritten some of the macro control code to reduce the multithreading issues, but I can't guarantee that it solves your problem). You might want to try out the latest state and see if it helps.

                    Adam_GA 1 Reply Last reply Reply Quote 0
                    • Adam_GA
                      Adam_G @Christoph Hart
                      last edited by

                      @Christoph-Hart thank you oh wise one 馃檱 this resolved my issue with the presets causing crashes. part of my script is now broken though - API call with undefined parameter 2. what was changed?

                      d.healeyD 1 Reply Last reply Reply Quote 0
                      • d.healeyD
                        d.healey @Adam_G
                        last edited by

                        @Adam_G said in Preset Crashes Standalone MacOS:

                        . what was changed?

                        Link Preview Image
                        Type safety!

                        Inb4 Dave says "tell me more"... https://github.com/christophhart/hise_documentation/blob/master/scripting/scripting-in-hise/additions-in-hise.md#type-safety

                        favicon

                        Forum (forum.hise.audio)

                        Libre Wave - Freedom respecting instruments and effects
                        My Patreon - HISE tutorials
                        YouTube Channel - Public HISE tutorials

                        Adam_GA 1 Reply Last reply Reply Quote 0
                        • Adam_GA
                          Adam_G @d.healey
                          last edited by

                          @d-healey oh boy

                          Dan KorneffD 1 Reply Last reply Reply Quote 0
                          • Dan KorneffD
                            Dan Korneff @Adam_G
                            last edited by

                            @Adam_G It's been driving me crazy all day :face_with_head-bandage:

                            Dan Korneff - Producer / Mixer / Audio Nerd

                            Adam_GA 1 Reply Last reply Reply Quote 0
                            • Adam_GA
                              Adam_G @Dan Korneff
                              last edited by

                              @Dan-Korneff it doesnt seem like too much is broken in my project lucky for me but im lost trying to figure out how to make what IS broken not be hah

                              ThinkTankT 1 Reply Last reply Reply Quote 0
                              • ThinkTankT
                                ThinkTank @Adam_G
                                last edited by

                                Is this still an issue?

                                I got crashes on macOS, but not on preset loading, it just crashes on start.

                                Without problems that test the limits of your abilities, you can not expand them.

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post

                                21

                                Online

                                1.7k

                                Users

                                11.8k

                                Topics

                                102.5k

                                Posts