सबसे पहले, यह आपके विवरण से स्पष्ट नहीं है कि आपने क्या किया है, लेकिन आपको एक PlaylistSongs
तालिका की आवश्यकता है जिसमें एक PlaylistId
है SongId
, जिसमें वर्णन है कि कौन से गीत किस प्लेलिस्ट के हैं।
यह इस तालिका में है कि आपको आदेश देने वाली जानकारी को जोड़ना होगा।
मेरा पसंदीदा तंत्र वास्तविक संख्याओं के साथ है। मैंने इसे हाल ही में लागू किया, और इसने एक आकर्षण की तरह काम किया। जब आप किसी गीत को एक विशिष्ट स्थिति में ले जाना चाहते हैं, तो आप पिछले गीत और अगले गीत Ordering
के Ordering
मूल्यों के औसत के रूप में उसके नए मूल्य की गणना करते हैं। यदि आप 64-बिट वास्तविक संख्या का उपयोग करते हैं, तो आप सटीक रूप से उसी समय बाहर निकलेंगे, जब नरक समाप्त हो जाएगा, लेकिन यदि आप वास्तव में अपने सॉफ़्टवेयर को पोस्टरिटी के लिए लिख रहे हैं, तो Ordering
प्रत्येक गीत के सभी गीतों के लिए अच्छे गोल पूर्णांक मानों को फिर से असाइन करें। हर एक समय में एक बार प्लेलिस्ट।
एक अतिरिक्त बोनस के रूप में, यहां वह कोड है जो मैंने लिखा है जो इसे लागू करता है। निश्चित रूप से आप इसका उपयोग नहीं कर सकते, जैसा कि यह है, और यह अभी मेरे लिए बहुत काम का होगा कि मैं इसे आपके लिए मंजूरी दे दूं, इसलिए मैं केवल आपके लिए इसे विचार प्राप्त करने के लिए पोस्ट कर रहा हूं।
कक्षा है ParameterTemplate
(जो भी हो, मत पूछो!) विधि को पैरामीटर टेम्पलेट की सूची मिलती है जिससे यह टेम्पलेट अपने माता-पिता से संबंधित है ActivityTemplate
। (जो भी हो, पूछिए मत!) कोड में सटीक बाहर चलाने के खिलाफ कुछ गार्ड हैं। विभाजक का उपयोग परीक्षण के लिए किया जाता है: इकाई परीक्षण एक बड़े भाजक का उपयोग करता है ताकि जल्दी से बाहर चला जाए, और इस प्रकार सटीक संरक्षक कोड को ट्रिगर किया जा सके। दूसरी विधि सार्वजनिक है और "केवल आंतरिक उपयोग के लिए; आह्वान न करें" ताकि परीक्षण कोड इसे लागू कर सके। (यह पैकेज-निजी नहीं हो सकता है क्योंकि मेरा परीक्षण कोड उसी पैकेज में नहीं है जितना कि यह परीक्षण करता है।) वह क्षेत्र जो आदेश को नियंत्रित करता है उसे कॉल किया जाता है Ordering
, getOrdering()
और के माध्यम से एक्सेस किया जाता है setOrdering()
। आपको कोई SQL दिखाई नहीं देता क्योंकि मैं हाइबरनेट के माध्यम से ऑब्जेक्ट-रिलेशनल मैपिंग का उपयोग कर रहा हूं।
/**
* Moves this {@link ParameterTemplate} to the given index in the list of {@link ParameterTemplate}s of the parent {@link ActivityTemplate}.
*
* The index must be greater than or equal to zero, and less than or equal to the number of entries in the list. Specifying an index of zero will move this item to the top of
* the list. Specifying an index which is equal to the number of entries will move this item to the end of the list. Any other index will move this item to the position
* specified, also moving other items in the list as necessary. The given index cannot be equal to the current index of the item, nor can it be equal to the current index plus
* one. If the given index is below the current index of the item, then the item will be moved so that its new index will be equal to the given index. If the given index is
* above the current index, then the new index of the item will be the given index minus one.
*
* NOTE: this method flushes the persistor and refreshes the parent node so as to guarantee that the changes will be immediately visible in the list of {@link
* ParameterTemplate}s of the parent {@link ActivityTemplate}.
*
* @param toIndex the desired new index of this {@link ParameterTemplate} in the list of {@link ParameterTemplate}s of the parent {@link ActivityTemplate}.
*/
public void moveAt( int toIndex )
{
moveAt( toIndex, 2.0 );
}
/**
* For internal use only; do not invoke.
*/
public boolean moveAt( int toIndex, double divisor )
{
MutableList<ParameterTemplate<?>> parameterTemplates = getLogicDomain().getMutableCollections().newArrayList();
parameterTemplates.addAll( getParentActivityTemplate().getParameterTemplates() );
assert parameterTemplates.getLength() >= 1; //guaranteed since at the very least, this parameter template must be in the list.
int fromIndex = parameterTemplates.indexOf( this );
assert 0 <= toIndex;
assert toIndex <= parameterTemplates.getLength();
assert 0 <= fromIndex;
assert fromIndex < parameterTemplates.getLength();
assert fromIndex != toIndex;
assert fromIndex != toIndex - 1;
double order;
if( toIndex == 0 )
{
order = parameterTemplates.fetchFirstElement().getOrdering() - 1.0;
}
else if( toIndex == parameterTemplates.getLength() )
{
order = parameterTemplates.fetchLastElement().getOrdering() + 1.0;
}
else
{
double prevOrder = parameterTemplates.get( toIndex - 1 ).getOrdering();
parameterTemplates.moveAt( fromIndex, toIndex );
double nextOrder = parameterTemplates.get( toIndex + (toIndex > fromIndex ? 0 : 1) ).getOrdering();
assert prevOrder <= nextOrder;
order = (prevOrder + nextOrder) / divisor;
if( order <= prevOrder || order >= nextOrder ) //if the accuracy of the double has been exceeded
{
parameterTemplates.clear();
parameterTemplates.addAll( getParentActivityTemplate().getParameterTemplates() );
for( int i = 0; i < parameterTemplates.getLength(); i++ )
parameterTemplates.get( i ).setOrdering( i * 1.0 );
rocs3dDomain.getPersistor().flush();
rocs3dDomain.getPersistor().refresh( getParentActivityTemplate() );
moveAt( toIndex );
return true;
}
}
setOrdering( order );
rocs3dDomain.getPersistor().flush();
rocs3dDomain.getPersistor().refresh( getParentActivityTemplate() );
assert getParentActivityTemplate().getParameterTemplates().indexOf( this ) == (toIndex > fromIndex ? toIndex - 1 : toIndex);
return false;
}